From 217998d56f5b6424a685f8c87f2c0e924d1c89da Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 17 Sep 2007 00:17:05 +0200
Subject: Fix some wiki markup, typos, and so on while reading through it.
---
microkernel/mach/external_pager_mechanism.mdwn | 157 +++++++++++++------------
1 file changed, 82 insertions(+), 75 deletions(-)
diff --git a/microkernel/mach/external_pager_mechanism.mdwn b/microkernel/mach/external_pager_mechanism.mdwn
index 169745fb..67c10713 100644
--- a/microkernel/mach/external_pager_mechanism.mdwn
+++ b/microkernel/mach/external_pager_mechanism.mdwn
@@ -17,79 +17,79 @@ redistribute your contributions.
Mach provides a so-called external pager [[mechanism]]. This
mechanism serves to separate *managing memory* from *managing
-content*. Mach does the former while user space tasks do the
+content*. Mach does the former while [[user_space]] [[task]]s do the
latter.
# Introduction
-In Mach, a task's [[Mach/AddressSpace]] consists of references
-to [[Mach/MemoryObjects]]. A memory object is designated using
+In Mach, a [[task]]'s [[address_space]] consists of references
+to [[memory_object]]s. A memory object is [[designated|designation]] using
a [[port]] (a port is just a [[capability]]) and
-implemented by a normal process.
+implemented by a normal [[process]].
To associate a memory object with a portion of a task's
-address space, vm\_map is invoked a capability designating
+address space, `vm_map` is invoked on a capability designating
the task and passing a reference to the memory object
and the offset at which to install it. (The first time
a task maps an object, Mach sends an initialization message
to the server including a control capability, which it uses
to supply pages to the kernel.) This is essentially
the same as mapping a file into an address space on Unix
-using mmap.
+using `mmap`.
-When a task faults, Mach checks to see if there is a memory
+When a task [[faults|page_fault]], Mach checks to see if there is a memory
object associated with the fault address. If not, the task
-is sent an exception, which is normally further propagated
+is sent an [[exception]], which is normally further propagated
as a segmentation fault. If there is an associated memory
-object, Mach checks whether the corresponding page is in core.
-If it is, it installs the page and resumes the task. Mach
-then invokes the memory object with the memory\_object\_request
+object, Mach checks whether the corresponding [[page]] is in core.
+If it is, it installs the page and resumes the task. Mach
+then invokes the memory object with the `memory_object_request`
method and the page to read. The memory manager then fetches
or creates the content as appropriate and supplies it to
-Mach using the memory\_object\_supply method.
+Mach using the `memory_object_supply` method.
# Creating and Mapping a Memory Object
The following illustrates the basic idea:
-> ________
-> / \
-> | Mach |
-> \________/
-> /| / |\ \
-> (C) vm_map / / m_o_ready (E)\ \ (D) memory_object_init
-> / |/ (F) return \ \|
-> ________ ________
-> / \ -----> / \
-> | Client | (A) open | Server |
-> \________/ <----- \________/
-> (B) memory_object
-
-(A) The client sends an "open" rpc to the server.
+ ________
+ / \
+ | Mach |
+ \________/
+ /| / |\ \
+ (C) vm_map / / m_o_ready (E)\ \ (D) memory_object_init
+ / |/ (F) return \ \|
+ ________ ________
+ / \ -----> / \
+ | Client | (A) open | Server |
+ \________/ <----- \________/
+ (B) memory_object
+
+(A) The client sends an `open` [[RPC]] to the server.
(B) The server creates a memory object (i.e., a port receive right), adds
it to the port set that it is listening on and returns a capability (a port
send right) to the client.
(C) The client attempts to map the object into its address space using
-the vm\_map rpc. It passes a reference to the port that the server gave
+the `vm_map` RPC. It passes a reference to the port that the server gave
it to the vm server (typically Mach).
(D) Since Mach has never seen the object before, it queues a
-memory\_object\_init on the given port along with a send right (the
+`memory_object_init` on the given port along with a send right (the
memory control port) for the manager to use to send messages to the
kernel and also as an authentication mechanism for future
interactions: the port is supplied so that the manager will be able to
-identify from which kernel a given memory\_object\_* IPC is from.
+identify from which kernel a given `memory_object_*` IPC is from.
(E) The server dequeues the message, initializes internal data
structures to manage the mapping and then invokes the
-memory\_object\_ready method on the control object.
+`memory_object_ready` method on the control object.
(F) The kernel sees that the manager is ready, sets up the appropriate
-mappings in the client and then replies to the vm\_map rpc indicating
+mappings in the client's address space and then replies to the `vm_map` RPC indicating
success.
There is nothing stopping others from playing "the kernel." This is
@@ -102,37 +102,37 @@ mappings etc.
# Resolving Page Faults
-> (G) Client ________
-> resumed / \
-> | Mach |
-> (A) Fault +----|------+ | \ (B) m_o_request (C) store_read
-> ____|___ \_____|__/ |\ \| ________ _________
-> / +---\-------+ \ / \ / \
-> | Client | (F) | Server |<===>| storeio |
-> \________/ m_o_supply \________/ \_________/
-> (E) return data | ^
-> | | (D) device_read
-> v |
-> ________
-> / Device \
-> | Driver |
-> \________/
-> | ^
-> | |
-> v
-> ____________
-> / Hardware \
-
-(A) The client does a memory access and faults. The kernel catches
+ (G) Client ________
+ resumed / \
+ | Mach |
+ (A) Fault +----|------+ | \ (B) m_o_request (C) store_read
+ ____|___ \_____|__/ |\ \| ________ _________
+ / +---\-------+ \ / \ / \
+ | Client | (F) | Server |<===>| storeio |
+ \________/ m_o_supply \________/ \_________/
+ (E) return data | ^
+ | | (D) device_read
+ v |
+ ________
+ / Device \
+ | Driver |
+ \________/
+ | ^
+ | |
+ v
+ ____________
+ / Hardware \
+
+(A) The client does a memory access and [[faults|page_fault]]. The kernel catches
the fault and maps the address to the appropriate memory object. It
-then invokes the memory\_object\_request method on the associated
+then invokes the `memory_object_request` method on the associated
capability. (In addition to the page to supply, it also supplies the
control port so that the server can determine which kernel
sent the message.)
-(B) The manager dequeues the message. On the Hurd, this is translated
-into a store\_read: a function in the libstore library which is used to
-transparently manage block devices. The storeio server starts off as
+(B) The manager dequeues the message. On the [[Hurd]], this is translated
+into a `store_read`: a function in the [[hurd/libstore]] library which is used to
+transparently manage block devices. The [[hurd/storeio]] server starts off as
a separate process, however, if the server has the appropriate
permission, the backing object can be contacted directly by the
server. This layer of indirection is desirable when, for instance, a
@@ -140,37 +140,37 @@ storeio running as root may want to only permit read only access to a
resource, yet it cannot safely transfer its handle to the client. In
this case, it would proxy the requests.
-(C) The storeio server contacts, for instance, a device driver to do
+(C) The storeio server contacts, for instance, a [[device_driver]] to do
the read. This could also be a network block device (the NBD server
in GNU/Linux), a file, a memory object, etc.
-(D) The device driver allocates an anonymous page from the default
-pager and reads the data into it. Once all of the operations are
+(D) The device driver allocates an [[anonymous_page]] from the
+[[default_pager]] and reads the data into it. Once all of the operations are
complete, the device returns the data to the client unmapping it from
its own address space at the same time.
-(E) The storeio transfers the page to the server. The page is still
+(E) The storeio server transfers the page to the server. The page is still
anonymous.
-(F) The manager does a memory\_object\_supply transferring the page to
+(F) The manager does a `memory_object_supply` transferring the page to
the kernel. Only now is the page not considered to be anonymous but
managed.
(G) The kernel caches the page, installs it in the client's virtual
-address space and finally, resumes the client.
+[[address_space]] and finally, resumes the client.
# Paging Data Out
-> Change manager Pager m_o_return store_write
-> \ _________ (B) __(A)__ (C) ________ (D) _______
-> S | / Default \ / \ / \ / \
-> W |<=>| Pager |<=>| Mach |==>| server |<=>| storeio |<=>
-> A | \_________/ \________/ \________/ \_______/
-> P |
-> /
+ Change manager Pager m_o_return store_write
+ \ _________ (B) __(A)__ (C) ________ (D) _______
+ S | / Default \ / \ / \ / \
+ W |<=>| Pager |<=>| Mach |==>| server |<=>| storeio |<=>
+ A | \_________/ \________/ \________/ \_______/
+ P |
+ /
-(A) The paging [[policy]] is implemented by Mach: servers just implement
+(A) The [[paging]] [[policy]] is implemented by Mach: servers just implement
the [[mechanism]].
(B) Once the kernel has selected a page that it would like to evict, it
@@ -179,10 +179,17 @@ if the server does not deallocate the page quickly enough, it cannot
cause a denial of service: the kernel will just later double page it
to swap (the default pager is part of the [[tcb]]).
-(C) Mach then invokes memory\_object\_return method on the control
-object. The server is expected to save the page free it in a timely
+(C) Mach then invokes `memory_object_return` method on the control
+object. The server is expected to save the page free it in a timely
fashion. The server is not required to send a response to the kernel.
-(D) The manager then transfers the data to the storeio which
+(D) The manager then transfers the data to the storeio server which
eventually sends it to disk. The device driver consumes the memory
-doing the equivalent of a vm\_deallocate.
+doing the equivalent of a `vm_deallocate`.
+
+
+# Sources
+
+This text is based on a [June 2002
+email](http://lists.gnu.org/archive/html/l4-hurd/2002-06/msg00001.html) by
+[[NealWalfield]].
--
cgit v1.2.3
From fa6c11655206f32afe3ae8beb8cacc4c322876af Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 23 Oct 2010 22:37:33 +0200
Subject: copyright: Add 2010.
---
copyright.mdwn | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/copyright.mdwn b/copyright.mdwn
index 8cd0aa21..064b5271 100644
--- a/copyright.mdwn
+++ b/copyright.mdwn
@@ -1,2 +1,2 @@
-Copyright © 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 The Contributing
-Authors
+Copyright © 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The
+Contributing Authors
--
cgit v1.2.3
From 0d41c97e727159917752e7d9f18dbb7a018d157d Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 23 Oct 2010 22:37:54 +0200
Subject: hurd/translator/ext2fs/large_stores: Copyright as per Ogi's email.
, 2010-09-08.
---
hurd/translator/ext2fs/large_stores.txt | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/hurd/translator/ext2fs/large_stores.txt b/hurd/translator/ext2fs/large_stores.txt
index e17a02a5..6e7ffc6f 100644
--- a/hurd/translator/ext2fs/large_stores.txt
+++ b/hurd/translator/ext2fs/large_stores.txt
@@ -1,3 +1,13 @@
+[[!meta copyright="Copyright © 2005, 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
This is -*- mode: outline -*-
* Introduction
--
cgit v1.2.3
From 8c808d2fc35892210492128eafe72cffbbc5766f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 23 Oct 2010 23:50:00 +0200
Subject: open_issues/linux_vmsig: New.
---
hurd/libpager.mdwn | 7 ++++++-
open_issues/linux_vmsig.mdwn | 29 +++++++++++++++++++++++++++++
2 files changed, 35 insertions(+), 1 deletion(-)
create mode 100644 open_issues/linux_vmsig.mdwn
diff --git a/hurd/libpager.mdwn b/hurd/libpager.mdwn
index c9a1c0b6..99f28f2a 100644
--- a/hurd/libpager.mdwn
+++ b/hurd/libpager.mdwn
@@ -1,4 +1,5 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -14,3 +15,7 @@ Mach [[microkernel/mach/IPC]]'s [[microkernel/mach/ipc/sequence_numbering]].
[GNU Hurd Reference Manual: 4.2 Pager
Library](http://www.gnu.org/software/hurd/doc/hurd_5.html#SEC32).
+
+# Open Issues
+
+ * [[open_issues/linux_vmsig]]
diff --git a/open_issues/linux_vmsig.mdwn b/open_issues/linux_vmsig.mdwn
new file mode 100644
index 00000000..a4311d3e
--- /dev/null
+++ b/open_issues/linux_vmsig.mdwn
@@ -0,0 +1,29 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="Linux: vmsig"]]
+
+[[!tag open_issue_gnumach open_issue_hurd]]
+
+ * *cooperating with the VM when memory pressure increases*
+
+ * *notify user applications of virtual memory events via real-time signals*
+
+, and discussion at
+ and
+.
+
+Found this via , which
+was linked from [LWN](http://lwn.net/Articles/409416/).
+
+From a quick glance, this sounds to [[me|tschwinge]] quite a bit like
+mechanisms also found in (originating in?) Mach's
+[[microkernel/mach/external_pager_mechanism]]. May be worth having a look at
+it.
--
cgit v1.2.3
From 849619f219c6b10e511cbada826df342360ed03b Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 24 Oct 2010 00:39:29 +0200
Subject: microkernel/mach/gnumach/projects/clean_up_the_code: Tag
open_issue_gnumach.
---
microkernel/mach/gnumach/projects/clean_up_the_code.mdwn | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/microkernel/mach/gnumach/projects/clean_up_the_code.mdwn b/microkernel/mach/gnumach/projects/clean_up_the_code.mdwn
index e865e61a..2a9b4b60 100644
--- a/microkernel/mach/gnumach/projects/clean_up_the_code.mdwn
+++ b/microkernel/mach/gnumach/projects/clean_up_the_code.mdwn
@@ -1,5 +1,5 @@
-[[!meta copyright="Copyright © 2005, 2006, 2007, 2008 Free Software Foundation,
-Inc."]]
+[[!meta copyright="Copyright © 2005, 2006, 2007, 2008, 2010 Free Software
+Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -9,6 +9,8 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled
[[GNU Free Documentation License|/fdl]]."]]"""]]
+[[!tag open_issue_gnumach]]
+
# Restructure the tree in a sane way
Merge `linux/src` and `linux/dev`. But only if using a sane RCS, so leave it
--
cgit v1.2.3
From 0a0e0a2f57ed8d1ed6def70aa429c6685136e818 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 24 Oct 2010 00:39:43 +0200
Subject: microkernel/mach/gnumach/projects/gdb_stubs: Link to Linux Kernel GDB
tracepoint module, Hui Zhu, 2010-10-09.
---
microkernel/mach/gnumach/projects/gdb_stubs.mdwn | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/microkernel/mach/gnumach/projects/gdb_stubs.mdwn b/microkernel/mach/gnumach/projects/gdb_stubs.mdwn
index ef1b4909..064da7bf 100644
--- a/microkernel/mach/gnumach/projects/gdb_stubs.mdwn
+++ b/microkernel/mach/gnumach/projects/gdb_stubs.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2008, 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -8,6 +8,12 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled
[[GNU Free Documentation License|/fdl]]."]]"""]]
+[[!tag open_issue_gnumach open_issue_gdb]]
+
*
* [ChangeLog.gdb](http://cvs.savannah.gnu.org/viewvc/gnumach/ChangeLog.gdb?root=hurd&view=markup&pathrev=gnumach-1-branch-gdb-branch)
+
+This may be another follow-up project: [*Linux Kernel GDB tracepoint
+module*](http://thread.gmane.org/gmane.comp.gdb.devel/29369), Hui Zhu,
+2010-10-09.
--
cgit v1.2.3
From b1200accca24e7e6098b7319b3df755086186570 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 24 Oct 2010 01:18:36 +0200
Subject: open_issues/binutils_testsuite: Re-ran after Samuel fixed the GNU
Mach uname issue.
---
open_issues/binutils_testsuite.mdwn | 82 ++++++++++++++++++---------------
open_issues/binutils_testsuite/sum_hurd | 20 ++++----
2 files changed, 53 insertions(+), 49 deletions(-)
diff --git a/open_issues/binutils_testsuite.mdwn b/open_issues/binutils_testsuite.mdwn
index 58a18f7a..39aa390a37 100644
--- a/open_issues/binutils_testsuite.mdwn
+++ b/open_issues/binutils_testsuite.mdwn
@@ -13,10 +13,7 @@ License|/fdl]]."]]"""]]
Here's some log of a binutils testsuite run; this is from
35a74fa099259b505e6115586326a302431daf6c sources, 2010-10-06.
-(Automatically) configured for i386-unknown-gnu0.3. (See
-[[config_guess_uname]].) Thus manually configured for i686-pc-gnu.
-
- $ ../master/configure --prefix="$PWD".install --build=i686-pc-gnu
+ $ ../master/configure --prefix="$PWD".install
[...]
$ make
[...]
@@ -24,18 +21,16 @@ Here's some log of a binutils testsuite run; this is from
[...]
$ cat */*.sum */*/*.sum > sum_hurd
-Doing the same steps on GNU/Linux would configure for i686-pc-linux-gnu.
-
Comparing [[sum_hurd]] to [[sum_linux]]:
$ diff -u <(sed s%thomas/tmp/source%tschwinge/tmp% < open_issues/binutils_testsuite/sum_linux) open_issues/binutils_testsuite/sum_hurd
- --- /dev/fd/63 2010-10-10 20:22:53.297607001 +0200
- +++ open_issues/binutils_testsuite/sum_hurd 2010-10-10 20:21:12.000000000 +0200
+ --- /dev/fd/63 2010-10-24 01:14:12.846938004 +0200
+ +++ open_issues/binutils_testsuite/sum_hurd 2010-10-24 01:10:11.000000000 +0200
@@ -1,5 +1,5 @@
-Test Run By thomas on Fri Oct 8 22:40:31 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sat Oct 9 00:37:20 2010
- +Native configuration is i686-pc-gnu
+ +Test Run By tschwinge on Sun Oct 24 00:59:02 2010
+ +Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -124,8 +119,8 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-Native configuration is i686-pc-linux-gnu
+# of expected passes 38
+# of unsupported tests 1
- +Test Run By tschwinge on Sat Oct 9 00:44:09 2010
- +Native configuration is i686-pc-gnu
+ +Test Run By tschwinge on Sun Oct 24 01:05:19 2010
+ +Native configuration is i686-unknown-gnu0.3
=== ld tests ===
@@ -140,9 +135,14 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-checks/checks.exp ...
PASS: check sections 1
PASS: check sections 2
- @@ -144,423 +102,22 @@
- PASS: ld-discard/static
- PASS: ld-discard/zero-rel
+ @@ -139,428 +97,23 @@
+ Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-cygwin/exe-export.exp ...
+ Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-d10v/d10v.exp ...
+ Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-discard/discard.exp ...
+ -PASS: ld-discard/extern
+ -PASS: ld-discard/start
+ -PASS: ld-discard/static
+ -PASS: ld-discard/zero-rel
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/audit.exp ...
-PASS: Run with -paudit.so
-PASS: Run with -Paudit.so
@@ -565,7 +565,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-fastcall/fastcall.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-frv/fdpic.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-frv/frv-elf.exp ...
- @@ -571,85 +128,16 @@
+ @@ -571,85 +124,16 @@
PASS: Check --gc-section/-r/-e
PASS: Check --gc-section/-r/-u
PASS: --gc-sections -r without -e
@@ -651,7 +651,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-m68hc11/m68hc11.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-m68k/m68k-got.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-m68k/m68k.exp ...
- @@ -663,9 +151,6 @@
+ @@ -663,9 +147,6 @@
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pe/pe-run2.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pe/pe.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pie/pie.exp ...
@@ -661,7 +661,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-powerpc/aix52.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-powerpc/powerpc.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-s390/s390.exp ...
- @@ -675,7 +160,6 @@
+ @@ -675,7 +156,6 @@
PASS: ld-scripts/align2b
PASS: ld-scripts/align2c
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/alignof.exp ...
@@ -669,7 +669,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/assert.exp ...
PASS: ASSERT
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/crossref.exp ...
- @@ -694,7 +178,6 @@
+ @@ -694,7 +174,6 @@
PASS: ld-scripts/defined2
PASS: ld-scripts/defined3
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/dynamic-sections.exp ...
@@ -677,7 +677,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/empty-address.exp ...
PASS: ld-scripts/empty-address-1
PASS: ld-scripts/empty-address-2a
- @@ -703,9 +186,7 @@
+ @@ -703,9 +182,7 @@
PASS: ld-scripts/empty-address-3b
PASS: ld-scripts/empty-address-3c
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/empty-aligned.exp ...
@@ -687,7 +687,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/expr.exp ...
PASS: ld-scripts/expr1
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/extern.exp ...
- @@ -715,87 +196,35 @@
+ @@ -715,87 +192,35 @@
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/map-address.exp ...
PASS: map addresses
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/overlay-size.exp ...
@@ -779,7 +779,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/arch/arch.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/rd-sh.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh-vxworks.exp ...
- @@ -805,12 +234,6 @@
+ @@ -805,12 +230,6 @@
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh64/relfail.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh64/sh64.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-shared/shared.exp ...
@@ -792,7 +792,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sparc/sparc.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-spu/spu.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-srec/srec.exp ...
- @@ -821,8 +244,6 @@
+ @@ -821,8 +240,6 @@
PASS: Build libentry.a
PASS: --entry foo archive
PASS: --entry foo -u foo archive
@@ -801,7 +801,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
PASS: --entry foo
PASS: --entry foo -u foo
PASS: --entry 0x0
- @@ -831,7 +252,7 @@
+ @@ -831,7 +248,7 @@
PASS: undefined function
PASS: undefined line
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-undefined/weak-undef.exp ...
@@ -810,28 +810,27 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-v850/v850.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-versados/versados.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-vxworks/vxworks.exp ...
- @@ -846,13 +267,15 @@
+ @@ -846,13 +263,15 @@
=== ld Summary ===
-# of expected passes 598
-# of expected failures 8
- +# of expected passes 58
+ +# of expected passes 54
+# of unexpected failures 2
+# of expected failures 5
# of untested testcases 6
- -/media/data/home/tschwinge/tmp/binutils/master.build/ld/ld-new 2.20.51.20101007
+# of unsupported tests 4
- +/media/data/home/tschwinge/tmp/binutils/master.build.i686-pc-gnu/ld/ld-new 2.20.51.20101007
+ /media/data/home/tschwinge/tmp/binutils/master.build/ld/ld-new 2.20.51.20101007
-Test Run By thomas on Fri Oct 8 22:40:36 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sat Oct 9 00:38:32 2010
- +Native configuration is i686-pc-gnu
+ +Test Run By tschwinge on Sun Oct 24 01:00:04 2010
+ +Native configuration is i686-unknown-gnu0.3
=== gas tests ===
- @@ -926,15 +349,6 @@
+ @@ -926,15 +345,6 @@
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/bfin/bfin.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/bfin/error.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cfi/cfi.exp ...
@@ -847,7 +846,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cr16/cr16.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cr16/pic.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cris/cris.exp ...
- @@ -943,35 +357,6 @@
+ @@ -943,35 +353,6 @@
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/d30v/d30.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/dlx/alltests.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/elf/elf.exp ...
@@ -883,7 +882,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/fr30/allinsn.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/fr30/fr30.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/frv/allinsn.exp ...
- @@ -1148,39 +533,10 @@
+ @@ -1148,39 +529,10 @@
PASS: i386 FSGSBase (Intel disassembly)
PASS: i386 RdRnd
PASS: i386 RdRnd (Intel disassembly)
@@ -923,7 +922,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/i860/i860.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/ia64/ia64.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/ieee-fp/x930509a.exp ...
- @@ -1191,9 +547,6 @@
+ @@ -1191,9 +543,6 @@
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/iq2000/yield.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/lm32/all.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/lns/lns.exp ...
@@ -933,7 +932,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/allinsn.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/error.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/m32r.exp ...
- @@ -1262,11 +615,6 @@
+ @@ -1262,11 +611,6 @@
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sparc/sparc.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sun4/addend.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/symver/symver.exp ...
@@ -945,7 +944,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/tic4x/tic4x.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/tic54x/tic54x.exp ...
Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/tic6x/tic6x.exp ...
- @@ -1281,7 +629,6 @@
+ @@ -1281,7 +625,6 @@
=== gas Summary ===
@@ -953,10 +952,19 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-# of expected failures 1
+# of expected passes 236
../as-new 2.20.51.20101007
-
A lot of tests are not being run. Might be due
to the tests (incorrectly / correctly) being Linux-specific.
A few tests fail.
+
+
+These tests PASSed when manually configured for `i686-pc-gnu`, but not when
+automatically configured for `i686-unknown-gnu0.3`:
+
+ Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-discard/discard.exp ...
+ PASS: ld-discard/extern
+ PASS: ld-discard/start
+ PASS: ld-discard/static
+ PASS: ld-discard/zero-rel
diff --git a/open_issues/binutils_testsuite/sum_hurd b/open_issues/binutils_testsuite/sum_hurd
index 5df28bd2..674bad0b 100644
--- a/open_issues/binutils_testsuite/sum_hurd
+++ b/open_issues/binutils_testsuite/sum_hurd
@@ -1,5 +1,5 @@
-Test Run By tschwinge on Sat Oct 9 00:37:20 2010
-Native configuration is i686-pc-gnu
+Test Run By tschwinge on Sun Oct 24 00:59:02 2010
+Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -67,8 +67,8 @@ Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/x86-
# of expected passes 38
# of unsupported tests 1
-Test Run By tschwinge on Sat Oct 9 00:44:09 2010
-Native configuration is i686-pc-gnu
+Test Run By tschwinge on Sun Oct 24 01:05:19 2010
+Native configuration is i686-unknown-gnu0.3
=== ld tests ===
@@ -97,10 +97,6 @@ Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-crx/crx.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-cygwin/exe-export.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-d10v/d10v.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-discard/discard.exp ...
-PASS: ld-discard/extern
-PASS: ld-discard/start
-PASS: ld-discard/static
-PASS: ld-discard/zero-rel
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/audit.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/binutils.exp ...
Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/dwarf.exp ...
@@ -267,15 +263,15 @@ Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-xtensa/xtensa.exp ..
=== ld Summary ===
-# of expected passes 58
+# of expected passes 54
# of unexpected failures 2
# of expected failures 5
# of untested testcases 6
# of unsupported tests 4
-/media/data/home/tschwinge/tmp/binutils/master.build.i686-pc-gnu/ld/ld-new 2.20.51.20101007
+/media/data/home/tschwinge/tmp/binutils/master.build/ld/ld-new 2.20.51.20101007
-Test Run By tschwinge on Sat Oct 9 00:38:32 2010
-Native configuration is i686-pc-gnu
+Test Run By tschwinge on Sun Oct 24 01:00:04 2010
+Native configuration is i686-unknown-gnu0.3
=== gas tests ===
--
cgit v1.2.3
From 34b5e0fa45e7e2f32f5e56b01705c9e26c3d134f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 24 Oct 2010 11:14:27 +0200
Subject: open_issues/binutils_gold: New.
---
open_issues/binutils_gold.mdwn | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 open_issues/binutils_gold.mdwn
diff --git a/open_issues/binutils_gold.mdwn b/open_issues/binutils_gold.mdwn
new file mode 100644
index 00000000..f9008154
--- /dev/null
+++ b/open_issues/binutils_gold.mdwn
@@ -0,0 +1,13 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_binutils]]
+
+Have a look at GOLD / port as needed.
--
cgit v1.2.3
From e3a4ee9f0b4bf7f11cf2cb5063d756274f5cf98f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 24 Oct 2010 12:24:08 +0200
Subject: open_issues/glibc_madvise_vs_static_linking: New.
---
open_issues/glibc_madvise_vs_static_linking.mdwn | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 open_issues/glibc_madvise_vs_static_linking.mdwn
diff --git a/open_issues/glibc_madvise_vs_static_linking.mdwn b/open_issues/glibc_madvise_vs_static_linking.mdwn
new file mode 100644
index 00000000..4546348e
--- /dev/null
+++ b/open_issues/glibc_madvise_vs_static_linking.mdwn
@@ -0,0 +1,24 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_glibc]]
+
+ $ echo 'int main() {}' | gcc -o /dev/null -static -x c -
+ /usr/lib/gcc/i486-gnu/4.4.5/../../../libcrt.a(malloc.o): In function `_int_free':
+ (.text+0xdc3): warning: warning: madvise is not implemented and will always fail
+
+This is correct, but it does confuse GNU Autoconf, for example, which then
+thinks that static linking is not supported and sets a flag accordingly, which
+luckly no / not many packages use.
+
+*This call does not influence the semantics of the application (except in the
+case of MADV_DONTNEED), but may influence its performance. The kernel is free
+to ignore the advice.* (`man madvise`), so we may simply want to turn it into a
+no-op in glibc, avoiding the link-time warning.
--
cgit v1.2.3
From 6a3a40f9c40e924a9f92f407c0aa4f075625925f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 24 Oct 2010 21:10:39 +0200
Subject: open_issues/binutils_testsuite: Extend and update.
---
open_issues/binutils_testsuite.mdwn | 421 ++++++++++--------
open_issues/binutils_testsuite/log_build-diff | 619 ++++++++++++++++++++++++++
open_issues/binutils_testsuite/sum_hurd | 511 ++++++++++-----------
open_issues/binutils_testsuite/sum_linux | 515 ++++++++++-----------
4 files changed, 1380 insertions(+), 686 deletions(-)
create mode 100644 open_issues/binutils_testsuite/log_build-diff
diff --git a/open_issues/binutils_testsuite.mdwn b/open_issues/binutils_testsuite.mdwn
index 39aa390a37..03846785 100644
--- a/open_issues/binutils_testsuite.mdwn
+++ b/open_issues/binutils_testsuite.mdwn
@@ -10,49 +10,64 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_binutils]]
-Here's some log of a binutils testsuite run; this is from
-35a74fa099259b505e6115586326a302431daf6c sources, 2010-10-06.
+Here's a log of a binutils build and testsuite run; this is from
+cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24, run on
+kepler.SCHWINGE and grubber.
- $ ../master/configure --prefix="$PWD".install
+ $ export LC_ALL=C
+ $ ../master/configure 2>&1 | tee log_build
[...]
- $ make
+ $ make SHELL=/bin/bash 2>&1 | tee log_build_
[...]
+
+(kepler.SCHWINGE defaults to using /bin/sh for libtool, grubber to /bin/bash;
+thus harmonized.)
+
+Differences between GNU/Linux and GNU/Hurd, both on x86: [[log_build-diff]].
+
+Mask out most differences that are due to GNU/Linux defining `-DTRAD_CORE`,
+`-DHAVE_i386linux_vec` (`-DSELECT_VECS='[...],&i386linux_vec[...]`),
+`-DHAVE_i386pei_vec` (`-DSELECT_VECS='[...],&i386pei_vec[...]`).
+
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/binutils/hurd.build/ && cat log_build* | sed -e "s%${PWD}%[...]%g" -e s%-DTRAD_CORE%% -e s%-DHAVE_i386linux_vec%% -e s%-DHAVE_i386pei_vec%% -e s%-DSELECT_VECS=\\\('\\\''\\\?\\\)\&bfd_elf32_i386_vec,\&i386linux_vec,\&i386pei_vec,\&bfd_elf32_little_generic_vec,\&bfd_elf32_big_generic_vec'\\\''\\\?%-DSELECT_VECS=\\\1\\\&bfd_elf32_i386_vec,\\\&bfd_elf32_little_generic_vec,\\\&bfd_elf32_big_generic_vec\\\1%') <(ssh grubber 'cd tmp/binutils/hurd.build/ && cat log_build* | sed "s%${PWD}%[...]%g"') > open_issues/binutils_testsuite/log_build-diff
+
$ make -k check
[...]
- $ cat */*.sum */*/*.sum > sum_hurd
-Comparing [[sum_hurd]] to [[sum_linux]]:
+Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
- $ diff -u <(sed s%thomas/tmp/source%tschwinge/tmp% < open_issues/binutils_testsuite/sum_linux) open_issues/binutils_testsuite/sum_hurd
- --- /dev/fd/63 2010-10-24 01:14:12.846938004 +0200
- +++ open_issues/binutils_testsuite/sum_hurd 2010-10-24 01:10:11.000000000 +0200
+ $ ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils_testsuite/sum_linux
+ $ ssh grubber 'cd tmp/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils_testsuite/sum_hurd
+ $ diff -u open_issues/binutils_testsuite/sum_linux open_issues/binutils_testsuite/sum_hurd
+ --- open_issues/binutils_testsuite/sum_linux 2010-10-24 20:33:04.000000000 +0200
+ +++ open_issues/binutils_testsuite/sum_hurd 2010-10-24 20:41:53.000000000 +0200
@@ -1,5 +1,5 @@
- -Test Run By thomas on Fri Oct 8 22:40:31 2010
+ -Test Run By thomas on Sun Oct 24 20:00:29 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sun Oct 24 00:59:02 2010
+ +Test Run By tschwinge on Sun Oct 24 20:01:01 2010
+Native configuration is i686-unknown-gnu0.3
-
- === binutils tests ===
-
+
+ === binutils tests ===
+
@@ -14,19 +14,12 @@
PASS: ar thin archive with nested archive
PASS: ar argument parsing
PASS: ar deterministic archive
-PASS: ar unique symbol in archive
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/arm/objdump.exp ...
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/bfin/objdump.exp ...
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/dlltool.exp ...
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/elfedit.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
-UNSUPPORTED: Update ELF header 1
-PASS: Update ELF header 2
-PASS: Update ELF header 3
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/hppa/objdump.exp ...
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/i386/i386.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
-PASS: objcopy on compressed debug sections
-PASS: strip on uncompressed debug sections
-PASS: strip on compressed debug sections
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/m68k/objdump.exp ...
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/nm.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
PASS: nm (no arguments)
@@ -50,35 +43,9 @@
PASS: run stripped executable with saving a symbol
@@ -88,7 +103,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: objcopy on sections with SHF_EXCLUDE
-PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
PASS: --localize-hidden test 2
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/objdump.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
PASS: objdump -i
@@ -87,17 +54,8 @@
PASS: objdump -t
@@ -97,7 +112,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: objdump -s -j .zdebug_abbrev
-PASS: objdump -W
+UNSUPPORTED: objdump compressed debug
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/readelf.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
-PASS: finding out ELF size with readelf -h
-PASS: readelf -h
-PASS: readelf -S
@@ -106,44 +121,44 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: readelf -wi
-PASS: readelf -wa (compressed)
-PASS: readelf -p
- Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/size.exp ...
+ Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
PASS: size (no arguments)
PASS: size -A
@@ -107,10 +65,10 @@
-
- === binutils Summary ===
-
- -# of expected passes 79
- -# of unsupported tests 2
- -Test Run By thomas on Fri Oct 8 22:40:54 2010
+
+ === binutils Summary ===
+
+ -# of expected passes 79
+ -# of unsupported tests 2
+ -Test Run By thomas on Sun Oct 24 20:00:50 2010
-Native configuration is i686-pc-linux-gnu
- +# of expected passes 38
- +# of unsupported tests 1
- +Test Run By tschwinge on Sun Oct 24 01:05:19 2010
+ +# of expected passes 38
+ +# of unsupported tests 1
+ +Test Run By tschwinge on Sun Oct 24 20:06:29 2010
+Native configuration is i686-unknown-gnu0.3
-
- === ld tests ===
-
+
+ === ld tests ===
+
@@ -129,8 +87,8 @@
UNTESTED: bootstrap with --no-keep-memory
UNTESTED: bootstrap with --relax
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-cdtest/cdtest.exp ...
+ Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
-PASS: cdtest
-PASS: cdtest with -Ur
+FAIL: cdtest
+FAIL: cdtest with -Ur
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-checks/checks.exp ...
+ Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
PASS: check sections 1
PASS: check sections 2
@@ -139,428 +97,23 @@
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-cygwin/exe-export.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-d10v/d10v.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-discard/discard.exp ...
+ Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
+ Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
+ Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
-PASS: ld-discard/extern
-PASS: ld-discard/start
-PASS: ld-discard/static
-PASS: ld-discard/zero-rel
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/audit.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
-PASS: Run with -paudit.so
-PASS: Run with -Paudit.so
-PASS: Run with --depaudit=audit.so
@@ -151,7 +166,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: Run with shared with --audit
-PASS: Run with -lusesaudit
-PASS: Run with -lusesaudit -lusesaudit2
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/binutils.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
-PASS: strip -z max-page-size=0x200000 (maxpage1)
-PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
-PASS: strip -z max-page-size=0x100000 (maxpage1)
@@ -166,7 +181,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: objcopy -z relro -shared (relro1)
-PASS: strip -z relro -shared (relro2)
-PASS: objcopy -z relro -shared (relro2)
- -PASS: strip -T /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/lma.lnk (lma)
+ -PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
-PASS: objcopy (tbss1)
-PASS: objcopy -z relro (tbss1)
-PASS: objcopy -shared (tbss1)
@@ -191,16 +206,16 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: objcopy -shared -z relro (tdata2)
-PASS: objcopy -z max-page-size=0x100000 (tdata2)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/dwarf.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
-PASS: Build libdwarf1.so
-PASS: Run with libdwarf1.so first
-PASS: Run with libdwarf1.so last
-PASS: Strip -s libdwarf1c.so
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/eh-group.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
-PASS: Guess the target size from eh-group1size.o
-PASS: Build eh-group1.o
-PASS: Link eh-group.o to eh-group
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/elf.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
-PASS: ld-elf/commonpage1
-PASS: ld-elf/discard1
-PASS: ld-elf/discard2
@@ -285,7 +300,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: static init array
-PASS: fini array
-PASS: static fini array
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/exclude.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
-PASS: ld link shared library
-PASS: ld export symbols from archive
-PASS: ld link shared library with --exclude-libs
@@ -295,18 +310,18 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
-PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
-PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/frame.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
-PASS: read-only .eh_frame section
-PASS: read-only .gcc_except_table section
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/sec-to-seg.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
-PASS: assignment of ELF sections to segments (same page)
-PASS: assignment of ELF sections to segments (adjacent pages)
-PASS: assignment of ELF sections to segments (disjoint pages)
+UNSUPPORTED: assignment of ELF sections to segments
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/sec64k.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
-PASS: ld-elf/64ksec-r
-PASS: ld-elf/64ksec
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/shared.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
-PASS: Build libfoo.so
-PASS: Build versioned libfoo.so
-PASS: Build libbar.so
@@ -395,21 +410,21 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: Run with libdl3c.so
-PASS: Run with libnew1a.so
-PASS: Run with libnew1b.so
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/tls_common.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
-PASS: tls_common
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/wrap.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
-PASS: Build libwrap1a.so
-PASS: Build libwrap1b.so
-PASS: Run with libwrap1a.so and libwrap1b.so
-PASS: Run with libwrap1b.so and libwrap1a.so
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elfcomm/elfcomm.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
-PASS: --sort-common (descending)
-PASS: --sort-common (ascending)
-PASS: size/aligment change of common symbols (warning 1)
-PASS: size/aligment change of common symbols (change 1)
-PASS: size/aligment change of common symbols (warning 2)
-PASS: size/aligment change of common symbols (change 2)
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elfvers/vers.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
-PASS: vers1
-PASS: vers2
-PASS: vers3
@@ -473,7 +488,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: vers32b
-PASS: vers32c
-PASS: vers32d
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elfvsb/elfvsb.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
-PASS: ld-elfvsb/hidden0
-PASS: ld-elfvsb/hidden1
-PASS: ld-elfvsb/hidden2
@@ -534,7 +549,7 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: common hidden symbol
-PASS: weak hidden symbol DSO last
-PASS: weak hidden symbol DSO first
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elfweak/elfweak.exp ...
+ Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
-PASS: ELF DSO weak func first
-PASS: ELF DSO weak func last
-PASS: ELF DSO weak func first DSO
@@ -562,9 +577,9 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: ELF DSO big bar (size)
-PASS: ELF weak size
-PASS: ld-elfweak/size2
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-fastcall/fastcall.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-frv/fdpic.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-frv/frv-elf.exp ...
+ Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
+ Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
+ Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
@@ -571,85 +124,16 @@
PASS: Check --gc-section/-r/-e
PASS: Check --gc-section/-r/-u
@@ -572,8 +587,8 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: --gc-sections with note section
-PASS: --gc-sections with __start_
-PASS: --gc-sections with shared library
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-h8300/h8300.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-i386/i386.exp ...
+ Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
+ Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
-PASS: TLS -fpic -shared transitions
-PASS: TLS descriptor -fpic -shared transitions
-PASS: Helper shared library
@@ -611,14 +626,14 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: ld-i386/nogot2
-PASS: ld-i386/discarded1
-PASS: undefined symbol with compressed debug sections
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-ia64/ia64.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-ia64/line.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-ifunc/binutils.exp ...
+ Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
+ Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
+ Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
-PASS: strip (ifunc-4-x86)
-PASS: objcopy (ifunc-4-x86)
-PASS: strip (ifunc-4-local-x86)
-PASS: objcopy (ifunc-4-local-x86)
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-ifunc/ifunc.exp ...
+ Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
-PASS: Building ifunc binaries
-PASS: Checking ifunc binaries
-PASS: ld-ifunc/ifunc-1-local-x86
@@ -643,74 +658,97 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: ld-ifunc/ifunc-7b-i386
-PASS: ld-ifunc/ifunc-8-i386
-PASS: ld-ifunc/ifunc-9-x86
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-libs/libs.exp ...
+ Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
PASS: -l: test (preparation)
PASS: -l: test
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-linkonce/linkonce.exp ...
+ Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
-PASS: ld-linkonce/zeroehl32
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-m68hc11/m68hc11.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-m68k/m68k-got.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-m68k/m68k.exp ...
- @@ -663,9 +147,6 @@
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pe/pe-run2.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pe/pe.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pie/pie.exp ...
+ Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
+ Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
+ Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
+ @@ -663,23 +147,19 @@
+ Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
+ Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
+ Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
-PASS: weak undefined
-PASS: weak undefined data
-PASS: missing entry symbol
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-powerpc/aix52.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-powerpc/powerpc.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-s390/s390.exp ...
- @@ -675,7 +156,6 @@
+ Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
+ PASS: plugin API enabled
+ PASS: load plugin
+ PASS: fail plugin onload
+ -PASS: fail plugin allsymbolsread
+ -PASS: fail plugin cleanup
+ -PASS: plugin all hooks
+ -PASS: plugin claimfile lost symbol
+ -PASS: plugin claimfile replace symbol
+ -PASS: plugin claimfile resolve symbol
+ -PASS: plugin claimfile replace file
+ -PASS: plugin set symbol visibility
+ -PASS: plugin ignore lib
+ -PASS: plugin claimfile replace lib
+ +FAIL: fail plugin allsymbolsread
+ +FAIL: fail plugin cleanup
+ +FAIL: plugin all hooks
+ +FAIL: plugin claimfile lost symbol
+ +FAIL: plugin claimfile replace symbol
+ +FAIL: plugin claimfile resolve symbol
+ +FAIL: plugin claimfile replace file
+ +FAIL: plugin ignore lib
+ +FAIL: plugin claimfile replace lib
+ Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
+ Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
+ Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
+ @@ -689,7 +169,6 @@
PASS: ld-scripts/align2b
PASS: ld-scripts/align2c
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/alignof.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
-PASS: ALIGNOF
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/assert.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
PASS: ASSERT
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/crossref.exp ...
- @@ -694,7 +174,6 @@
+ Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
+ @@ -708,7 +187,6 @@
PASS: ld-scripts/defined2
PASS: ld-scripts/defined3
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/dynamic-sections.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
-PASS: dynamic sections
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/empty-address.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
PASS: ld-scripts/empty-address-1
PASS: ld-scripts/empty-address-2a
- @@ -703,9 +182,7 @@
+ @@ -717,9 +195,7 @@
PASS: ld-scripts/empty-address-3b
PASS: ld-scripts/empty-address-3c
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/empty-aligned.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
-PASS: ld-scripts/empty-aligned
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/empty-orphan.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
-PASS: ld-scripts/empty-orphan
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/expr.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
PASS: ld-scripts/expr1
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/extern.exp ...
- @@ -715,87 +192,35 @@
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/map-address.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
+ @@ -729,87 +205,35 @@
+ Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
PASS: map addresses
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/overlay-size.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
-PASS: overlay size
-PASS: overlay size (map check)
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/phdrs.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
-PASS: PHDRS
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/phdrs2.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
-PASS: PHDRS2
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/phdrs3.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
-PASS: PHDRS headers
-PASS: PHDRS headers 3a
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/provide.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
PASS: ld-scripts/provide-1
PASS: ld-scripts/provide-2
XFAIL: ld-scripts/provide-3
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/rgn-at.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
-PASS: rgn-at1
-PASS: rgn-at2
-PASS: rgn-at3
-PASS: rgn-at4
-PASS: rgn-at5
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/rgn-over.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
-PASS: rgn-over1
-PASS: rgn-over1 (map check)
-PASS: rgn-over2
@@ -726,25 +764,25 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: rgn-over7
-PASS: rgn-over7 (map check)
-PASS: rgn-over8
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/script.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
PASS: script
PASS: MRI script
PASS: MEMORY
- -XFAIL: REGION_ALIAS: /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/region-alias-2.t
- -XFAIL: REGION_ALIAS: /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/region-alias-4.t
- XFAIL: REGION_ALIAS: /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/region-alias-1.t
- +XFAIL: REGION_ALIAS: /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/region-alias-2.t
- XFAIL: REGION_ALIAS: /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/region-alias-3.t
- +XFAIL: REGION_ALIAS: /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/region-alias-4.t
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/section-match.exp ...
+ -XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
+ -XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
+ XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
+ +XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
+ XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
+ +XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
+ Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
PASS: ld-scripts/section-match-1
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/size.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
PASS: ld-scripts/size-1
-PASS: ld-scripts/size-2
+UNSUPPORTED: size-2
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/sizeof.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
PASS: SIZEOF
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/sort.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
-PASS: --sort-section alignment
-PASS: SORT_BY_ALIGNMENT
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
@@ -763,36 +801,36 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
-PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
-PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/weak.exp ...
+ Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
-PASS: weak symbols
+UNSUPPORTED: weak symbols
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-selective/sel-dump.exp ...
+ Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
-PASS: Preserve default . = 0
-PASS: Preserve explicit . = 0
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-selective/selective.exp ...
+ Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
-PASS: selective1
-PASS: selective2
-PASS: selective3
-XFAIL: selective4
-XFAIL: selective5
-XFAIL: selective6
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/arch/arch.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/rd-sh.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh-vxworks.exp ...
- @@ -805,12 +230,6 @@
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh64/relfail.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh64/sh64.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-shared/shared.exp ...
+ Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
+ Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
+ Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
+ @@ -819,12 +243,6 @@
+ Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
+ Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
+ Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
-PASS: shared (non PIC)
-PASS: shared (non PIC, load offset)
-PASS: shared
-PASS: shared -Bsymbolic
-PASS: shared (PIC main, non PIC so)
-PASS: shared (PIC main)
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sparc/sparc.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-spu/spu.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-srec/srec.exp ...
- @@ -821,8 +240,6 @@
+ Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
+ Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
+ Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
+ @@ -835,8 +253,6 @@
PASS: Build libentry.a
PASS: --entry foo archive
PASS: --entry foo -u foo archive
@@ -801,39 +839,39 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
PASS: --entry foo
PASS: --entry foo -u foo
PASS: --entry 0x0
- @@ -831,7 +248,7 @@
+ @@ -845,7 +261,7 @@
PASS: undefined function
PASS: undefined line
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-undefined/weak-undef.exp ...
+ Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
-PASS: weak undefined symbols
+UNSUPPORTED: weak undefined symbols
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-v850/v850.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-versados/versados.exp ...
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-vxworks/vxworks.exp ...
- @@ -846,13 +263,15 @@
-
- === ld Summary ===
-
- -# of expected passes 598
- -# of expected failures 8
- +# of expected passes 54
- +# of unexpected failures 2
- +# of expected failures 5
- # of untested testcases 6
- +# of unsupported tests 4
- /media/data/home/tschwinge/tmp/binutils/master.build/ld/ld-new 2.20.51.20101007
-
- -Test Run By thomas on Fri Oct 8 22:40:36 2010
+ Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
+ Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
+ Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
+ @@ -860,13 +276,15 @@
+
+ === ld Summary ===
+
+ -# of expected passes 611
+ -# of expected failures 8
+ +# of expected passes 57
+ +# of unexpected failures 11
+ +# of expected failures 5
+ # of untested testcases 6
+ +# of unsupported tests 4
+ /media/data[...]/hurd.build/ld/ld-new 2.20.51.20101024
+
+ -Test Run By thomas on Sun Oct 24 20:00:34 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sun Oct 24 01:00:04 2010
+ +Test Run By tschwinge on Sun Oct 24 20:02:04 2010
+Native configuration is i686-unknown-gnu0.3
-
- === gas tests ===
-
- @@ -926,15 +345,6 @@
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/bfin/bfin.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/bfin/error.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cfi/cfi.exp ...
+
+ === gas tests ===
+
+ @@ -940,15 +358,6 @@
+ Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
+ Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
+ Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
-PASS: CFI on i386
-PASS: cfi cfi-diag-1
-PASS: CFI common 1
@@ -843,17 +881,18 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: CFI common 5
-PASS: CFI common 7
-PASS: CFI common 6
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cr16/cr16.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cr16/pic.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cris/cris.exp ...
- @@ -943,35 +353,6 @@
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/d30v/d30.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/dlx/alltests.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/elf/elf.exp ...
+ Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
+ Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
+ Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
+ @@ -957,36 +366,6 @@
+ Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
+ Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
+ Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
-PASS: elf ehopt0
-PASS: .file file names
-PASS: group section
-PASS: group section
+ -PASS: group section name
-PASS: group section with multiple sections of same name
-PASS: group section with multiple sections of same name
-PASS: automatic section group
@@ -879,10 +918,10 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: DWARF2 2
-PASS: DWARF2 3
-PASS: Check bad section flag
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/fr30/allinsn.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/fr30/fr30.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/frv/allinsn.exp ...
- @@ -1148,39 +529,10 @@
+ Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
+ Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
+ Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
+ @@ -1165,41 +544,10 @@
PASS: i386 FSGSBase (Intel disassembly)
PASS: i386 RdRnd
PASS: i386 RdRnd (Intel disassembly)
@@ -893,6 +932,8 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: i386 abs reloc
-PASS: i386 intelpic
-PASS: i386 relax
+ -PASS: i386 relax 1
+ -PASS: i386 relax 3
-PASS: i386 gotpc
-PASS: i386 dynamic tls
-PASS: i386 pic tls
@@ -919,40 +960,40 @@ Comparing [[sum_hurd]] to [[sum_linux]]:
-PASS: i386 list-2
-PASS: i386 list-3
-PASS: DWARF2 debugging information 1
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/i860/i860.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/ia64/ia64.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/ieee-fp/x930509a.exp ...
- @@ -1191,9 +543,6 @@
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/iq2000/yield.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/lm32/all.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/lns/lns.exp ...
+ Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
+ Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
+ Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
+ @@ -1210,9 +558,6 @@
+ Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
+ Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
+ Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
-PASS: lns lns-diag-1
-PASS: lns-duplicate
-PASS: lns-common-1
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/allinsn.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/error.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/m32r.exp ...
- @@ -1262,11 +611,6 @@
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sparc/sparc.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sun4/addend.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/symver/symver.exp ...
+ Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
+ Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
+ Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
+ @@ -1281,11 +626,6 @@
+ Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
+ Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
+ Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
-PASS: symver symver0
-PASS: symver symver1
-PASS: symver symver2
-PASS: symver symver3
-PASS: symver symver6
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/tic4x/tic4x.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/tic54x/tic54x.exp ...
- Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/tic6x/tic6x.exp ...
- @@ -1281,7 +625,6 @@
-
- === gas Summary ===
-
- -# of expected passes 310
- -# of expected failures 1
- +# of expected passes 236
- ../as-new 2.20.51.20101007
-
+ Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
+ Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
+ Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
+ @@ -1300,7 +640,6 @@
+
+ === gas Summary ===
+
+ -# of expected passes 315
+ -# of expected failures 1
+ +# of expected passes 238
+ ../as-new 2.20.51.20101024
+
A lot of tests are not being run. Might be due
to the tests (incorrectly / correctly) being Linux-specific.
diff --git a/open_issues/binutils_testsuite/log_build-diff b/open_issues/binutils_testsuite/log_build-diff
new file mode 100644
index 00000000..df43cb74
--- /dev/null
+++ b/open_issues/binutils_testsuite/log_build-diff
@@ -0,0 +1,619 @@
+--- /dev/fd/63 2010-10-24 19:54:24.583358614 +0200
++++ /dev/fd/62 2010-10-24 19:54:24.583358614 +0200
+@@ -1,6 +1,6 @@
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
+ checking for a BSD-compatible install... /usr/bin/install -c
+ checking whether ln works... yes
+ checking whether ln -s works... yes
+@@ -75,7 +75,7 @@
+ checking for cc... cc
+ checking for c++... c++
+ checking for gcc... gcc
+-checking for gcj... no
++checking for gcj... gcj
+ checking for gfortran... no
+ checking for ar... ar
+ checking for as... as
+@@ -120,7 +120,7 @@
+ checking for gmsgfmt... /usr/bin/msgfmt
+ checking for xgettext... /usr/bin/xgettext
+ checking for msgmerge... /usr/bin/msgmerge
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -129,9 +129,9 @@
+ checking whether we are using the GNU C compiler... yes
+ checking whether gcc accepts -g... yes
+ checking for gcc option to accept ISO C89... none needed
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking for library containing strerror... none required
+ checking how to run the C preprocessor... gcc -E
+ checking for grep that handles long lines and -e... /bin/grep
+@@ -238,11 +238,11 @@
+ checking whether to enable maintainer-specific portions of Makefiles... no
+ checking for makeinfo... makeinfo --split-size=5000000
+ checking for perl... perl
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-ranlib... ranlib
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-ranlib... ranlib
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -297,7 +297,7 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+@@ -369,8 +369,8 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for getrusage... yes
+@@ -389,7 +389,7 @@
+ checking for sysmp... no
+ checking for getsysinfo... no
+ checking for table... no
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for wait3... yes
+ checking for wait4... yes
+ checking for __fsetlocking... yes
+@@ -421,10 +421,10 @@
+ mkdir -p -- ./bfd
+ Configuring in ./bfd
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -441,9 +441,9 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-ranlib... ranlib
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-ranlib... ranlib
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -472,34 +472,34 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... (cached) ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... (cached) ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
++checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... no
+@@ -582,22 +582,22 @@
+ checking sys/procfs.h usability... yes
+ checking sys/procfs.h presence... yes
+ checking for sys/procfs.h... yes
+-checking for prstatus_t in sys/procfs.h... yes
++checking for prstatus_t in sys/procfs.h... no
+ checking for prstatus32_t in sys/procfs.h... no
+ checking for prstatus_t.pr_who in sys/procfs.h... no
+ checking for prstatus32_t.pr_who in sys/procfs.h... no
+-checking for pstatus_t in sys/procfs.h... no
++checking for pstatus_t in sys/procfs.h... yes
+ checking for pxstatus_t in sys/procfs.h... no
+ checking for pstatus32_t in sys/procfs.h... no
+-checking for prpsinfo_t in sys/procfs.h... yes
++checking for prpsinfo_t in sys/procfs.h... no
+ checking for prpsinfo32_t in sys/procfs.h... no
+-checking for psinfo_t in sys/procfs.h... no
++checking for psinfo_t in sys/procfs.h... yes
+ checking for psinfo32_t in sys/procfs.h... no
+-checking for lwpstatus_t in sys/procfs.h... no
++checking for lwpstatus_t in sys/procfs.h... yes
+ checking for lwpxstatus_t in sys/procfs.h... no
+ checking for lwpstatus_t.pr_context in sys/procfs.h... no
+-checking for lwpstatus_t.pr_reg in sys/procfs.h... no
+-checking for lwpstatus_t.pr_fpreg in sys/procfs.h... no
++checking for lwpstatus_t.pr_reg in sys/procfs.h... yes
++checking for lwpstatus_t.pr_fpreg in sys/procfs.h... yes
+ checking for win32_pstatus_t in sys/procfs.h... no
+ checking linker --as-needed support... yes
+ checking for cos in -lm... yes
+@@ -612,7 +612,7 @@
+ checking for unistd.h... (cached) yes
+ checking for getpagesize... (cached) yes
+ checking for working mmap... yes
+-checking for madvise... yes
++checking for madvise... no
+ checking for mprotect... yes
+ configure: updating cache ./config.cache
+ configure: creating ./config.status
+@@ -1214,36 +1214,15 @@
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../hurd/bfd/dwarf1.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../hurd/bfd/dwarf1.c -o dwarf1.o
+ mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c -o i386linux.lo ../../hurd/bfd/i386linux.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c ../../hurd/bfd/i386linux.c -o i386linux.o
+-mv -f .deps/i386linux.Tpo .deps/i386linux.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c -o aout32.lo ../../hurd/bfd/aout32.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c ../../hurd/bfd/aout32.c -o aout32.o
+-mv -f .deps/aout32.Tpo .deps/aout32.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c -o pei-i386.lo ../../hurd/bfd/pei-i386.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c ../../hurd/bfd/pei-i386.c -o pei-i386.o
+-mv -f .deps/pei-i386.Tpo .deps/pei-i386.Plo
+-rm -f peigen.c
+-sed -e s/XX/pe/g < ../../hurd/bfd/peXXigen.c > peigen.new
+-mv -f peigen.new peigen.c
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c -o peigen.lo peigen.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c peigen.c -o peigen.o
+-mv -f .deps/peigen.Tpo .deps/peigen.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c -o cofflink.lo ../../hurd/bfd/cofflink.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c ../../hurd/bfd/cofflink.c -o cofflink.o
+-mv -f .deps/cofflink.Tpo .deps/cofflink.Plo
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c -o elf32-gen.lo ../../hurd/bfd/elf32-gen.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c ../../hurd/bfd/elf32-gen.c -o elf32-gen.o
+ mv -f .deps/elf32-gen.Tpo .deps/elf32-gen.Plo
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c -o cpu-i386.lo ../../hurd/bfd/cpu-i386.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c ../../hurd/bfd/cpu-i386.c -o cpu-i386.o
+ mv -f .deps/cpu-i386.Tpo .deps/cpu-i386.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c -o trad-core.lo ../../hurd/bfd/trad-core.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c ../../hurd/bfd/trad-core.c -o trad-core.o
+-mv -f .deps/trad-core.Tpo .deps/trad-core.Plo
+ rm -f tofiles
+ f=""; \
+- for i in elf32-i386.lo elf-ifunc.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo i386linux.lo aout32.lo pei-i386.lo peigen.lo cofflink.lo elf32-gen.lo cpu-i386.lo trad-core.lo ; do \
++ for i in elf32-i386.lo elf-ifunc.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo elf32-gen.lo cpu-i386.lo ; do \
+ case " $f " in \
+ *" $i "*) ;; \
+ *) f="$f $i" ;; \
+@@ -1253,7 +1232,7 @@
+ /bin/bash ../../hurd/bfd/../move-if-change tofiles ofiles
+ touch stamp-ofiles
+ /bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -release `cat libtool-soversion` -o libbfd.la -rpath /usr/local/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles` -lz
+-libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o i386linux.o aout32.o pei-i386.o peigen.o cofflink.o elf32-gen.o cpu-i386.o trad-core.o
++libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o elf32-gen.o cpu-i386.o
+ libtool: link: ranlib .libs/libbfd.a
+ libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
+ libtooldir=`/bin/bash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
+@@ -1269,10 +1248,10 @@
+ mkdir -p -- ./opcodes
+ Configuring in ./opcodes
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -1289,7 +1268,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -1310,8 +1289,8 @@
+ checking minix/config.h presence... no
+ checking for minix/config.h... no
+ checking whether it is safe to define __EXTENSIONS__... yes
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking how to print strings... printf
+ checking for a sed that does not truncate output... /bin/sed
+ checking for fgrep... /bin/grep -F
+@@ -1320,27 +1299,27 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... (cached) ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... (cached) ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
++checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -1444,10 +1423,10 @@
+ mkdir -p -- ./binutils
+ Configuring in ./binutils
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -1464,7 +1443,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -1495,28 +1474,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -1536,7 +1515,7 @@
+ checking for xgettext... /usr/bin/xgettext
+ checking for msgmerge... /usr/bin/msgmerge
+ checking whether to enable maintainer-specific portions of Makefiles... no
+-checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
++checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
+ checking for string.h... (cached) yes
+ checking for strings.h... (cached) yes
+ checking for stdlib.h... (cached) yes
+@@ -1909,10 +1888,10 @@
+ mkdir -p -- ./gas
+ Configuring in ./gas
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -1929,7 +1908,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -1960,28 +1939,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -2161,10 +2140,10 @@
+ mkdir -p -- ./gprof
+ Configuring in ./gprof
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -2181,7 +2160,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -2212,28 +2191,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -2392,10 +2371,10 @@
+ mkdir -p -- ./ld
+ Configuring in ./ld
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -2417,7 +2396,7 @@
+ checking for grep that handles long lines and -e... /bin/grep
+ checking for egrep... /bin/grep -E
+ Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -2445,28 +2424,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -2549,13 +2528,13 @@
+ /bin/bash ../../hurd/ld/../ylwrap ../../hurd/ld/ldgram.y y.tab.c ldgram.c y.tab.h ldgram.h y.output ldgram.output -- bison -y -d
+ updating ldgram.h
+ (echo "/* This file is automatically generated. DO NOT EDIT! */";\
+- for f in `echo " " eelf_i386.o ei386linux.o "" \
++ for f in `echo " " eelf_i386.o "" \
+ | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
+ echo "extern ld_emulation_xfer_type ld_${f}_emulation;"; \
+ done;\
+ echo "";\
+ echo "#define EMULATION_LIST \\";\
+- for f in `echo " " eelf_i386.o ei386linux.o "" \
++ for f in `echo " " eelf_i386.o "" \
+ | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
+ echo " &ld_${f}_emulation, \\"; \
+ done;\
+@@ -2642,8 +2621,8 @@
+ mv -f .deps/ldctor.Tpo .deps/ldctor.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
+ -DDEFAULT_EMULATION='"elf_i386"' \
+- -DBINDIR='"/usr/local/bin"' -DTOOLBINDIR='"/usr/local/i686-pc-linux-gnu/bin"' \
+- -DTARGET='"i686-pc-linux-gnu"' -DTARGET_SYSTEM_ROOT=\"\" \
++ -DBINDIR='"/usr/local/bin"' -DTOOLBINDIR='"/usr/local/i686-unknown-gnu0.3/bin"' \
++ -DTARGET='"i686-unknown-gnu0.3"' -DTARGET_SYSTEM_ROOT=\"\" \
+ ../../hurd/ld/ldmain.c
+ mv -f .deps/ldmain.Tpo .deps/ldmain.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldwrite.o -MD -MP -MF .deps/ldwrite.Tpo -c -o ldwrite.o ../../hurd/ld/ldwrite.c
+@@ -2657,7 +2636,7 @@
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmisc.o -MD -MP -MF .deps/ldmisc.Tpo -c -o ldmisc.o ../../hurd/ld/ldmisc.c
+ mv -f .deps/ldmisc.Tpo .deps/ldmisc.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
+- -DSCRIPTDIR='"/usr/local/i686-pc-linux-gnu/lib"' -DBINDIR='"/usr/local/bin"' -DTOOLBINDIR='"/usr/local/i686-pc-linux-gnu/bin"' \
++ -DSCRIPTDIR='"/usr/local/i686-unknown-gnu0.3/lib"' -DBINDIR='"/usr/local/bin"' -DTOOLBINDIR='"/usr/local/i686-unknown-gnu0.3/bin"' \
+ ../../hurd/ld/ldfile.c
+ mv -f .deps/ldfile.Tpo .deps/ldfile.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldcref.o -MD -MP -MF .deps/ldcref.Tpo -c -o ldcref.o ../../hurd/ld/ldcref.c
+@@ -2665,14 +2644,11 @@
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../hurd/ld/plugin.c
+ mv -f .deps/plugin.Tpo .deps/plugin.Po
+ cp ../../hurd/ld/emultempl/astring.sed stringify.sed
+-LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "/usr/local/lib" "/usr/local" "/usr/local" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-pc-linux-gnu"
++LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "/usr/local/lib" "/usr/local" "/usr/local" i686-unknown-gnu0.3 i686-unknown-gnu0.3 i686-unknown-gnu0.3 "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-unknown-gnu0.3"
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT eelf_i386.o -MD -MP -MF .deps/eelf_i386.Tpo -c -o eelf_i386.o eelf_i386.c
+ mv -f .deps/eelf_i386.Tpo .deps/eelf_i386.Po
+-LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "/usr/local/lib" "/usr/local" "/usr/local" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no i386linux "i686-pc-linux-gnuaout"
+-gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ei386linux.o -MD -MP -MF .deps/ei386linux.Tpo -c -o ei386linux.o ei386linux.c
+-mv -f .deps/ei386linux.Tpo .deps/ei386linux.Po
+-/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
+-libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
++/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
++libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
+ touch ld.1
+ perl ../../hurd/ld/../etc/texi2pod.pl -I ../../hurd/ld -I ../../hurd/ld/../bfd/doc -I ../bfd/doc -I ../../hurd/ld/../libiberty -Dman < ../../hurd/ld/ld.texinfo > ld.pod
+ (pod2man --center="GNU Development Tools" --release="binutils-2.20.51" --section=1 ld.pod | \
diff --git a/open_issues/binutils_testsuite/sum_hurd b/open_issues/binutils_testsuite/sum_hurd
index 674bad0b..5eded115 100644
--- a/open_issues/binutils_testsuite/sum_hurd
+++ b/open_issues/binutils_testsuite/sum_hurd
@@ -1,4 +1,4 @@
-Test Run By tschwinge on Sun Oct 24 00:59:02 2010
+Test Run By tschwinge on Sun Oct 24 20:01:01 2010
Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -7,25 +7,25 @@ Schedule of variations:
unix
Running target unix
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/ar.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/ar.exp ...
PASS: ar long file names
PASS: ar symbol table
PASS: ar thin archive
PASS: ar thin archive with nested archive
PASS: ar argument parsing
PASS: ar deterministic archive
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/arm/objdump.exp ...
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/bfin/objdump.exp ...
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/dlltool.exp ...
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/elfedit.exp ...
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/hppa/objdump.exp ...
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/i386/i386.exp ...
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/m68k/objdump.exp ...
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/nm.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
PASS: nm (no arguments)
PASS: nm -g
PASS: nm -P
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/objcopy.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/objcopy.exp ...
PASS: objcopy (simple copy)
PASS: objcopy --reverse-bytes
PASS: objcopy -i --interleave-width
@@ -47,7 +47,7 @@ PASS: copy with setting section flags 2
PASS: copy with setting section flags 3
PASS: strip --strip-unneeded on common symbol
PASS: --localize-hidden test 2
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
PASS: objdump -i
PASS: objdump -f
PASS: objdump -h
@@ -55,19 +55,19 @@ PASS: objdump -t
PASS: objdump -r
PASS: objdump -s
UNSUPPORTED: objdump compressed debug
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/readelf.exp ...
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/size.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
PASS: size (no arguments)
PASS: size -A
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/vax/objdump.exp ...
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/windres/windres.exp ...
-Running /home/tschwinge/tmp/binutils/master/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/vax/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/windres/windres.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
=== binutils Summary ===
# of expected passes 38
# of unsupported tests 1
-Test Run By tschwinge on Sun Oct 24 01:05:19 2010
+Test Run By tschwinge on Sun Oct 24 20:06:29 2010
Native configuration is i686-unknown-gnu0.3
=== ld tests ===
@@ -76,201 +76,214 @@ Schedule of variations:
unix
Running target unix
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-alpha/alpha.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-arm/arm-elf.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-auto-import/auto-import.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-bootstrap/bootstrap.exp ...
+Running [...]/hurd/ld/testsuite/ld-alpha/alpha.exp ...
+Running [...]/hurd/ld/testsuite/ld-arm/arm-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-auto-import/auto-import.exp ...
+Running [...]/hurd/ld/testsuite/ld-bootstrap/bootstrap.exp ...
UNTESTED: bootstrap
UNTESTED: bootstrap with strip
UNTESTED: bootstrap with --static
UNTESTED: bootstrap with --traditional-format
UNTESTED: bootstrap with --no-keep-memory
UNTESTED: bootstrap with --relax
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-cdtest/cdtest.exp ...
+Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
FAIL: cdtest
FAIL: cdtest with -Ur
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-checks/checks.exp ...
+Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
PASS: check sections 1
PASS: check sections 2
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-cris/cris.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-crx/crx.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-cygwin/exe-export.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-d10v/d10v.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-discard/discard.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/audit.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/binutils.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/dwarf.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/eh-group.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/elf.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/exclude.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/frame.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/sec-to-seg.exp ...
+Running [...]/hurd/ld/testsuite/ld-cris/cris.exp ...
+Running [...]/hurd/ld/testsuite/ld-crx/crx.exp ...
+Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
+Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
+Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
UNSUPPORTED: assignment of ELF sections to segments
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/sec64k.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/shared.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/tls_common.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elf/wrap.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elfcomm/elfcomm.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elfvers/vers.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elfvsb/elfvsb.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-elfweak/elfweak.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-fastcall/fastcall.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-frv/fdpic.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-frv/frv-elf.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-frv/tls.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-gc/gc.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
+Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
+Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
+Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
+Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
+Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/tls.exp ...
+Running [...]/hurd/ld/testsuite/ld-gc/gc.exp ...
PASS: Check --gc-section
PASS: Check --gc-section/-q
PASS: Check --gc-section/-r/-e
PASS: Check --gc-section/-r/-u
PASS: --gc-sections -r without -e
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-h8300/h8300.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-i386/i386.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-ia64/ia64.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-ia64/line.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-ifunc/binutils.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-ifunc/ifunc.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-libs/libs.exp ...
+Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
+Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
+Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
+Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
+Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
+Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
+Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
PASS: -l: test (preparation)
PASS: -l: test
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-linkonce/linkonce.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-m68hc11/m68hc11.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-m68k/m68k-got.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-m68k/m68k.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-mep/mep.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-mips-elf/mips-elf.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-mmix/mmix.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-mn10300/mn10300.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pe/pe-compile.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pe/pe-run.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pe/pe-run2.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pe/pe.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-pie/pie.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-powerpc/aix52.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-powerpc/powerpc.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-s390/s390.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/align.exp ...
+Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
+Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
+Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
+Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
+Running [...]/hurd/ld/testsuite/ld-mep/mep.exp ...
+Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
+Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-mmix/mmix.exp ...
+Running [...]/hurd/ld/testsuite/ld-mn10300/mn10300.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-compile.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-run.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
+Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
+Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
+PASS: plugin API enabled
+PASS: load plugin
+PASS: fail plugin onload
+FAIL: fail plugin allsymbolsread
+FAIL: fail plugin cleanup
+FAIL: plugin all hooks
+FAIL: plugin claimfile lost symbol
+FAIL: plugin claimfile replace symbol
+FAIL: plugin claimfile resolve symbol
+FAIL: plugin claimfile replace file
+FAIL: plugin ignore lib
+FAIL: plugin claimfile replace lib
+Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
+Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
+Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/align.exp ...
PASS: align1
PASS: ld-scripts/align2a
PASS: ld-scripts/align2b
PASS: ld-scripts/align2c
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/alignof.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/assert.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
PASS: ASSERT
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/crossref.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
PASS: NOCROSSREFS 1
PASS: NOCROSSREFS 2
PASS: NOCROSSREFS 3
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/data.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/data.exp ...
PASS: ld-scripts/data
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/default-script.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/default-script.exp ...
PASS: ld-scripts/default-script1
PASS: ld-scripts/default-script2
PASS: ld-scripts/default-script3
PASS: ld-scripts/default-script4
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/defined.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/defined.exp ...
PASS: DEFINED (PRMS 5699)
PASS: ld-scripts/defined2
PASS: ld-scripts/defined3
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/dynamic-sections.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/empty-address.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
PASS: ld-scripts/empty-address-1
PASS: ld-scripts/empty-address-2a
PASS: ld-scripts/empty-address-2b
PASS: ld-scripts/empty-address-3a
PASS: ld-scripts/empty-address-3b
PASS: ld-scripts/empty-address-3c
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/empty-aligned.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/empty-orphan.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/expr.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
PASS: ld-scripts/expr1
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/extern.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
PASS: EXTERN
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/include.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/include.exp ...
PASS: include-1
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/map-address.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
PASS: map addresses
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/overlay-size.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/phdrs.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/phdrs2.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/phdrs3.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/provide.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
PASS: ld-scripts/provide-1
PASS: ld-scripts/provide-2
XFAIL: ld-scripts/provide-3
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/rgn-at.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/rgn-over.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/script.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
PASS: script
PASS: MRI script
PASS: MEMORY
-XFAIL: REGION_ALIAS: /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/region-alias-1.t
-XFAIL: REGION_ALIAS: /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/region-alias-2.t
-XFAIL: REGION_ALIAS: /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/region-alias-3.t
-XFAIL: REGION_ALIAS: /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/region-alias-4.t
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/section-match.exp ...
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
+Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
PASS: ld-scripts/section-match-1
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/size.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
PASS: ld-scripts/size-1
UNSUPPORTED: size-2
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/sizeof.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
PASS: SIZEOF
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/sort.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-scripts/weak.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
UNSUPPORTED: weak symbols
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-selective/sel-dump.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-selective/selective.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/arch/arch.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/rd-sh.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh-vxworks.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh64/relax.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh64/relfail.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sh/sh64/sh64.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-shared/shared.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-sparc/sparc.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-spu/spu.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-srec/srec.exp ...
+Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
+Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/relax.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
+Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
+Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
+Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
+Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
PASS: S-records
PASS: S-records with constructors
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-tic6x/tic6x.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-undefined/entry.exp ...
+Running [...]/hurd/ld/testsuite/ld-tic6x/tic6x.exp ...
+Running [...]/hurd/ld/testsuite/ld-undefined/entry.exp ...
PASS: Build libentry.a
PASS: --entry foo archive
PASS: --entry foo -u foo archive
PASS: --entry foo
PASS: --entry foo -u foo
PASS: --entry 0x0
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-undefined/undefined.exp ...
+Running [...]/hurd/ld/testsuite/ld-undefined/undefined.exp ...
PASS: undefined
PASS: undefined function
PASS: undefined line
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-undefined/weak-undef.exp ...
+Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
UNSUPPORTED: weak undefined symbols
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-v850/v850.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-versados/versados.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-vxworks/vxworks.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-x86-64/line.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-x86-64/x86-64.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-xc16x/xc16x.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-xstormy16/xstormy16.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-xtensa/coalesce.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-xtensa/lcall.exp ...
-Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-xtensa/xtensa.exp ...
+Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
+Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
+Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/line.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/x86-64.exp ...
+Running [...]/hurd/ld/testsuite/ld-xc16x/xc16x.exp ...
+Running [...]/hurd/ld/testsuite/ld-xstormy16/xstormy16.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/coalesce.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/lcall.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
=== ld Summary ===
-# of expected passes 54
-# of unexpected failures 2
+# of expected passes 57
+# of unexpected failures 11
# of expected failures 5
# of untested testcases 6
# of unsupported tests 4
-/media/data/home/tschwinge/tmp/binutils/master.build/ld/ld-new 2.20.51.20101007
+/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101024
-Test Run By tschwinge on Sun Oct 24 01:00:04 2010
+Test Run By tschwinge on Sun Oct 24 20:02:04 2010
Native configuration is i686-unknown-gnu0.3
=== gas tests ===
@@ -279,7 +292,7 @@ Schedule of variations:
unix
Running target unix
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/all/gas.exp ...
+Running [...]/hurd/gas/testsuite/gas/all/gas.exp ...
PASS: pcrel values in assignment
PASS: simplifiable double subtraction
PASS: simplifiable double subtraction (-a)
@@ -338,50 +351,51 @@ PASS: gas/all/warn-1.s (test for warnings, line 5)
PASS: gas/all/warn-1.s (test for warnings, line 6)
PASS: gas/all/warn-1.s (test for warnings, line 7)
PASS: gas/all/warn-1.s (test for excess errors)
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/alpha/alpha.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/arc/arc.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/arc/warn.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/arm/arm.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/bfin/bfin.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/bfin/error.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cfi/cfi.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cr16/cr16.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cr16/pic.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/cris/cris.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/crx/allinsn.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/d10v/d10v.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/d30v/d30.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/dlx/alltests.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/elf/elf.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/fr30/allinsn.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/fr30/fr30.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/frv/allinsn.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/h8300-coff.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/h8300-elf.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/h8300.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t01_mov.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t02_mova.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t03_add.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t04_sub.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t05_cmp.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t06_ari2.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t07_ari3.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t08_or.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t09_xor.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t10_and.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t11_logs.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t12_bit.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/h8300/t13_otr.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/hppa/basic/basic.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/hppa/parse/parse.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/hppa/reloc/reloc.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/i386/i386.exp ...
+Running [...]/hurd/gas/testsuite/gas/alpha/alpha.exp ...
+Running [...]/hurd/gas/testsuite/gas/arc/arc.exp ...
+Running [...]/hurd/gas/testsuite/gas/arc/warn.exp ...
+Running [...]/hurd/gas/testsuite/gas/arm/arm.exp ...
+Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
+Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
+Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
+Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
+Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
+Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
+Running [...]/hurd/gas/testsuite/gas/crx/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/d10v/d10v.exp ...
+Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
+Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
+Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
+Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
+Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300-coff.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300-elf.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t01_mov.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t02_mova.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t03_add.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t04_sub.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t05_cmp.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t06_ari2.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t07_ari3.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t08_or.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t09_xor.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t10_and.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t11_logs.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t12_bit.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t13_otr.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/basic/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/parse/parse.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/reloc/reloc.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
+Running [...]/hurd/gas/testsuite/gas/i386/i386.exp ...
PASS: i386 float
PASS: i386 general
PASS: i386 inval
PASS: i386 segment
PASS: i386 inval-seg
+PASS: i386 inval-reg
PASS: i386 modrm
PASS: i386 naked reg
PASS: i386 opcodes
@@ -403,6 +417,7 @@ PASS: i386 SIB
PASS: i386 SIB (Intel mode)
PASS: i386 displacement
PASS: i386 displacement (Intel mode)
+PASS: i386 32bit displacement
PASS: i386 VMX
PASS: i386 SMX
PASS: i386 suffix
@@ -533,27 +548,27 @@ PASS: x86 Intel expressions
PASS: string insn operands
PASS: i386 string-bad
PASS: i386 space1
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/i860/i860.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/ia64/ia64.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/ieee-fp/x930509a.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/iq2000/allinsn.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/iq2000/load-hazards.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/iq2000/odd-ldw.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/iq2000/odd-sdw.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/iq2000/yield.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/lm32/all.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/lns/lns.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/allinsn.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/error.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/m32r.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/m32r2.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/m32rx.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/pic.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m32r/rel32.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m68hc11/m68hc11.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m68k-coff/gas.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/m68k/all.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/macros/macros.exp ...
+Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
+Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
+Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/load-hazards.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/odd-ldw.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/odd-sdw.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
+Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32r2.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32rx.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/pic.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/rel32.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68hc11/m68hc11.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68k-coff/gas.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68k/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/macros/macros.exp ...
PASS: macro test 1
PASS: macro test 2
PASS: macro test 3
@@ -576,55 +591,55 @@ PASS: macros purge
PASS: macros redef
PASS: gas/macros/paren
PASS: .exitm outside of a macro
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mcore/allinsn.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mep/allinsn.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mep/complex-relocs.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mips/mips.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mmix/mmix-err.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mmix/mmix-list.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mmix/mmix.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mn10200/basic.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mn10300/basic.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mri/mri.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/msp430/msp430.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mt/errors.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mt/mt.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/mt/relocs.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/openrisc/allinsn.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/pdp11/pdp11.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/pe/pe.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/pj/pj.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/ppc/aix.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/ppc/ppc.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/rx/rx.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/s390/s390.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/score/relax.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/score/relax_32.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sh/arch/arch.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sh/basic.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sh/err.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sh/sh64/err.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sh/sh64/sh64.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sparc-solaris/addend.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sparc-solaris/gas.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sparc/mismatch.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sparc/sparc.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/sun4/addend.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/symver/symver.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/tic4x/tic4x.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/tic54x/tic54x.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/tic6x/tic6x.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/v850/basic.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/vax/vax.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/xc16x/xc16x.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/xstormy16/allinsn.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/xtensa/all.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/xtensa/xtensa-err.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/z80/z80.exp ...
-Running /home/tschwinge/tmp/binutils/master/gas/testsuite/gas/z8k/z8k.exp ...
+Running [...]/hurd/gas/testsuite/gas/mcore/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/mep/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/mep/complex-relocs.exp ...
+Running [...]/hurd/gas/testsuite/gas/mips/mips.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix-err.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix-list.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix.exp ...
+Running [...]/hurd/gas/testsuite/gas/mn10200/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/mn10300/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/mri/mri.exp ...
+Running [...]/hurd/gas/testsuite/gas/msp430/msp430.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/errors.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/mt.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/relocs.exp ...
+Running [...]/hurd/gas/testsuite/gas/openrisc/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/pdp11/pdp11.exp ...
+Running [...]/hurd/gas/testsuite/gas/pe/pe.exp ...
+Running [...]/hurd/gas/testsuite/gas/pj/pj.exp ...
+Running [...]/hurd/gas/testsuite/gas/ppc/aix.exp ...
+Running [...]/hurd/gas/testsuite/gas/ppc/ppc.exp ...
+Running [...]/hurd/gas/testsuite/gas/rx/rx.exp ...
+Running [...]/hurd/gas/testsuite/gas/s390/s390.exp ...
+Running [...]/hurd/gas/testsuite/gas/score/relax.exp ...
+Running [...]/hurd/gas/testsuite/gas/score/relax_32.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/arch/arch.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/err.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/sh64/err.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/sh64/sh64.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc-solaris/addend.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc-solaris/gas.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc/mismatch.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
+Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
+Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
+Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
+Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
+Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
+Running [...]/hurd/gas/testsuite/gas/v850/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/vax/vax.exp ...
+Running [...]/hurd/gas/testsuite/gas/xc16x/xc16x.exp ...
+Running [...]/hurd/gas/testsuite/gas/xstormy16/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/xtensa/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/xtensa/xtensa-err.exp ...
+Running [...]/hurd/gas/testsuite/gas/z80/z80.exp ...
+Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
=== gas Summary ===
-# of expected passes 236
-../as-new 2.20.51.20101007
+# of expected passes 238
+../as-new 2.20.51.20101024
diff --git a/open_issues/binutils_testsuite/sum_linux b/open_issues/binutils_testsuite/sum_linux
index e22086d2..380fb096 100644
--- a/open_issues/binutils_testsuite/sum_linux
+++ b/open_issues/binutils_testsuite/sum_linux
@@ -1,4 +1,4 @@
-Test Run By thomas on Fri Oct 8 22:40:31 2010
+Test Run By thomas on Sun Oct 24 20:00:29 2010
Native configuration is i686-pc-linux-gnu
=== binutils tests ===
@@ -7,7 +7,7 @@ Schedule of variations:
unix
Running target unix
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/ar.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/ar.exp ...
PASS: ar long file names
PASS: ar symbol table
PASS: ar thin archive
@@ -15,24 +15,24 @@ PASS: ar thin archive with nested archive
PASS: ar argument parsing
PASS: ar deterministic archive
PASS: ar unique symbol in archive
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/arm/objdump.exp ...
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/bfin/objdump.exp ...
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/dlltool.exp ...
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/elfedit.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
UNSUPPORTED: Update ELF header 1
PASS: Update ELF header 2
PASS: Update ELF header 3
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/hppa/objdump.exp ...
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/i386/i386.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
PASS: objcopy on compressed debug sections
PASS: strip on uncompressed debug sections
PASS: strip on compressed debug sections
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/m68k/objdump.exp ...
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/nm.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
PASS: nm (no arguments)
PASS: nm -g
PASS: nm -P
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/objcopy.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/objcopy.exp ...
PASS: objcopy (simple copy)
PASS: objcopy --reverse-bytes
PASS: objcopy -i --interleave-width
@@ -80,7 +80,7 @@ PASS: objcopy add-empty-section
PASS: objcopy on sections with SHF_EXCLUDE
PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
PASS: --localize-hidden test 2
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
PASS: objdump -i
PASS: objdump -f
PASS: objdump -h
@@ -89,7 +89,7 @@ PASS: objdump -r
PASS: objdump -s
PASS: objdump -s -j .zdebug_abbrev
PASS: objdump -W
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/readelf.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
PASS: finding out ELF size with readelf -h
PASS: readelf -h
PASS: readelf -S
@@ -98,18 +98,18 @@ PASS: readelf -r
PASS: readelf -wi
PASS: readelf -wa (compressed)
PASS: readelf -p
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/size.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
PASS: size (no arguments)
PASS: size -A
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/vax/objdump.exp ...
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/windres/windres.exp ...
-Running /home/thomas/tmp/source/binutils/master/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/vax/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/windres/windres.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
=== binutils Summary ===
# of expected passes 79
# of unsupported tests 2
-Test Run By thomas on Fri Oct 8 22:40:54 2010
+Test Run By thomas on Sun Oct 24 20:00:50 2010
Native configuration is i686-pc-linux-gnu
=== ld tests ===
@@ -118,32 +118,32 @@ Schedule of variations:
unix
Running target unix
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-alpha/alpha.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-arm/arm-elf.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-auto-import/auto-import.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-bootstrap/bootstrap.exp ...
+Running [...]/hurd/ld/testsuite/ld-alpha/alpha.exp ...
+Running [...]/hurd/ld/testsuite/ld-arm/arm-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-auto-import/auto-import.exp ...
+Running [...]/hurd/ld/testsuite/ld-bootstrap/bootstrap.exp ...
UNTESTED: bootstrap
UNTESTED: bootstrap with strip
UNTESTED: bootstrap with --static
UNTESTED: bootstrap with --traditional-format
UNTESTED: bootstrap with --no-keep-memory
UNTESTED: bootstrap with --relax
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-cdtest/cdtest.exp ...
+Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
PASS: cdtest
PASS: cdtest with -Ur
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-checks/checks.exp ...
+Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
PASS: check sections 1
PASS: check sections 2
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-cris/cris.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-crx/crx.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-cygwin/exe-export.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-d10v/d10v.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-discard/discard.exp ...
+Running [...]/hurd/ld/testsuite/ld-cris/cris.exp ...
+Running [...]/hurd/ld/testsuite/ld-crx/crx.exp ...
+Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
+Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
+Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
PASS: ld-discard/extern
PASS: ld-discard/start
PASS: ld-discard/static
PASS: ld-discard/zero-rel
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/audit.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
PASS: Run with -paudit.so
PASS: Run with -Paudit.so
PASS: Run with --depaudit=audit.so
@@ -151,7 +151,7 @@ PASS: Run with shared with --audit
PASS: Run with shared with --audit
PASS: Run with -lusesaudit
PASS: Run with -lusesaudit -lusesaudit2
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/binutils.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
PASS: strip -z max-page-size=0x200000 (maxpage1)
PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
PASS: strip -z max-page-size=0x100000 (maxpage1)
@@ -166,7 +166,7 @@ PASS: objcopy -z relro (relro1)
PASS: objcopy -z relro -shared (relro1)
PASS: strip -z relro -shared (relro2)
PASS: objcopy -z relro -shared (relro2)
-PASS: strip -T /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/lma.lnk (lma)
+PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
PASS: objcopy (tbss1)
PASS: objcopy -z relro (tbss1)
PASS: objcopy -shared (tbss1)
@@ -191,16 +191,16 @@ PASS: objcopy -shared (tdata2)
PASS: objcopy -shared -z relro (tdata2)
PASS: objcopy -z max-page-size=0x100000 (tdata2)
PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/dwarf.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
PASS: Build libdwarf1.so
PASS: Run with libdwarf1.so first
PASS: Run with libdwarf1.so last
PASS: Strip -s libdwarf1c.so
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/eh-group.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
PASS: Guess the target size from eh-group1size.o
PASS: Build eh-group1.o
PASS: Link eh-group.o to eh-group
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
PASS: ld-elf/commonpage1
PASS: ld-elf/discard1
PASS: ld-elf/discard2
@@ -285,7 +285,7 @@ PASS: init array
PASS: static init array
PASS: fini array
PASS: static fini array
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/exclude.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
PASS: ld link shared library
PASS: ld export symbols from archive
PASS: ld link shared library with --exclude-libs
@@ -295,17 +295,17 @@ PASS: ld exclude symbols from archive - --exclude-libs ALL
PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/frame.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
PASS: read-only .eh_frame section
PASS: read-only .gcc_except_table section
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/sec-to-seg.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
PASS: assignment of ELF sections to segments (same page)
PASS: assignment of ELF sections to segments (adjacent pages)
PASS: assignment of ELF sections to segments (disjoint pages)
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/sec64k.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
PASS: ld-elf/64ksec-r
PASS: ld-elf/64ksec
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/shared.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
PASS: Build libfoo.so
PASS: Build versioned libfoo.so
PASS: Build libbar.so
@@ -394,21 +394,21 @@ PASS: Run with libdl3a.so
PASS: Run with libdl3c.so
PASS: Run with libnew1a.so
PASS: Run with libnew1b.so
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/tls_common.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
PASS: tls_common
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elf/wrap.exp ...
+Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
PASS: Build libwrap1a.so
PASS: Build libwrap1b.so
PASS: Run with libwrap1a.so and libwrap1b.so
PASS: Run with libwrap1b.so and libwrap1a.so
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elfcomm/elfcomm.exp ...
+Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
PASS: --sort-common (descending)
PASS: --sort-common (ascending)
PASS: size/aligment change of common symbols (warning 1)
PASS: size/aligment change of common symbols (change 1)
PASS: size/aligment change of common symbols (warning 2)
PASS: size/aligment change of common symbols (change 2)
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elfvers/vers.exp ...
+Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
PASS: vers1
PASS: vers2
PASS: vers3
@@ -472,7 +472,7 @@ PASS: vers32a
PASS: vers32b
PASS: vers32c
PASS: vers32d
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elfvsb/elfvsb.exp ...
+Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
PASS: ld-elfvsb/hidden0
PASS: ld-elfvsb/hidden1
PASS: ld-elfvsb/hidden2
@@ -533,7 +533,7 @@ PASS: visibility (normal) (PIC main)
PASS: common hidden symbol
PASS: weak hidden symbol DSO last
PASS: weak hidden symbol DSO first
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-elfweak/elfweak.exp ...
+Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
PASS: ELF DSO weak func first
PASS: ELF DSO weak func last
PASS: ELF DSO weak func first DSO
@@ -561,11 +561,11 @@ PASS: ELF DSO foo with small bar (size)
PASS: ELF DSO big bar (size)
PASS: ELF weak size
PASS: ld-elfweak/size2
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-fastcall/fastcall.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-frv/fdpic.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-frv/frv-elf.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-frv/tls.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-gc/gc.exp ...
+Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/tls.exp ...
+Running [...]/hurd/ld/testsuite/ld-gc/gc.exp ...
PASS: Check --gc-section
PASS: Check --gc-section/-q
PASS: Check --gc-section/-r/-e
@@ -574,8 +574,8 @@ PASS: --gc-sections -r without -e
PASS: --gc-sections with note section
PASS: --gc-sections with __start_
PASS: --gc-sections with shared library
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-h8300/h8300.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-i386/i386.exp ...
+Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
+Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
PASS: TLS -fpic -shared transitions
PASS: TLS descriptor -fpic -shared transitions
PASS: Helper shared library
@@ -613,14 +613,14 @@ PASS: ld-i386/nogot1
PASS: ld-i386/nogot2
PASS: ld-i386/discarded1
PASS: undefined symbol with compressed debug sections
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-ia64/ia64.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-ia64/line.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-ifunc/binutils.exp ...
+Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
+Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
+Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
PASS: strip (ifunc-4-x86)
PASS: objcopy (ifunc-4-x86)
PASS: strip (ifunc-4-local-x86)
PASS: objcopy (ifunc-4-local-x86)
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-ifunc/ifunc.exp ...
+Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
PASS: Building ifunc binaries
PASS: Checking ifunc binaries
PASS: ld-ifunc/ifunc-1-local-x86
@@ -645,96 +645,110 @@ PASS: ld-ifunc/ifunc-7a-i386
PASS: ld-ifunc/ifunc-7b-i386
PASS: ld-ifunc/ifunc-8-i386
PASS: ld-ifunc/ifunc-9-x86
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-libs/libs.exp ...
+Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
PASS: -l: test (preparation)
PASS: -l: test
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-linkonce/linkonce.exp ...
+Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
PASS: ld-linkonce/zeroehl32
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-m68hc11/m68hc11.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-m68k/m68k-got.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-m68k/m68k.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-mep/mep.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-mips-elf/mips-elf.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-mmix/mmix.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-mn10300/mn10300.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-pe/pe-compile.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-pe/pe-run.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-pe/pe-run2.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-pe/pe.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-pie/pie.exp ...
+Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
+Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
+Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
+Running [...]/hurd/ld/testsuite/ld-mep/mep.exp ...
+Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
+Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-mmix/mmix.exp ...
+Running [...]/hurd/ld/testsuite/ld-mn10300/mn10300.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-compile.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-run.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
+Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
PASS: weak undefined
PASS: weak undefined data
PASS: missing entry symbol
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-powerpc/aix52.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-powerpc/powerpc.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-s390/s390.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/align.exp ...
+Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
+PASS: plugin API enabled
+PASS: load plugin
+PASS: fail plugin onload
+PASS: fail plugin allsymbolsread
+PASS: fail plugin cleanup
+PASS: plugin all hooks
+PASS: plugin claimfile lost symbol
+PASS: plugin claimfile replace symbol
+PASS: plugin claimfile resolve symbol
+PASS: plugin claimfile replace file
+PASS: plugin set symbol visibility
+PASS: plugin ignore lib
+PASS: plugin claimfile replace lib
+Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
+Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
+Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/align.exp ...
PASS: align1
PASS: ld-scripts/align2a
PASS: ld-scripts/align2b
PASS: ld-scripts/align2c
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/alignof.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
PASS: ALIGNOF
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/assert.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
PASS: ASSERT
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/crossref.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
PASS: NOCROSSREFS 1
PASS: NOCROSSREFS 2
PASS: NOCROSSREFS 3
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/data.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/data.exp ...
PASS: ld-scripts/data
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/default-script.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/default-script.exp ...
PASS: ld-scripts/default-script1
PASS: ld-scripts/default-script2
PASS: ld-scripts/default-script3
PASS: ld-scripts/default-script4
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/defined.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/defined.exp ...
PASS: DEFINED (PRMS 5699)
PASS: ld-scripts/defined2
PASS: ld-scripts/defined3
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/dynamic-sections.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
PASS: dynamic sections
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/empty-address.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
PASS: ld-scripts/empty-address-1
PASS: ld-scripts/empty-address-2a
PASS: ld-scripts/empty-address-2b
PASS: ld-scripts/empty-address-3a
PASS: ld-scripts/empty-address-3b
PASS: ld-scripts/empty-address-3c
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/empty-aligned.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
PASS: ld-scripts/empty-aligned
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/empty-orphan.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
PASS: ld-scripts/empty-orphan
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/expr.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
PASS: ld-scripts/expr1
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/extern.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
PASS: EXTERN
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/include.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/include.exp ...
PASS: include-1
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/map-address.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
PASS: map addresses
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/overlay-size.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
PASS: overlay size
PASS: overlay size (map check)
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/phdrs.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
PASS: PHDRS
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/phdrs2.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
PASS: PHDRS2
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/phdrs3.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
PASS: PHDRS headers
PASS: PHDRS headers 3a
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/provide.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
PASS: ld-scripts/provide-1
PASS: ld-scripts/provide-2
XFAIL: ld-scripts/provide-3
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/rgn-at.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
PASS: rgn-at1
PASS: rgn-at2
PASS: rgn-at3
PASS: rgn-at4
PASS: rgn-at5
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/rgn-over.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
PASS: rgn-over1
PASS: rgn-over1 (map check)
PASS: rgn-over2
@@ -750,22 +764,22 @@ PASS: rgn-over6 (map check)
PASS: rgn-over7
PASS: rgn-over7 (map check)
PASS: rgn-over8
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/script.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
PASS: script
PASS: MRI script
PASS: MEMORY
-XFAIL: REGION_ALIAS: /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/region-alias-2.t
-XFAIL: REGION_ALIAS: /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/region-alias-4.t
-XFAIL: REGION_ALIAS: /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/region-alias-1.t
-XFAIL: REGION_ALIAS: /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/region-alias-3.t
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/section-match.exp ...
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
+Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
PASS: ld-scripts/section-match-1
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/size.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
PASS: ld-scripts/size-1
PASS: ld-scripts/size-2
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/sizeof.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
PASS: SIZEOF
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/sort.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
PASS: --sort-section alignment
PASS: SORT_BY_ALIGNMENT
PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
@@ -784,40 +798,40 @@ PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-scripts/weak.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
PASS: weak symbols
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-selective/sel-dump.exp ...
+Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
PASS: Preserve default . = 0
PASS: Preserve explicit . = 0
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-selective/selective.exp ...
+Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
PASS: selective1
PASS: selective2
PASS: selective3
XFAIL: selective4
XFAIL: selective5
XFAIL: selective6
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-sh/arch/arch.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-sh/rd-sh.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-sh/sh-vxworks.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-sh/sh.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-sh/sh64/relax.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-sh/sh64/relfail.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-sh/sh64/sh64.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-shared/shared.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/relax.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
+Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
PASS: shared (non PIC)
PASS: shared (non PIC, load offset)
PASS: shared
PASS: shared -Bsymbolic
PASS: shared (PIC main, non PIC so)
PASS: shared (PIC main)
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-sparc/sparc.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-spu/spu.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-srec/srec.exp ...
+Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
+Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
+Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
PASS: S-records
PASS: S-records with constructors
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-tic6x/tic6x.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-undefined/entry.exp ...
+Running [...]/hurd/ld/testsuite/ld-tic6x/tic6x.exp ...
+Running [...]/hurd/ld/testsuite/ld-undefined/entry.exp ...
PASS: Build libentry.a
PASS: --entry foo archive
PASS: --entry foo -u foo archive
@@ -826,32 +840,32 @@ PASS: -shared --entry foo -u foo archive
PASS: --entry foo
PASS: --entry foo -u foo
PASS: --entry 0x0
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-undefined/undefined.exp ...
+Running [...]/hurd/ld/testsuite/ld-undefined/undefined.exp ...
PASS: undefined
PASS: undefined function
PASS: undefined line
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-undefined/weak-undef.exp ...
+Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
PASS: weak undefined symbols
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-v850/v850.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-versados/versados.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-vxworks/vxworks.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-x86-64/line.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-x86-64/x86-64.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-xc16x/xc16x.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-xstormy16/xstormy16.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-xtensa/coalesce.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-xtensa/lcall.exp ...
-Running /home/thomas/tmp/source/binutils/master/ld/testsuite/ld-xtensa/xtensa.exp ...
+Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
+Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
+Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/line.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/x86-64.exp ...
+Running [...]/hurd/ld/testsuite/ld-xc16x/xc16x.exp ...
+Running [...]/hurd/ld/testsuite/ld-xstormy16/xstormy16.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/coalesce.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/lcall.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
=== ld Summary ===
-# of expected passes 598
+# of expected passes 611
# of expected failures 8
# of untested testcases 6
-/media/data/home/thomas/tmp/source/binutils/master.build/ld/ld-new 2.20.51.20101007
+/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101024
-Test Run By thomas on Fri Oct 8 22:40:36 2010
+Test Run By thomas on Sun Oct 24 20:00:34 2010
Native configuration is i686-pc-linux-gnu
=== gas tests ===
@@ -860,7 +874,7 @@ Schedule of variations:
unix
Running target unix
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/all/gas.exp ...
+Running [...]/hurd/gas/testsuite/gas/all/gas.exp ...
PASS: pcrel values in assignment
PASS: simplifiable double subtraction
PASS: simplifiable double subtraction (-a)
@@ -919,13 +933,13 @@ PASS: gas/all/warn-1.s (test for warnings, line 5)
PASS: gas/all/warn-1.s (test for warnings, line 6)
PASS: gas/all/warn-1.s (test for warnings, line 7)
PASS: gas/all/warn-1.s (test for excess errors)
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/alpha/alpha.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/arc/arc.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/arc/warn.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/arm/arm.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/bfin/bfin.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/bfin/error.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/cfi/cfi.exp ...
+Running [...]/hurd/gas/testsuite/gas/alpha/alpha.exp ...
+Running [...]/hurd/gas/testsuite/gas/arc/arc.exp ...
+Running [...]/hurd/gas/testsuite/gas/arc/warn.exp ...
+Running [...]/hurd/gas/testsuite/gas/arm/arm.exp ...
+Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
+Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
+Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
PASS: CFI on i386
PASS: cfi cfi-diag-1
PASS: CFI common 1
@@ -935,18 +949,19 @@ PASS: CFI common 4
PASS: CFI common 5
PASS: CFI common 7
PASS: CFI common 6
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/cr16/cr16.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/cr16/pic.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/cris/cris.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/crx/allinsn.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/d10v/d10v.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/d30v/d30.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/dlx/alltests.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/elf/elf.exp ...
+Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
+Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
+Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
+Running [...]/hurd/gas/testsuite/gas/crx/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/d10v/d10v.exp ...
+Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
+Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
+Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
PASS: elf ehopt0
PASS: .file file names
PASS: group section
PASS: group section
+PASS: group section name
PASS: group section with multiple sections of same name
PASS: group section with multiple sections of same name
PASS: automatic section group
@@ -972,35 +987,36 @@ PASS: DWARF2 1
PASS: DWARF2 2
PASS: DWARF2 3
PASS: Check bad section flag
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/fr30/allinsn.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/fr30/fr30.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/frv/allinsn.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/h8300-coff.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/h8300-elf.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/h8300.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t01_mov.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t02_mova.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t03_add.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t04_sub.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t05_cmp.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t06_ari2.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t07_ari3.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t08_or.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t09_xor.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t10_and.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t11_logs.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t12_bit.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/h8300/t13_otr.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/hppa/basic/basic.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/hppa/parse/parse.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/hppa/reloc/reloc.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/i386/i386.exp ...
+Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
+Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300-coff.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300-elf.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t01_mov.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t02_mova.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t03_add.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t04_sub.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t05_cmp.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t06_ari2.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t07_ari3.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t08_or.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t09_xor.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t10_and.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t11_logs.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t12_bit.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t13_otr.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/basic/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/parse/parse.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/reloc/reloc.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
+Running [...]/hurd/gas/testsuite/gas/i386/i386.exp ...
PASS: i386 float
PASS: i386 general
PASS: i386 inval
PASS: i386 segment
PASS: i386 inval-seg
+PASS: i386 inval-reg
PASS: i386 modrm
PASS: i386 naked reg
PASS: i386 opcodes
@@ -1022,6 +1038,7 @@ PASS: i386 SIB
PASS: i386 SIB (Intel mode)
PASS: i386 displacement
PASS: i386 displacement (Intel mode)
+PASS: i386 32bit displacement
PASS: i386 VMX
PASS: i386 SMX
PASS: i386 suffix
@@ -1155,6 +1172,8 @@ PASS: i386 pcrel reloc
PASS: i386 abs reloc
PASS: i386 intelpic
PASS: i386 relax
+PASS: i386 relax 1
+PASS: i386 relax 3
PASS: i386 gotpc
PASS: i386 dynamic tls
PASS: i386 pic tls
@@ -1181,30 +1200,30 @@ PASS: i386 list-1
PASS: i386 list-2
PASS: i386 list-3
PASS: DWARF2 debugging information 1
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/i860/i860.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/ia64/ia64.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/ieee-fp/x930509a.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/iq2000/allinsn.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/iq2000/load-hazards.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/iq2000/odd-ldw.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/iq2000/odd-sdw.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/iq2000/yield.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/lm32/all.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/lns/lns.exp ...
+Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
+Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
+Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/load-hazards.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/odd-ldw.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/odd-sdw.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
+Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
PASS: lns lns-diag-1
PASS: lns-duplicate
PASS: lns-common-1
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/m32r/allinsn.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/m32r/error.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/m32r/m32r.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/m32r/m32r2.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/m32r/m32rx.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/m32r/pic.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/m32r/rel32.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/m68hc11/m68hc11.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/m68k-coff/gas.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/m68k/all.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/macros/macros.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32r2.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32rx.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/pic.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/rel32.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68hc11/m68hc11.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68k-coff/gas.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68k/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/macros/macros.exp ...
PASS: macro test 1
PASS: macro test 2
PASS: macro test 3
@@ -1227,61 +1246,61 @@ PASS: macros purge
PASS: macros redef
PASS: gas/macros/paren
PASS: .exitm outside of a macro
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mcore/allinsn.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mep/allinsn.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mep/complex-relocs.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mips/mips.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mmix/mmix-err.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mmix/mmix-list.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mmix/mmix.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mn10200/basic.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mn10300/basic.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mri/mri.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/msp430/msp430.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mt/errors.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mt/mt.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/mt/relocs.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/openrisc/allinsn.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/pdp11/pdp11.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/pe/pe.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/pj/pj.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/ppc/aix.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/ppc/ppc.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/rx/rx.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/s390/s390.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/score/relax.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/score/relax_32.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/sh/arch/arch.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/sh/basic.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/sh/err.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/sh/sh64/err.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/sh/sh64/sh64.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/sparc-solaris/addend.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/sparc-solaris/gas.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/sparc/mismatch.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/sparc/sparc.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/sun4/addend.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/symver/symver.exp ...
+Running [...]/hurd/gas/testsuite/gas/mcore/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/mep/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/mep/complex-relocs.exp ...
+Running [...]/hurd/gas/testsuite/gas/mips/mips.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix-err.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix-list.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix.exp ...
+Running [...]/hurd/gas/testsuite/gas/mn10200/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/mn10300/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/mri/mri.exp ...
+Running [...]/hurd/gas/testsuite/gas/msp430/msp430.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/errors.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/mt.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/relocs.exp ...
+Running [...]/hurd/gas/testsuite/gas/openrisc/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/pdp11/pdp11.exp ...
+Running [...]/hurd/gas/testsuite/gas/pe/pe.exp ...
+Running [...]/hurd/gas/testsuite/gas/pj/pj.exp ...
+Running [...]/hurd/gas/testsuite/gas/ppc/aix.exp ...
+Running [...]/hurd/gas/testsuite/gas/ppc/ppc.exp ...
+Running [...]/hurd/gas/testsuite/gas/rx/rx.exp ...
+Running [...]/hurd/gas/testsuite/gas/s390/s390.exp ...
+Running [...]/hurd/gas/testsuite/gas/score/relax.exp ...
+Running [...]/hurd/gas/testsuite/gas/score/relax_32.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/arch/arch.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/err.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/sh64/err.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/sh64/sh64.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc-solaris/addend.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc-solaris/gas.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc/mismatch.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
+Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
+Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
PASS: symver symver0
PASS: symver symver1
PASS: symver symver2
PASS: symver symver3
PASS: symver symver6
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/tic4x/tic4x.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/tic54x/tic54x.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/tic6x/tic6x.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/v850/basic.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/vax/vax.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/xc16x/xc16x.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/xstormy16/allinsn.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/xtensa/all.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/xtensa/xtensa-err.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/z80/z80.exp ...
-Running /home/thomas/tmp/source/binutils/master/gas/testsuite/gas/z8k/z8k.exp ...
+Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
+Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
+Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
+Running [...]/hurd/gas/testsuite/gas/v850/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/vax/vax.exp ...
+Running [...]/hurd/gas/testsuite/gas/xc16x/xc16x.exp ...
+Running [...]/hurd/gas/testsuite/gas/xstormy16/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/xtensa/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/xtensa/xtensa-err.exp ...
+Running [...]/hurd/gas/testsuite/gas/z80/z80.exp ...
+Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
=== gas Summary ===
-# of expected passes 310
+# of expected passes 315
# of expected failures 1
-../as-new 2.20.51.20101007
+../as-new 2.20.51.20101024
--
cgit v1.2.3
From 49addeb39a92b1ef272414a85bce11988bfdef7f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 24 Oct 2010 23:28:47 +0200
Subject: open_issues/virtualization/capsicum: New.
---
open_issues/virtualization.mdwn | 4 +++-
open_issues/virtualization/capsicum.mdwn | 22 ++++++++++++++++++++++
2 files changed, 25 insertions(+), 1 deletion(-)
create mode 100644 open_issues/virtualization/capsicum.mdwn
diff --git a/open_issues/virtualization.mdwn b/open_issues/virtualization.mdwn
index d090e6c0..83b6b4c4 100644
--- a/open_issues/virtualization.mdwn
+++ b/open_issues/virtualization.mdwn
@@ -20,7 +20,9 @@ An index of things to work on w.r.t. virtualization.
* [[hurd/subhurd]] / [[hurd/neighborhurd]]
- * Linux
+ * Unix / Linux
+
+ * [[Capsicum]]
* [[Virtual_Square_View-OS]]
diff --git a/open_issues/virtualization/capsicum.mdwn b/open_issues/virtualization/capsicum.mdwn
new file mode 100644
index 00000000..44503e34
--- /dev/null
+++ b/open_issues/virtualization/capsicum.mdwn
@@ -0,0 +1,22 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+*Capsicum - practical capabilities for UNIX*
+
+
+
+
+(server disappeared; [Google
+cache](http://webcache.googleusercontent.com/search?q=cache:cCAqjWOhhksJ:www.lightbluetouchpaper.org/2010/08/12/capsicum-practical-capabilities-for-unix/))
+
+
+
+
+/
--
cgit v1.2.3
From 28f47f82bcc5585fd89a6167f9269ce208cd6a0f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 25 Oct 2010 09:15:02 +0200
Subject: open_issues/crt0_o_crt1_o_debug_info_relocation_invalid_symbol_index:
New.
---
...debug_info_relocation_invalid_symbol_index.mdwn | 41 ++++++++++++++++++++++
1 file changed, 41 insertions(+)
create mode 100644 open_issues/crt0_o_crt1_o_debug_info_relocation_invalid_symbol_index.mdwn
diff --git a/open_issues/crt0_o_crt1_o_debug_info_relocation_invalid_symbol_index.mdwn b/open_issues/crt0_o_crt1_o_debug_info_relocation_invalid_symbol_index.mdwn
new file mode 100644
index 00000000..b94c0c1d
--- /dev/null
+++ b/open_issues/crt0_o_crt1_o_debug_info_relocation_invalid_symbol_index.mdwn
@@ -0,0 +1,41 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_glibc open_issue_gcc]]
+
+ $ gcc -o /dev/null -x c /dev/null
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 0 has invalid symbol index 12
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 1 has invalid symbol index 13
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 2 has invalid symbol index 2
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 3 has invalid symbol index 2
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 4 has invalid symbol index 12
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 5 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 6 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 7 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 8 has invalid symbol index 2
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 9 has invalid symbol index 2
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 10 has invalid symbol index 13
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 11 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 12 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 13 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 14 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 15 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 16 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 17 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 18 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 19 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 20 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 21 has invalid symbol index 14
+ /usr/bin/ld: /usr/lib/debug/usr/lib/crt1.o(.debug_info): relocation 22 has invalid symbol index 22
+ /usr/lib/gcc/i486-gnu/4.4.5/../../../crt1.o: In function `_start':
+ (.text+0x18): undefined reference to `main'
+ collect2: ld returned 1 exit status
+
+Likewise for `-static`, `crt0.o`.
--
cgit v1.2.3
From fd3f39de1cbe5573ce71696a5d603588528eec99 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 25 Oct 2010 15:58:01 +0200
Subject: open_issues/binutils: New.
---
open_issues/binutils.mdwn | 89 +++++++++++++++++++++++++++++++++++++
open_issues/binutils_testsuite.mdwn | 21 +++++----
2 files changed, 101 insertions(+), 9 deletions(-)
create mode 100644 open_issues/binutils.mdwn
diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn
new file mode 100644
index 00000000..c4eb7c85
--- /dev/null
+++ b/open_issues/binutils.mdwn
@@ -0,0 +1,89 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_binutils]]
+
+Here's what's to be done for maintaining GNU Binutils.
+
+
+# Configuration
+
+Last checked against cdf7c161ebd4a934c9e705d33f5247fd52975612, 2010-10-24.
+
+a.out support and 64 bit support are not interesting.
+
+ * `bfd/`
+
+ * `config.bfd`
+
+ * `i[3-7]86-*-gnu*`
+
+ Comparing to `i[3-7]86-*-linux-*`:
+
+ * `i386linux_vec` -- a.out.
+
+ * `i386pei_vec`
+
+ *BFD back-end for Intel 386 PE IMAGE COFF files*. Not interesting.
+
+ * 64 bit.
+
+ * `configure.host`
+
+ Souldn't need anything. x86 Linux neither.
+
+ * `configure.in`
+
+ Linux:
+
+ * `COREFILE=trad-core.lo` with `TRAD_HEADER='"hosts/i386linux.h"'`
+
+ We don't have any such core file support configured. Should we?
+ Where is this core file reading exactly used? GDB?
+
+ * `i386linux_vec` -- a.out.
+
+ * `i386pei_vec`
+
+ *BFD back-end for Intel 386 PE IMAGE COFF files*. Not interesting.
+
+ * `binutils/`
+
+ * `configure.tgt`
+
+ * `gas/`
+
+ * `config/te-gnu.h`
+
+ C.f. `te-linux.h`; search tree for `TE_LINUX` vs. `TE_GNU` usage.
+
+ * `tc-i386.h`
+
+ Sole `TE_LINUX` usage is for a.out.
+
+ * `configure.tgt`
+
+ * `ld/`
+
+ * `configure.host`
+
+ * `*-*-gnu*`
+
+ Resolve `crt0.o` vs. `crt1.o` issue.
+
+ * `configure.tgt`
+
+ * `i[3-7]86-*-gnu*`
+
+ Compare to `i[3-7]86-*-linux-*`, but don't need a.out (`i386linux`)
+ and 64 bit support.
+
+
+# [[Testsuite|binutils_testsuite]]
diff --git a/open_issues/binutils_testsuite.mdwn b/open_issues/binutils_testsuite.mdwn
index 03846785..acbc48e9 100644
--- a/open_issues/binutils_testsuite.mdwn
+++ b/open_issues/binutils_testsuite.mdwn
@@ -15,7 +15,7 @@ cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24, run on
kepler.SCHWINGE and grubber.
$ export LC_ALL=C
- $ ../master/configure 2>&1 | tee log_build
+ $ ../hurd/configure 2>&1 | tee log_build
[...]
$ make SHELL=/bin/bash 2>&1 | tee log_build_
[...]
@@ -23,22 +23,25 @@ kepler.SCHWINGE and grubber.
(kepler.SCHWINGE defaults to using /bin/sh for libtool, grubber to /bin/bash;
thus harmonized.)
-Differences between GNU/Linux and GNU/Hurd, both on x86: [[log_build-diff]].
-
-Mask out most differences that are due to GNU/Linux defining `-DTRAD_CORE`,
-`-DHAVE_i386linux_vec` (`-DSELECT_VECS='[...],&i386linux_vec[...]`),
-`-DHAVE_i386pei_vec` (`-DSELECT_VECS='[...],&i386pei_vec[...]`).
+x86 GNU/Linux and GNU/Hurd's configurations are [[slightly
+different|binutils]], thus mask out most of the differences that are due to
+GNU/Linux defining `-DTRAD_CORE`, `-DHAVE_i386linux_vec`
+(`-DSELECT_VECS='[...],&i386linux_vec[...]`), `-DHAVE_i386pei_vec`
+(`-DSELECT_VECS='[...],&i386pei_vec[...]`).
$ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/binutils/hurd.build/ && cat log_build* | sed -e "s%${PWD}%[...]%g" -e s%-DTRAD_CORE%% -e s%-DHAVE_i386linux_vec%% -e s%-DHAVE_i386pei_vec%% -e s%-DSELECT_VECS=\\\('\\\''\\\?\\\)\&bfd_elf32_i386_vec,\&i386linux_vec,\&i386pei_vec,\&bfd_elf32_little_generic_vec,\&bfd_elf32_big_generic_vec'\\\''\\\?%-DSELECT_VECS=\\\1\\\&bfd_elf32_i386_vec,\\\&bfd_elf32_little_generic_vec,\\\&bfd_elf32_big_generic_vec\\\1%') <(ssh grubber 'cd tmp/binutils/hurd.build/ && cat log_build* | sed "s%${PWD}%[...]%g"') > open_issues/binutils_testsuite/log_build-diff
+[[log_build-diff]].
+
$ make -k check
[...]
-Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
-
$ ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils_testsuite/sum_linux
$ ssh grubber 'cd tmp/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils_testsuite/sum_hurd
- $ diff -u open_issues/binutils_testsuite/sum_linux open_issues/binutils_testsuite/sum_hurd
+
+Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
+
+ $ diff -u -F ^Running open_issues/binutils_testsuite/sum_linux open_issues/binutils_testsuite/sum_hurd
--- open_issues/binutils_testsuite/sum_linux 2010-10-24 20:33:04.000000000 +0200
+++ open_issues/binutils_testsuite/sum_hurd 2010-10-24 20:41:53.000000000 +0200
@@ -1,5 +1,5 @@
--
cgit v1.2.3
From f4eda80187380c63347b68f41067b2a64e926c97 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 26 Oct 2010 12:05:08 +0200
Subject: open_issues/ext2fs_deadlock: New.
---
open_issues/ext2fs_deadlock.mdwn | 45 +
open_issues/ext2fs_deadlock/bt_1-8 | 88 +
open_issues/ext2fs_deadlock/bt_10-535 | 5240 +++++++++++++++++++++++++++++++++
3 files changed, 5373 insertions(+)
create mode 100644 open_issues/ext2fs_deadlock.mdwn
create mode 100644 open_issues/ext2fs_deadlock/bt_1-8
create mode 100644 open_issues/ext2fs_deadlock/bt_10-535
diff --git a/open_issues/ext2fs_deadlock.mdwn b/open_issues/ext2fs_deadlock.mdwn
new file mode 100644
index 00000000..4c5cdb24
--- /dev/null
+++ b/open_issues/ext2fs_deadlock.mdwn
@@ -0,0 +1,45 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_hurd]]
+
+On 2010-10-26, [[I|tschwinge]]'ve been doing the following: `cp -a
+../tmpdir/dump*.o ./` (65 files), changed my mind, hit `C-c`, continued with
+`cp -a ../tmpdir/dump*.o ./` (to preserve timestamps), wondered why this takes
+so long, hit `C-c` again, then found the FS deadlocked (using no CPU; but
+`syncfs -s -c` wouldn't finish, for example). Judging from the files'
+timestamps (after rebooting and `fsck`), I would assume that it already hung at
+the second `cp`'s time, and the deadlock thus is not due to the second `C-c`,
+but due to the first one.
+
+ # gdb /hurd/ext2fs
+ [...]
+ (gdb) set noninvasive on
+ (gdb) attach 177
+ [...]
+ [New Thread 177.535]
+ Reading symbols [...]
+ (gdb) info threads
+ [all the same from 177.535 down to...]
+ 11 Thread 177.11 0x010e3efc in mach_msg_trap ()
+ at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+ 10 Thread 177.10 0x010e3efc in mach_msg_trap ()
+ at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+ [doesn't continue with thread 9, but hangs, taking all CPU time]
+
+New GDB instance, again noninvasive, I'm able to continue.
+
+Here are backtraces for threads [[1 to 8|bt_1-8]] and [[10 to 535|bt_10-535]],
+I didn't succeed to get any information about thread 9 (which thus would
+probably be the most interesting one...) -- GDB would always hang when
+accessing it, no matter whether noninvasive mode or not. (Didn't have time to
+pull the information out of the process' memory manually (how to do that,
+anyways?), and also didn't have time to continue with debugging GDB itself, but
+this sounds like a [[!taglink open_issue_gdb]]...)
diff --git a/open_issues/ext2fs_deadlock/bt_1-8 b/open_issues/ext2fs_deadlock/bt_1-8
new file mode 100644
index 00000000..f3045fb4
--- /dev/null
+++ b/open_issues/ext2fs_deadlock/bt_1-8
@@ -0,0 +1,88 @@
+
+Thread 1 (Thread 177.1):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x131fd54, option=2, send_size=0, rcv_size=24, rcv_name=10, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af2d8 in condition_wait (c=0x10b1e80, m=0x10b1e50) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:783
+#4 0x010afc7f in cthread_exit (result=0x0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:393
+#5 0x0804e9e5 in main (argc=2, argv=0x131fec4) at /home/sthibaul-guest/hurd-debian/./ext2fs/ext2fs.c:204
+
+Thread 2 (Thread 177.2):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x132df20, option=3, send_size=40, rcv_size=4096, rcv_name=12, timeout=0, notify=0) at msg.c:110
+#2 0x010e4e29 in __mach_msg_server_timeout (demux=0x10f5930 , max_size=4096, rcv_name=12, option=0, timeout=0) at msgserver.c:151
+#3 0x010e4efb in __mach_msg_server (demux=0x10f5930 , max_size=4096, rcv_name=12) at msgserver.c:196
+#4 0x010f58ff in _hurd_msgport_receive () at msgportdemux.c:68
+#5 0x010b0058 in cthread_body (self=0x805ed38) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#6 0x00000000 in ?? ()
+
+Thread 3 (Thread 177.3):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x133bd18, option=2, send_size=0, rcv_size=24, rcv_name=22, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f6c0, port=6692, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x133be70, outheadp=0x133de80) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=1) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b4fc7 in ports_manage_port_operations_multithread (bucket=0x805f6c0, demuxer=0x103d9b0 , hook=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:164
+#9 0x0104b256 in master_thread_function (demuxer=0x103d9b0) at /home/sthibaul-guest/hurd-debian/./libdiskfs/init-first.c:37
+#10 0x010b0058 in cthread_body (self=0x805f800) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#11 0x00000000 in ?? ()
+
+Thread 4 (Thread 177.4):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x134de80, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=1) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b4fc7 in ports_manage_port_operations_multithread (bucket=0x805f8f0, demuxer=0x105ad80 , hook=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:164
+#5 0x01041904 in service_paging_requests (arg=0x805f8f0) at /home/sthibaul-guest/hurd-debian/./libdiskfs/disk-pager.c:41
+#6 0x010b0058 in cthread_body (self=0x805f9a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#7 0x00000000 in ?? ()
+
+Thread 5 (Thread 177.5):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x135df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8060a40) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 6 (Thread 177.6):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x136bbb8, option=2, send_size=0, rcv_size=24, rcv_name=34, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8292d98) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11852, seqno=93, control=4806, offset=0, data=83726336, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11852, seqno=93, control=4806, offset=0, data=83726336, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x136df20, OutHeadP=0x136bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x136df20, outp=0x136bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x136df20, outheadp=0x136bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x80614f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 7 (Thread 177.7):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x137bdb8, option=2, send_size=0, rcv_size=24, rcv_name=38, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f6c0, port=6692, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x137df20, outheadp=0x137bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8061d88) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 8 (Thread 177.8):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x138fe80, option=2, send_size=0, rcv_size=24, rcv_name=44, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4b48 in ports_begin_rpc (portstruct=0x80625a0, msg_id=0, info=0x138ff68) at /home/sthibaul-guest/hurd-debian/./libports/begin-rpc.c:33
+#5 0x01052c15 in periodic_sync (interval=5) at /home/sthibaul-guest/hurd-debian/./libdiskfs/sync-interval.c:100
+#6 0x010b0058 in cthread_body (self=0x8062698) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#7 0x00000000 in ?? ()
diff --git a/open_issues/ext2fs_deadlock/bt_10-535 b/open_issues/ext2fs_deadlock/bt_10-535
new file mode 100644
index 00000000..79ed145a
--- /dev/null
+++ b/open_issues/ext2fs_deadlock/bt_10-535
@@ -0,0 +1,5240 @@
+
+Thread 10 (Thread 177.10):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13adf20, option=2051, send_size=48, rcv_size=8192, rcv_name=18, timeout=0, notify=0) at msg.c:110
+#2 0x010e4e29 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:151
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x806b9a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 11 (Thread 177.11):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13bbdb8, option=2, send_size=0, rcv_size=24, rcv_name=87, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11822, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x13bdf20, outheadp=0x13bbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x806b578) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 12 (Thread 177.12):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8069bf8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 13 (Thread 177.13):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x806a4e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 14 (Thread 177.14):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8071118) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 15 (Thread 177.15):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13fbdb8, option=2, send_size=0, rcv_size=24, rcv_name=46, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11881, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x13fdf20, outheadp=0x13fbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8070e60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 16 (Thread 177.16):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x140bbb8, option=2, send_size=0, rcv_size=24, rcv_name=165, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x3a35c80) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=6731, seqno=93, control=11865, offset=0, data=68448256, length=131072, dirty=1, kcopy=1, initializing=0)
+ at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=6731, seqno=93, control=11865, offset=0, data=68448256, length=131072, dirty=1, kcopy=1)
+ at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x140df20, OutHeadP=0x140bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x140df20, outp=0x140bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x140df20, outheadp=0x140bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x8070f98) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 17 (Thread 177.17):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x141bdb8, option=2, send_size=0, rcv_size=24, rcv_name=159, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11840, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x141df20, outheadp=0x141bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80731b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 18 (Thread 177.18):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x142bdb8, option=2, send_size=0, rcv_size=24, rcv_name=175, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f6c0, port=6692, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x142bf10, outheadp=0x142df20) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8073f98) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 19 (Thread 177.19):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x143df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8070df8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 20 (Thread 177.20):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x144df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8073c60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 21 (Thread 177.21):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x145df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8073db8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 22 (Thread 177.22):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x146df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8073af0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 23 (Thread 177.23):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x147bbb8, option=2, send_size=0, rcv_size=24, rcv_name=187, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8260de8) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11699, seqno=93, control=6878, offset=0, data=85233664, length=131072, dirty=1, kcopy=1, initializing=0)
+ at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11699, seqno=93, control=6878, offset=0, data=85233664, length=131072, dirty=1, kcopy=1)
+ at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x147df20, OutHeadP=0x147bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x147df20, outp=0x147bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x147df20, outheadp=0x147bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+Quit
+
+Thread 10 (Thread 177.10):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13adf20, option=2051, send_size=48, rcv_size=8192, rcv_name=18, timeout=0, notify=0) at msg.c:110
+#2 0x010e4e29 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:151
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x806b9a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 11 (Thread 177.11):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13bbdb8, option=2, send_size=0, rcv_size=24, rcv_name=87, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11822, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x13bdf20, outheadp=0x13bbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x806b578) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 12 (Thread 177.12):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8069bf8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 13 (Thread 177.13):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x806a4e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 14 (Thread 177.14):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8071118) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 15 (Thread 177.15):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x13fbdb8, option=2, send_size=0, rcv_size=24, rcv_name=46, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11881, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x13fdf20, outheadp=0x13fbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8070e60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 16 (Thread 177.16):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x140bbb8, option=2, send_size=0, rcv_size=24, rcv_name=165, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x3a35c80) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=6731, seqno=93, control=11865, offset=0, data=68448256, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=6731, seqno=93, control=11865, offset=0, data=68448256, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x140df20, OutHeadP=0x140bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x140df20, outp=0x140bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x140df20, outheadp=0x140bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x8070f98) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 17 (Thread 177.17):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x141bdb8, option=2, send_size=0, rcv_size=24, rcv_name=159, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11840, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x141df20, outheadp=0x141bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80731b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 18 (Thread 177.18):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x142bdb8, option=2, send_size=0, rcv_size=24, rcv_name=175, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f6c0, port=6692, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x142bf10, outheadp=0x142df20) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8073f98) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 19 (Thread 177.19):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x143df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8070df8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 20 (Thread 177.20):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x144df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8073c60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 21 (Thread 177.21):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x145df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8073db8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 22 (Thread 177.22):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x146df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8073af0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 23 (Thread 177.23):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x147bbb8, option=2, send_size=0, rcv_size=24, rcv_name=187, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8260de8) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11699, seqno=93, control=6878, offset=0, data=85233664, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11699, seqno=93, control=6878, offset=0, data=85233664, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x147df20, OutHeadP=0x147bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x147df20, outp=0x147bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x147df20, outheadp=0x147bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x8071588) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 24 (Thread 177.24):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x148df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80716e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 25 (Thread 177.25):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x149df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8071838) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 26 (Thread 177.26):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x14adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8071880) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 27 (Thread 177.27):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x14bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8074d80) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 28 (Thread 177.28):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x14cbc6c, option=3, send_size=24, rcv_size=32, rcv_name=209, timeout=0, notify=0) at msg.c:110
+#2 0x012d73dc in __thread_suspend (target_thread=66) at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/RPC_thread_suspend.c:85
+#3 0x01100e07 in hurd_thread_cancel (thread=66) at thread-cancel.c:57
+#4 0x010b5b2a in ports_interrupt_rpcs (portstruct=0x8137000) at /home/sthibaul-guest/hurd-debian/./libports/interrupt-rpcs.c:35
+#5 0x010b6434 in ports_S_interrupt_operation (port=11806, seqno=7) at /home/sthibaul-guest/hurd-debian/./libports/interrupt-operation.c:37
+#6 0x010b7a40 in _Xinterrupt_operation (InHeadP=0x14cdf20, OutHeadP=0x14cbf10) at interruptServer.c:74
+#7 0x010b79b4 in ports_interrupt_server (InHeadP=0xd1, OutHeadP=0xffffffe7) at interruptServer.c:113
+#8 0x0103da44 in diskfs_demuxer (inp=0x14cdf20, outp=0x14cbf10) at /home/sthibaul-guest/hurd-debian/./libdiskfs/demuxer.c:38
+#9 0x010b5163 in internal_demuxer (inp=0x14cdf20, outheadp=0x14cbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#10 0x010e4dc6 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:109
+#11 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#12 0x010b0058 in cthread_body (self=0x8079e60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#13 0x00000000 in ?? ()
+
+Thread 29 (Thread 177.29):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x14dbdb8, option=2, send_size=0, rcv_size=24, rcv_name=294, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4812, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x14ddf20, outheadp=0x14dbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x807fee0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 30 (Thread 177.30):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x14ebdb8, option=2, send_size=0, rcv_size=24, rcv_name=297, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11858, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x14edf20, outheadp=0x14ebf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x807f960) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 31 (Thread 177.31):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x14fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x807f0a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 32 (Thread 177.32):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x150bdb8, option=2, send_size=0, rcv_size=24, rcv_name=312, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6314, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x150df20, outheadp=0x150bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x807b5d8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 33 (Thread 177.33):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x151bdb8, option=2, send_size=0, rcv_size=24, rcv_name=315, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11858, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x151df20, outheadp=0x151bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8079d88) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 34 (Thread 177.34):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x152df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8082708) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 35 (Thread 177.35):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x153df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8082f60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 36 (Thread 177.36):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x154bdb8, option=2, send_size=0, rcv_size=24, rcv_name=324, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5360, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x154df20, outheadp=0x154bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80837b8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 37 (Thread 177.37):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x155df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8084010) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 38 (Thread 177.38):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x156bdb8, option=2, send_size=0, rcv_size=24, rcv_name=330, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6765, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x156df20, outheadp=0x156bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8084868) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 39 (Thread 177.39):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x157df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80850c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 40 (Thread 177.40):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x158df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8085918) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 41 (Thread 177.41):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x159df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8086170) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 42 (Thread 177.42):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x15abdb8, option=2, send_size=0, rcv_size=24, rcv_name=342, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=12846, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x15adf20, outheadp=0x15abf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80869c8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 43 (Thread 177.43):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x15bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8087220) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 44 (Thread 177.44):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x15cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8087a78) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 45 (Thread 177.45):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x15dbdb8, option=2, send_size=0, rcv_size=24, rcv_name=351, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11872, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x15ddf20, outheadp=0x15dbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80882d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 46 (Thread 177.46):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x15edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8088b28) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 47 (Thread 177.47):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x15fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8089380) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 48 (Thread 177.48):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x160bdb8, option=2, send_size=0, rcv_size=24, rcv_name=360, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6518, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x160df20, outheadp=0x160bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8089bd8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 49 (Thread 177.49):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x161bdb8, option=2, send_size=0, rcv_size=24, rcv_name=363, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5340, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x161df20, outheadp=0x161bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x808a430) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 50 (Thread 177.50):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x162bdb8, option=2, send_size=0, rcv_size=24, rcv_name=366, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11840, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x162df20, outheadp=0x162bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x808ac88) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 51 (Thread 177.51):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x163df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x808b4e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 52 (Thread 177.52):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x164df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x808bd38) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 53 (Thread 177.53):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x165df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x808c590) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 54 (Thread 177.54):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x166df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x808cde8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 55 (Thread 177.55):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x167bdb8, option=2, send_size=0, rcv_size=24, rcv_name=381, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4864, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x167df20, outheadp=0x167bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x808d640) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 56 (Thread 177.56):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x168df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x808de98) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 57 (Thread 177.57):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x169df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x808e6f0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 58 (Thread 177.58):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x16adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x808ef48) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 59 (Thread 177.59):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x16bbdb8, option=2, send_size=0, rcv_size=24, rcv_name=393, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5339, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x16bdf20, outheadp=0x16bbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x808f7a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 60 (Thread 177.60):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x16cbdb8, option=2, send_size=0, rcv_size=24, rcv_name=396, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6731, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x16cdf20, outheadp=0x16cbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x808fff8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 61 (Thread 177.61):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x16dbdb8, option=2, send_size=0, rcv_size=24, rcv_name=399, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4785, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x16ddf20, outheadp=0x16dbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8090850) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 62 (Thread 177.62):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x16ebdb8, option=2, send_size=0, rcv_size=24, rcv_name=402, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11824, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x16edf20, outheadp=0x16ebf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80910a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 63 (Thread 177.63):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x16fbdb8, option=2, send_size=0, rcv_size=24, rcv_name=405, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11863, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x16fdf20, outheadp=0x16fbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8091900) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 64 (Thread 177.64):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x170df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8092158) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 65 (Thread 177.65):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x171df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80929b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 66 (Thread 177.66):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x172bdb8, option=2, send_size=0, rcv_size=24, rcv_name=414, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11855, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x172df20, outheadp=0x172bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8093208) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 67 (Thread 177.67):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x173bdb8, option=2, send_size=0, rcv_size=24, rcv_name=417, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6308, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x173df20, outheadp=0x173bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8093a60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 68 (Thread 177.68):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x174bdb8, option=2, send_size=0, rcv_size=24, rcv_name=420, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4830, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x174df20, outheadp=0x174bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80942b8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 69 (Thread 177.69):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x175bdb8, option=2, send_size=0, rcv_size=24, rcv_name=423, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11875, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x175df20, outheadp=0x175bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8094b10) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 70 (Thread 177.70):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x176bdb8, option=2, send_size=0, rcv_size=24, rcv_name=426, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6876, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x176df20, outheadp=0x176bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8095368) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 71 (Thread 177.71):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x177bdb8, option=2, send_size=0, rcv_size=24, rcv_name=429, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5321, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x177df20, outheadp=0x177bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8095bc0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 72 (Thread 177.72):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x178df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8096418) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 73 (Thread 177.73):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x179df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8096c70) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 74 (Thread 177.74):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x17adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80974c8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 75 (Thread 177.75):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x17bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8097d20) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 76 (Thread 177.76):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x17cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8098578) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 77 (Thread 177.77):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x17ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8098dd0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 78 (Thread 177.78):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x17ebdb8, option=2, send_size=0, rcv_size=24, rcv_name=450, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4859, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x17edf20, outheadp=0x17ebf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8099628) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 79 (Thread 177.79):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x17fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8099e80) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 80 (Thread 177.80):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x180bdb8, option=2, send_size=0, rcv_size=24, rcv_name=456, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6876, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x180df20, outheadp=0x180bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x809a6d8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 81 (Thread 177.81):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x181df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x809af30) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 82 (Thread 177.82):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x182df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x809b788) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 83 (Thread 177.83):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x183df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x809bfe0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 84 (Thread 177.84):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x184df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x809c838) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 85 (Thread 177.85):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x185bdb8, option=2, send_size=0, rcv_size=24, rcv_name=471, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4834, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x185df20, outheadp=0x185bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x809d090) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 86 (Thread 177.86):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x186bdb8, option=2, send_size=0, rcv_size=24, rcv_name=474, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4845, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x186df20, outheadp=0x186bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x809d8e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 87 (Thread 177.87):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x187bbb8, option=2, send_size=0, rcv_size=24, rcv_name=477, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x3a450d8) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11860, seqno=93, control=11864, offset=0, data=82976768, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11860, seqno=93, control=11864, offset=0, data=82976768, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x187df20, OutHeadP=0x187bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x187df20, outp=0x187bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x187df20, outheadp=0x187bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x809e140) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 88 (Thread 177.88):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x188bdb8, option=2, send_size=0, rcv_size=24, rcv_name=480, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6778, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x188df20, outheadp=0x188bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x809e998) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 89 (Thread 177.89):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x189df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x809f1f0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 90 (Thread 177.90):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x18abdb8, option=2, send_size=0, rcv_size=24, rcv_name=486, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4959, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x18adf20, outheadp=0x18abf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x809fa48) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 91 (Thread 177.91):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x18bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a02a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 92 (Thread 177.92):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x18cbc48, option=2, send_size=0, rcv_size=24, rcv_name=492, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8060928) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=27, seqno=473816, control=28, offset=2453504, data=14823424, length=4096, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=27, seqno=473816, control=28, offset=2453504, data=14823424, length=4096, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x18cdf20, OutHeadP=0x18cbf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x0, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x18cdf20, outp=0x18cbf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x18cdf20, outheadp=0x18cbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x80a0af8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 93 (Thread 177.93):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x18ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a1350) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 94 (Thread 177.94):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x18edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a1ba8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 95 (Thread 177.95):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x18fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a2400) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 96 (Thread 177.96):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x190bdb8, option=2, send_size=0, rcv_size=24, rcv_name=504, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4851, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x190df20, outheadp=0x190bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80a2c58) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 97 (Thread 177.97):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x191df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a34b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 98 (Thread 177.98):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x192df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a3d08) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 99 (Thread 177.99):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x193df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a4560) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 100 (Thread 177.100):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x194bdb8, option=2, send_size=0, rcv_size=24, rcv_name=516, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11837, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x194df20, outheadp=0x194bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80a4db8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 101 (Thread 177.101):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x195df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a5610) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 102 (Thread 177.102):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x196df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a5e68) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 103 (Thread 177.103):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x197df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a66c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 104 (Thread 177.104):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x198df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a6f18) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 105 (Thread 177.105):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x199bdb8, option=2, send_size=0, rcv_size=24, rcv_name=531, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5402, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x199df20, outheadp=0x199bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80a7770) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 106 (Thread 177.106):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x19abdb8, option=2, send_size=0, rcv_size=24, rcv_name=534, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11872, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x19adf20, outheadp=0x19abf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80a7fc8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 107 (Thread 177.107):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x19bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a8820) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 108 (Thread 177.108):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x19cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a9078) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 109 (Thread 177.109):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x19ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80a98d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 110 (Thread 177.110):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x19edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80aa128) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 111 (Thread 177.111):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x19fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8075b68) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 112 (Thread 177.112):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1a0df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80ab848) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 113 (Thread 177.113):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1a1df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80ae9a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 114 (Thread 177.114):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1a2df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80ac0f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 115 (Thread 177.115):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1a3df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x807f030) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 116 (Thread 177.116):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1a4df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80b2ae0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 117 (Thread 177.117):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1a5df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80b2b28) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 118 (Thread 177.118):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1a6df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80b5e78) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 119 (Thread 177.119):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1a7df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80b66d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 120 (Thread 177.120):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1a8df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80b6f28) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 121 (Thread 177.121):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1a9df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80b7780) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 122 (Thread 177.122):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1aabdb8, option=2, send_size=0, rcv_size=24, rcv_name=692, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5327, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1aadf20, outheadp=0x1aabf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80b7fd8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 123 (Thread 177.123):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1abbdb8, option=2, send_size=0, rcv_size=24, rcv_name=695, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11861, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1abdf20, outheadp=0x1abbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80b8830) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 124 (Thread 177.124):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1acbdb8, option=2, send_size=0, rcv_size=24, rcv_name=698, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5595, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1acdf20, outheadp=0x1acbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80b9088) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 125 (Thread 177.125):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1addf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80b98e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 126 (Thread 177.126):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1aebdb8, option=2, send_size=0, rcv_size=24, rcv_name=704, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6972, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1aedf20, outheadp=0x1aebf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80ba138) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 127 (Thread 177.127):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1afdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80ba990) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 128 (Thread 177.128):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1b0bdb8, option=2, send_size=0, rcv_size=24, rcv_name=710, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11847, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1b0df20, outheadp=0x1b0bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80bb1e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 129 (Thread 177.129):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1b1df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80bba40) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 130 (Thread 177.130):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1b2df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80bc298) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 131 (Thread 177.131):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1b3df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80bcaf0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 132 (Thread 177.132):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1b4df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80bd348) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 133 (Thread 177.133):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1b5df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80bdba0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 134 (Thread 177.134):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1b6df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80be3f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 135 (Thread 177.135):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1b7df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80bec50) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 136 (Thread 177.136):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1b8bdb8, option=2, send_size=0, rcv_size=24, rcv_name=734, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4785, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1b8df20, outheadp=0x1b8bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80bf4a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 137 (Thread 177.137):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1b9df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80bfd00) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 138 (Thread 177.138):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1badf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80c0558) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 139 (Thread 177.139):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1bbbdb8, option=2, send_size=0, rcv_size=24, rcv_name=743, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=13223, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1bbdf20, outheadp=0x1bbbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80c0db0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 140 (Thread 177.140):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1bcdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80c1608) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 141 (Thread 177.141):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1bddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80c1e60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 142 (Thread 177.142):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1bedf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80c26b8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 143 (Thread 177.143):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1bfdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81198b8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 144 (Thread 177.144):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1c0df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81196f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 145 (Thread 177.145):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1c1df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8119848) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 146 (Thread 177.146):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1c2df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8117318) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 147 (Thread 177.147):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1c3df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8115880) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 148 (Thread 177.148):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1c4bdb8, option=2, send_size=0, rcv_size=24, rcv_name=2159, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11826, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1c4df20, outheadp=0x1c4bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81199c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 149 (Thread 177.149):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1c5df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8115600) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 150 (Thread 177.150):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1c6df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8118b18) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 151 (Thread 177.151):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1c7bdb8, option=2, send_size=0, rcv_size=24, rcv_name=2168, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6298, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1c7df20, outheadp=0x1c7bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81197b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 152 (Thread 177.152):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1c8df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8119ba0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 153 (Thread 177.153):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1c9df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x811d050) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 154 (Thread 177.154):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1cabdb8, option=2, send_size=0, rcv_size=24, rcv_name=2177, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6298, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1cadf20, outheadp=0x1cabf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x811d8a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 155 (Thread 177.155):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1cbbdb8, option=2, send_size=0, rcv_size=24, rcv_name=2180, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5340, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1cbdf20, outheadp=0x1cbbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x811e100) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 156 (Thread 177.156):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1ccbdb8, option=2, send_size=0, rcv_size=24, rcv_name=2183, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4830, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1ccdf20, outheadp=0x1ccbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x811e958) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 157 (Thread 177.157):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1cdbdb8, option=2, send_size=0, rcv_size=24, rcv_name=2186, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5321, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1cddf20, outheadp=0x1cdbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x811f1b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 158 (Thread 177.158):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1cedf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x811fa08) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 159 (Thread 177.159):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1cfdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8120260) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 160 (Thread 177.160):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1d0df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8120ab8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 161 (Thread 177.161):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1d1bdb8, option=2, send_size=0, rcv_size=24, rcv_name=2198, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11846, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1d1df20, outheadp=0x1d1bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8121310) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 162 (Thread 177.162):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1d2df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8121b68) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 163 (Thread 177.163):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1d3bdb8, option=2, send_size=0, rcv_size=24, rcv_name=2204, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5883, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1d3df20, outheadp=0x1d3bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81223c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 164 (Thread 177.164):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1d4bdb8, option=2, send_size=0, rcv_size=24, rcv_name=2207, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4861, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1d4df20, outheadp=0x1d4bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8122c18) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 165 (Thread 177.165):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1d5df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8123470) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 166 (Thread 177.166):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1d6df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8123cc8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 167 (Thread 177.167):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1d7bbb8, option=2, send_size=0, rcv_size=24, rcv_name=2216, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8133588) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=6841, seqno=93, control=11809, offset=0, data=66523136, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=6841, seqno=93, control=11809, offset=0, data=66523136, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x1d7df20, OutHeadP=0x1d7bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x1d7df20, outp=0x1d7bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x1d7df20, outheadp=0x1d7bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x8124520) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 168 (Thread 177.168):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1d8df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8124d78) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 169 (Thread 177.169):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1d9df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81255d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 170 (Thread 177.170):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1dabdb8, option=2, send_size=0, rcv_size=24, rcv_name=2225, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11849, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1dadf20, outheadp=0x1dabf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8125e28) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 171 (Thread 177.171):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1dbdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8126680) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 172 (Thread 177.172):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1dcbc48, option=2, send_size=0, rcv_size=24, rcv_name=2231, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8060928) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=27, seqno=473817, control=28, offset=4096, data=14979072, length=4096, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=27, seqno=473817, control=28, offset=4096, data=14979072, length=4096, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x1dcdf20, OutHeadP=0x1dcbf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x0, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x1dcdf20, outp=0x1dcbf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x1dcdf20, outheadp=0x1dcbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x8126ed8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 173 (Thread 177.173):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1dddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8127730) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 174 (Thread 177.174):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1debdb8, option=2, send_size=0, rcv_size=24, rcv_name=2237, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11878, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1dedf20, outheadp=0x1debf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8127f88) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 175 (Thread 177.175):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1dfbdb8, option=2, send_size=0, rcv_size=24, rcv_name=2240, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11869, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1dfdf20, outheadp=0x1dfbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81287e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 176 (Thread 177.176):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1e0df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8129038) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 177 (Thread 177.177):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1e1df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8129890) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 178 (Thread 177.178):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1e2bbd8, option=2, send_size=0, rcv_size=24, rcv_name=2249, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x82c8510) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11826, seqno=66, control=4763, offset=32768, data=66375680, length=98304, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11826, seqno=66, control=4763, offset=32768, data=66375680, length=98304, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x1e2df20, OutHeadP=0x1e2bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x17, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x1e2df20, outp=0x1e2bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x1e2df20, outheadp=0x1e2bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x812a0e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 179 (Thread 177.179):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1e3df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x812a940) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 180 (Thread 177.180):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1e4df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8159660) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 181 (Thread 177.181):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1e5df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x814c4c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 182 (Thread 177.182):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1e6df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8137e10) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 183 (Thread 177.183):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1e7df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x813f2a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 184 (Thread 177.184):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1e8df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8154568) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 185 (Thread 177.185):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1e9bdb8, option=2, send_size=0, rcv_size=24, rcv_name=2967, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11843, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1e9df20, outheadp=0x1e9bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8151aa8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 186 (Thread 177.186):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1eabdb8, option=2, send_size=0, rcv_size=24, rcv_name=2970, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11816, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1eadf20, outheadp=0x1eabf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x814aaa8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 187 (Thread 177.187):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1ebbdb8, option=2, send_size=0, rcv_size=24, rcv_name=2973, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11855, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1ebdf20, outheadp=0x1ebbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80f1e70) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 188 (Thread 177.188):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1ecbdb8, option=2, send_size=0, rcv_size=24, rcv_name=2976, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4939, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1ecdf20, outheadp=0x1ecbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x814ee10) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 189 (Thread 177.189):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1edbdb8, option=2, send_size=0, rcv_size=24, rcv_name=2979, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6526, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1eddf20, outheadp=0x1edbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8135588) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 190 (Thread 177.190):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1eedf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8140a08) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 191 (Thread 177.191):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1efdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80f27e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 192 (Thread 177.192):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1f0df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x813db08) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 193 (Thread 177.193):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1f1bbb8, option=2, send_size=0, rcv_size=24, rcv_name=2991, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8306a00) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=4845, seqno=93, control=5059, offset=0, data=82788352, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=4845, seqno=93, control=5059, offset=0, data=82788352, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x1f1df20, OutHeadP=0x1f1bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x1f1df20, outp=0x1f1bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x1f1df20, outheadp=0x1f1bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81555c8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 194 (Thread 177.194):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1f2bdb8, option=2, send_size=0, rcv_size=24, rcv_name=2994, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6765, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1f2df20, outheadp=0x1f2bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x80c99e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 195 (Thread 177.195):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1f3df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8159088) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 196 (Thread 177.196):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1f4bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3000, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11881, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1f4df20, outheadp=0x1f4bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81548f0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 197 (Thread 177.197):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1f5bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3003, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11805, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1f5df20, outheadp=0x1f5bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8153f98) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 198 (Thread 177.198):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1f6df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x814ffd0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 199 (Thread 177.199):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1f7bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3009, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5144, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1f7df20, outheadp=0x1f7bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8151548) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 200 (Thread 177.200):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1f8bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3012, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6308, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x1f8df20, outheadp=0x1f8bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8137480) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 201 (Thread 177.201):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1f9df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81450d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 202 (Thread 177.202):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1fadf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80f2fc0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 203 (Thread 177.203):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1fbdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81565c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 204 (Thread 177.204):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1fcdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8153f28) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 205 (Thread 177.205):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1fddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x814b820) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 206 (Thread 177.206):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1fedf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8145130) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 207 (Thread 177.207):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x1ffdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81133e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 208 (Thread 177.208):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x200df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8159170) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 209 (Thread 177.209):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x201df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8153628) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 210 (Thread 177.210):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x202df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8133f08) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 211 (Thread 177.211):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x203bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3045, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11831, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x203df20, outheadp=0x203bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x814f088) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 212 (Thread 177.212):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x204df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8151d20) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 213 (Thread 177.213):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x205bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3051, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4782, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x205df20, outheadp=0x205bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8154e10) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 214 (Thread 177.214):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x206bbb8, option=2, send_size=0, rcv_size=24, rcv_name=3054, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x3a1d690) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=4830, seqno=93, control=11851, offset=0, data=84103168, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=4830, seqno=93, control=11851, offset=0, data=84103168, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x206df20, OutHeadP=0x206bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x206df20, outp=0x206bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x206df20, outheadp=0x206bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81595f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 215 (Thread 177.215):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x207bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3057, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11866, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x207df20, outheadp=0x207bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8138498) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 216 (Thread 177.216):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x208df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x80f1bd0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 217 (Thread 177.217):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x209df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x816a648) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 218 (Thread 177.218):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x20adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x816aea0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 219 (Thread 177.219):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x20bbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3069, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4834, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x20bdf20, outheadp=0x20bbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x816b6f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 220 (Thread 177.220):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x20cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x816bf50) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 221 (Thread 177.221):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x20ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x816c7a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 222 (Thread 177.222):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x20ebc48, option=2, send_size=0, rcv_size=24, rcv_name=3078, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8060928) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=27, seqno=473819, control=28, offset=0, data=15933440, length=4096, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=27, seqno=473819, control=28, offset=0, data=15933440, length=4096, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x20edf20, OutHeadP=0x20ebf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x0, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x20edf20, outp=0x20ebf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x20edf20, outheadp=0x20ebf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x816d000) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 223 (Thread 177.223):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x20fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x816d858) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 224 (Thread 177.224):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x210df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x816e0b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 225 (Thread 177.225):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x211bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3087, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4853, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x211df20, outheadp=0x211bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x816e908) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 226 (Thread 177.226):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x212df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x816f160) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 227 (Thread 177.227):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x213df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x816f9b8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 228 (Thread 177.228):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x214bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3096, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6841, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x214df20, outheadp=0x214bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8170210) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 229 (Thread 177.229):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x215bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3099, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6203, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x215df20, outheadp=0x215bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8170a68) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 230 (Thread 177.230):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x216bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3102, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6314, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x216df20, outheadp=0x216bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81712c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 231 (Thread 177.231):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x217df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8171b18) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 232 (Thread 177.232):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x218bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3108, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5402, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x218df20, outheadp=0x218bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8172370) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 233 (Thread 177.233):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x219df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8172bc8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 234 (Thread 177.234):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x21abdb8, option=2, send_size=0, rcv_size=24, rcv_name=3114, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5354, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x21adf20, outheadp=0x21abf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8173420) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 235 (Thread 177.235):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x21bbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3117, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4787, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x21bdf20, outheadp=0x21bbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8173c78) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 236 (Thread 177.236):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x21cbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3120, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11862, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x21cdf20, outheadp=0x21cbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81744d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 237 (Thread 177.237):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x21ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8174d28) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 238 (Thread 177.238):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x21edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8175580) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 239 (Thread 177.239):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x21fbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3129, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11837, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x21fdf20, outheadp=0x21fbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8175dd8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 240 (Thread 177.240):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x220bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3132, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=12846, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x220df20, outheadp=0x220bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8176630) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 241 (Thread 177.241):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x221df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8176e88) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 242 (Thread 177.242):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x222df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81776e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 243 (Thread 177.243):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x223df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8177f38) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 244 (Thread 177.244):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x224bc48, option=2, send_size=0, rcv_size=24, rcv_name=3144, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8060928) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=27, seqno=473818, control=28, offset=2125824, data=15642624, length=4096, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=27, seqno=473818, control=28, offset=2125824, data=15642624, length=4096, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x224df20, OutHeadP=0x224bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x0, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x224df20, outp=0x224bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x224df20, outheadp=0x224bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x8178790) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 245 (Thread 177.245):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x225bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3147, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4782, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x225df20, outheadp=0x225bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8178fe8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 246 (Thread 177.246):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x226df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8179840) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 247 (Thread 177.247):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x227df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x817a098) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 248 (Thread 177.248):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x228df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x817a8f0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 249 (Thread 177.249):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x229bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3159, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11805, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x229df20, outheadp=0x229bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x817b148) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 250 (Thread 177.250):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x22abdb8, option=2, send_size=0, rcv_size=24, rcv_name=3162, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11831, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x22adf20, outheadp=0x22abf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x817b9a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 251 (Thread 177.251):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x22bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x817c1f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 252 (Thread 177.252):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x22cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x817ca50) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 253 (Thread 177.253):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x22ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x817d2a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 254 (Thread 177.254):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x22ebdb8, option=2, send_size=0, rcv_size=24, rcv_name=3174, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11875, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x22edf20, outheadp=0x22ebf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x817db00) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 255 (Thread 177.255):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x22fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x817e358) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 256 (Thread 177.256):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x230df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x817ebb0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 257 (Thread 177.257):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x231df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x817f408) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 258 (Thread 177.258):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x232df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x817fc60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 259 (Thread 177.259):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x233bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3189, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5963, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x233df20, outheadp=0x233bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81804b8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 260 (Thread 177.260):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x234df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8180d10) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 261 (Thread 177.261):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x235df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8181568) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 262 (Thread 177.262):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x236df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8181dc0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 263 (Thread 177.263):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x237df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8182618) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 264 (Thread 177.264):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x238df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8182e70) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 265 (Thread 177.265):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x239bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3207, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4859, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x239df20, outheadp=0x239bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81836c8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 266 (Thread 177.266):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x23adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8183f20) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 267 (Thread 177.267):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x23bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8184778) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 268 (Thread 177.268):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x23cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8184fd0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 269 (Thread 177.269):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x23ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8185828) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 270 (Thread 177.270):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x23edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8186080) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 271 (Thread 177.271):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x23fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81868d8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 272 (Thread 177.272):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x240df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8187130) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 273 (Thread 177.273):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x241bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3231, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4814, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x241df20, outheadp=0x241bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8187988) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 274 (Thread 177.274):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x242df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81881e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 275 (Thread 177.275):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x243df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8188a38) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 276 (Thread 177.276):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x244df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8189290) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 277 (Thread 177.277):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x245bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3243, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11843, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x245df20, outheadp=0x245bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8189ae8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 278 (Thread 177.278):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x246bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3246, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6517, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x246df20, outheadp=0x246bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x818a340) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 279 (Thread 177.279):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x247df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x818ab98) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 280 (Thread 177.280):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x248df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x818b3f0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 281 (Thread 177.281):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x249bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3255, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5315, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x249df20, outheadp=0x249bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x818bc48) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 282 (Thread 177.282):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x24adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x818c4a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 283 (Thread 177.283):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x24bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x818ccf8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 284 (Thread 177.284):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x24cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x818d550) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 285 (Thread 177.285):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x24ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x818dda8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 286 (Thread 177.286):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x24edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x818e600) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 287 (Thread 177.287):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x24fbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3273, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11861, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x24fdf20, outheadp=0x24fbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x818ee58) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 288 (Thread 177.288):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x250df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x818f6b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 289 (Thread 177.289):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x251df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x818ff08) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 290 (Thread 177.290):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x252df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8190760) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 291 (Thread 177.291):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x253df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8190fb8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 292 (Thread 177.292):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x254bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3288, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11852, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x254df20, outheadp=0x254bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8191810) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 293 (Thread 177.293):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x255df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8192068) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 294 (Thread 177.294):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x256bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3294, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5144, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x256df20, outheadp=0x256bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81928c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 295 (Thread 177.295):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x257df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8193118) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 296 (Thread 177.296):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x258df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8193970) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 297 (Thread 177.297):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x259df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81941c8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 298 (Thread 177.298):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x25adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8194a20) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 299 (Thread 177.299):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x25bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8195278) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 300 (Thread 177.300):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x25cbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3312, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5339, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x25cdf20, outheadp=0x25cbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8195ad0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 301 (Thread 177.301):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x25dbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3315, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=13223, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x25ddf20, outheadp=0x25dbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8196328) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 302 (Thread 177.302):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x25edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8196b80) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 303 (Thread 177.303):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x25fbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3321, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6517, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x25fdf20, outheadp=0x25fbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81973d8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 304 (Thread 177.304):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x260df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8197c30) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 305 (Thread 177.305):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x261bcc8, option=2, send_size=0, rcv_size=24, rcv_name=3327, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x82c8510) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059a84 in _pager_seqnos_memory_object_data_unlock (object=11826, seqno=68, control=4763, offset=131072, length=4096, access=2) at /home/sthibaul-guest/hurd-debian/./libpager/data-unlock.c:87
+#6 0x0105c1b4 in _Xmemory_object_data_unlock (InHeadP=0x261df20, OutHeadP=0x261bf10) at memory_objectServer.c:467
+#7 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x20000, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#8 0x0105adac in pager_demuxer (inp=0x261df20, outp=0x261bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#9 0x010b5163 in internal_demuxer (inp=0x261df20, outheadp=0x261bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#10 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#11 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#12 0x010b0058 in cthread_body (self=0x8198488) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#13 0x00000000 in ?? ()
+
+Thread 306 (Thread 177.306):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x262bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3330, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11829, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x262df20, outheadp=0x262bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8198ce0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 307 (Thread 177.307):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x263df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8199538) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 308 (Thread 177.308):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x264bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3336, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11846, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x264df20, outheadp=0x264bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8199d90) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 309 (Thread 177.309):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x265bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3339, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4797, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x265df20, outheadp=0x265bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x819a5e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 310 (Thread 177.310):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x266bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3342, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5883, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x266df20, outheadp=0x266bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x819ae40) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 311 (Thread 177.311):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x267df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x819b698) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 312 (Thread 177.312):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x268df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x819bef0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 313 (Thread 177.313):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x269df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x819c748) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 314 (Thread 177.314):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x26adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x819cfa0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 315 (Thread 177.315):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x26bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x819d7f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 316 (Thread 177.316):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x26cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x819e050) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 317 (Thread 177.317):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x26ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x819e8a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 318 (Thread 177.318):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x26edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x819f100) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 319 (Thread 177.319):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x26fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x819f958) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 320 (Thread 177.320):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x270bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3372, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11822, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x270df20, outheadp=0x270bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81a01b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 321 (Thread 177.321):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x271df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81a0a08) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 322 (Thread 177.322):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x272df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81a1260) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 323 (Thread 177.323):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x273df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81a1ab8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 324 (Thread 177.324):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x274bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3384, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11818, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x274df20, outheadp=0x274bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81a2310) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 325 (Thread 177.325):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x275bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3387, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11818, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x275df20, outheadp=0x275bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81a2b68) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 326 (Thread 177.326):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x276df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81a33c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 327 (Thread 177.327):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x277df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81a3c18) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 328 (Thread 177.328):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x278df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81a4470) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 329 (Thread 177.329):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x279bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3399, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11856, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x279df20, outheadp=0x279bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81a4cc8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 330 (Thread 177.330):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x27adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81a5520) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 331 (Thread 177.331):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x27bbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3405, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5049, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x27bdf20, outheadp=0x27bbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81a5d78) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 332 (Thread 177.332):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x27cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81a65d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 333 (Thread 177.333):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x27dbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3411, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5127, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x27ddf20, outheadp=0x27dbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81a6e28) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 334 (Thread 177.334):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x27ebdb8, option=2, send_size=0, rcv_size=24, rcv_name=3414, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6203, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x27edf20, outheadp=0x27ebf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81a7680) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 335 (Thread 177.335):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x27fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81a7ed8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 336 (Thread 177.336):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x280bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3420, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11878, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x280df20, outheadp=0x280bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81a8730) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 337 (Thread 177.337):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x281df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81a8f88) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 338 (Thread 177.338):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x282bbb8, option=2, send_size=0, rcv_size=24, rcv_name=3426, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x3aa2370) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=10039, seqno=93, control=9839, offset=0, data=85422080, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=10039, seqno=93, control=9839, offset=0, data=85422080, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x282df20, OutHeadP=0x282bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x282df20, outp=0x282bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x282df20, outheadp=0x282bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81a97e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 339 (Thread 177.339):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x283df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81aa038) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 340 (Thread 177.340):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x284df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81aa890) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 341 (Thread 177.341):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x285bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3435, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5963, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x285df20, outheadp=0x285bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81ab0e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 342 (Thread 177.342):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x286df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ab940) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 343 (Thread 177.343):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x287df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ac198) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 344 (Thread 177.344):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x288df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ac9f0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 345 (Thread 177.345):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x289bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3447, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4862, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x289df20, outheadp=0x289bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81ad248) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 346 (Thread 177.346):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x28adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81adaa0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 347 (Thread 177.347):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x28bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ae2f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 348 (Thread 177.348):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x28cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81aeb50) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 349 (Thread 177.349):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x28ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81af3a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 350 (Thread 177.350):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x28edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81afc00) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 351 (Thread 177.351):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x28fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b0458) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 352 (Thread 177.352):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x290df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b0cb0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 353 (Thread 177.353):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x291df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b1508) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 354 (Thread 177.354):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x292df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b1d60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 355 (Thread 177.355):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x293df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b25b8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 356 (Thread 177.356):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x294bbb8, option=2, send_size=0, rcv_size=24, rcv_name=3480, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x3a35f50) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=4864, seqno=93, control=11880, offset=0, data=81281024, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=4864, seqno=93, control=11880, offset=0, data=81281024, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x294df20, OutHeadP=0x294bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x294df20, outp=0x294bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x294df20, outheadp=0x294bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81b2e10) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 357 (Thread 177.357):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x295df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b3668) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 358 (Thread 177.358):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x296df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b3ec0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 359 (Thread 177.359):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x297df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b4718) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 360 (Thread 177.360):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x298bbb8, option=2, send_size=0, rcv_size=24, rcv_name=3492, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x82156d0) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11818, seqno=93, control=11814, offset=0, data=84856832, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11818, seqno=93, control=11814, offset=0, data=84856832, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x298df20, OutHeadP=0x298bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x298df20, outp=0x298bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x298df20, outheadp=0x298bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81b4f70) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 361 (Thread 177.361):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x299bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3495, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11888, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x299df20, outheadp=0x299bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81b57c8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 362 (Thread 177.362):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x29adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b6020) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 363 (Thread 177.363):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x29bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b6878) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 364 (Thread 177.364):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x29cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b70d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 365 (Thread 177.365):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x29ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b7928) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 366 (Thread 177.366):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x29edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b8180) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 367 (Thread 177.367):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x29fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b89d8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 368 (Thread 177.368):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2a0df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b9230) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 369 (Thread 177.369):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2a1df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81b9a88) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 370 (Thread 177.370):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2a2bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3522, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11829, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2a2df20, outheadp=0x2a2bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81ba2e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 371 (Thread 177.371):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2a3bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3525, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11856, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2a3df20, outheadp=0x2a3bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81bab38) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 372 (Thread 177.372):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2a4df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81bb390) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 373 (Thread 177.373):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2a5bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3531, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4873, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2a5df20, outheadp=0x2a5bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81bbbe8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 374 (Thread 177.374):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2a6bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3534, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11862, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2a6df20, outheadp=0x2a6bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81bc440) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 375 (Thread 177.375):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2a7df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81bcc98) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 376 (Thread 177.376):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2a8df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81bd4f0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 377 (Thread 177.377):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2a9df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81bdd48) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 378 (Thread 177.378):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2aadf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81be5a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 379 (Thread 177.379):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2abdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81bedf8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 380 (Thread 177.380):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2acbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3552, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11819, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2acdf20, outheadp=0x2acbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81bf650) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 381 (Thread 177.381):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2addf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81bfea8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 382 (Thread 177.382):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2aedf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c0700) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 383 (Thread 177.383):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2afbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3561, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4845, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2afdf20, outheadp=0x2afbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81c0f58) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 384 (Thread 177.384):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2b0bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3564, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6972, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2b0df20, outheadp=0x2b0bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81c17b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 385 (Thread 177.385):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2b1df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c2008) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 386 (Thread 177.386):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2b2df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c2860) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 387 (Thread 177.387):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2b3bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3573, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4959, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2b3df20, outheadp=0x2b3bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81c30b8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 388 (Thread 177.388):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2b4df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c3910) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 389 (Thread 177.389):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2b5bbb8, option=2, send_size=0, rcv_size=24, rcv_name=3579, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x3a1d730) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11847, seqno=93, control=6869, offset=0, data=84291584, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11847, seqno=93, control=6869, offset=0, data=84291584, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x2b5df20, OutHeadP=0x2b5bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x2b5df20, outp=0x2b5bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x2b5df20, outheadp=0x2b5bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81c4168) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 390 (Thread 177.390):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2b6df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c49c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 391 (Thread 177.391):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2b7bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3585, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11819, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2b7df20, outheadp=0x2b7bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81c5218) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 392 (Thread 177.392):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2b8df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c5a70) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 393 (Thread 177.393):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2b9bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3591, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11866, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2b9df20, outheadp=0x2b9bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81c62c8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 394 (Thread 177.394):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2badf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c6b20) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 395 (Thread 177.395):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2bbdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c7378) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 396 (Thread 177.396):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2bcbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3600, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11869, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2bcdf20, outheadp=0x2bcbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81c7bd0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 397 (Thread 177.397):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2bddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c8428) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 398 (Thread 177.398):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2bedf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c8c80) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 399 (Thread 177.399):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2bfdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c94d8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 400 (Thread 177.400):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2c0df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81c9d30) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 401 (Thread 177.401):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2c1df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ca588) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 402 (Thread 177.402):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2c2df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81cade0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 403 (Thread 177.403):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2c3bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3621, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4862, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2c3df20, outheadp=0x2c3bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81cb638) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 404 (Thread 177.404):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2c4df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81cbe90) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 405 (Thread 177.405):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2c5bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3627, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5360, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2c5df20, outheadp=0x2c5bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81cc6e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 406 (Thread 177.406):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2c6bbb8, option=2, send_size=0, rcv_size=24, rcv_name=3630, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x82b1050) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11824, seqno=93, control=5619, offset=0, data=84668416, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11824, seqno=93, control=5619, offset=0, data=84668416, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x2c6df20, OutHeadP=0x2c6bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x2c6df20, outp=0x2c6bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x2c6df20, outheadp=0x2c6bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81ccf40) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 407 (Thread 177.407):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2c7bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3633, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5288, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2c7df20, outheadp=0x2c7bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81cd798) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 408 (Thread 177.408):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2c8df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81cdff0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 409 (Thread 177.409):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2c9df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ce848) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 410 (Thread 177.410):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2cabdb8, option=2, send_size=0, rcv_size=24, rcv_name=3642, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4812, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2cadf20, outheadp=0x2cabf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81cf0a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 411 (Thread 177.411):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2cbbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3645, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5595, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2cbdf20, outheadp=0x2cbbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81cf8f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 412 (Thread 177.412):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2ccbbb8, option=2, send_size=0, rcv_size=24, rcv_name=3648, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8318a20) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=6778, seqno=93, control=4919, offset=0, data=67067904, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=6778, seqno=93, control=4919, offset=0, data=67067904, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x2ccdf20, OutHeadP=0x2ccbf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x2ccdf20, outp=0x2ccbf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x2ccdf20, outheadp=0x2ccbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81d0150) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 413 (Thread 177.413):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2cddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d09a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 414 (Thread 177.414):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2cedf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d1200) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 415 (Thread 177.415):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2cfbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3657, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4939, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2cfdf20, outheadp=0x2cfbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81d1a58) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 416 (Thread 177.416):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2d0df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d22b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 417 (Thread 177.417):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2d1df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d2b08) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 418 (Thread 177.418):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2d2df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d3360) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 419 (Thread 177.419):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2d3df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d3bb8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 420 (Thread 177.420):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2d4bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3672, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5354, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2d4df20, outheadp=0x2d4bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81d4410) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 421 (Thread 177.421):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2d5df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d4c68) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 422 (Thread 177.422):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2d6df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d54c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 423 (Thread 177.423):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2d7df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d5d18) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 424 (Thread 177.424):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2d8df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d6570) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 425 (Thread 177.425):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2d9df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d6dc8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 426 (Thread 177.426):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2dabdb8, option=2, send_size=0, rcv_size=24, rcv_name=3690, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5288, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2dadf20, outheadp=0x2dabf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81d7620) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 427 (Thread 177.427):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2dbdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d7e78) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 428 (Thread 177.428):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2dcbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3696, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5127, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2dcdf20, outheadp=0x2dcbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81d86d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 429 (Thread 177.429):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2dddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d8f28) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 430 (Thread 177.430):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2dedf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d9780) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 431 (Thread 177.431):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2dfdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81d9fd8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 432 (Thread 177.432):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2e0bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3708, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4797, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2e0df20, outheadp=0x2e0bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81da830) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 433 (Thread 177.433):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2e1df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81db088) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 434 (Thread 177.434):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2e2df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81db8e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 435 (Thread 177.435):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2e3df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81dc138) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 436 (Thread 177.436):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2e4bbb8, option=2, send_size=0, rcv_size=24, rcv_name=3720, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x835c670) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11829, seqno=93, control=11823, offset=0, data=84480000, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11829, seqno=93, control=11823, offset=0, data=84480000, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x2e4df20, OutHeadP=0x2e4bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x2e4df20, outp=0x2e4bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x2e4df20, outheadp=0x2e4bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81dc990) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 437 (Thread 177.437):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2e5df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81dd1e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 438 (Thread 177.438):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2e6bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3726, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4814, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2e6df20, outheadp=0x2e6bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81dda40) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 439 (Thread 177.439):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2e7df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81de298) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 440 (Thread 177.440):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2e8df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81deaf0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 441 (Thread 177.441):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2e9df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81df348) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 442 (Thread 177.442):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2eabdb8, option=2, send_size=0, rcv_size=24, rcv_name=3738, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6526, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2eadf20, outheadp=0x2eabf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81dfba0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 443 (Thread 177.443):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2ebdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e03f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 444 (Thread 177.444):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2ecdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e0c50) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 445 (Thread 177.445):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2edbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3747, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6518, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2eddf20, outheadp=0x2edbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81e14a8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 446 (Thread 177.446):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2eedf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e1d00) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 447 (Thread 177.447):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2efdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e2558) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 448 (Thread 177.448):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2f0df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e2db0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 449 (Thread 177.449):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2f1df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e3608) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 450 (Thread 177.450):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2f2df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e3e60) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 451 (Thread 177.451):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2f3df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e46b8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 452 (Thread 177.452):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2f4df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e4f10) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 453 (Thread 177.453):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2f5bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3771, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5327, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2f5df20, outheadp=0x2f5bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81e5768) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 454 (Thread 177.454):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2f6df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e5fc0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 455 (Thread 177.455):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2f7df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e6818) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 456 (Thread 177.456):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2f8df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e7070) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 457 (Thread 177.457):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2f9df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e78c8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 458 (Thread 177.458):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2fabdb8, option=2, send_size=0, rcv_size=24, rcv_name=3786, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11824, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2fadf20, outheadp=0x2fabf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81e8120) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 459 (Thread 177.459):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2fbdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81e8978) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 460 (Thread 177.460):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2fcbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3792, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5315, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x2fcdf20, outheadp=0x2fcbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81e91d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 461 (Thread 177.461):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2fdbbb8, option=2, send_size=0, rcv_size=24, rcv_name=3795, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x824b9a8) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=4861, seqno=93, control=11977, offset=0, data=81657856, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=4861, seqno=93, control=11977, offset=0, data=81657856, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x2fddf20, OutHeadP=0x2fdbf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x2fddf20, outp=0x2fdbf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x2fddf20, outheadp=0x2fdbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81e9a28) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 462 (Thread 177.462):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2fedf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ea280) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 463 (Thread 177.463):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x2ffbbb8, option=2, send_size=0, rcv_size=24, rcv_name=3801, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x82a5fa8) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11849, seqno=93, control=6975, offset=0, data=83914752, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11849, seqno=93, control=6975, offset=0, data=83914752, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x2ffdf20, OutHeadP=0x2ffbf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x2ffdf20, outp=0x2ffbf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x2ffdf20, outheadp=0x2ffbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81eaad8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 464 (Thread 177.464):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x300bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3804, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11860, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x300df20, outheadp=0x300bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81eb330) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 465 (Thread 177.465):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x301bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3807, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4861, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x301df20, outheadp=0x301bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81ebb88) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 466 (Thread 177.466):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x302df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ec3e0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 467 (Thread 177.467):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x303df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ecc38) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 468 (Thread 177.468):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x304df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ed490) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 469 (Thread 177.469):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x305bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3819, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11816, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x305df20, outheadp=0x305bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81edce8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 470 (Thread 177.470):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x306bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3822, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11847, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x306df20, outheadp=0x306bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81ee540) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 471 (Thread 177.471):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x307bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3825, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=5049, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x307df20, outheadp=0x307bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81eed98) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 472 (Thread 177.472):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x308df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ef5f0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 473 (Thread 177.473):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x309df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81efe48) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 474 (Thread 177.474):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x30abdb8, option=2, send_size=0, rcv_size=24, rcv_name=3834, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11852, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x30adf20, outheadp=0x30abf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81f06a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 475 (Thread 177.475):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x30bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f0ef8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 476 (Thread 177.476):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x30cbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3840, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11827, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x30cdf20, outheadp=0x30cbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81f1750) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 477 (Thread 177.477):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x30ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f1fa8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 478 (Thread 177.478):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x30edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f2800) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 479 (Thread 177.479):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x30fbbb8, option=2, send_size=0, rcv_size=24, rcv_name=3849, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x81432f0) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=6765, seqno=93, control=11752, offset=0, data=67751936, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=6765, seqno=93, control=11752, offset=0, data=67751936, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x30fdf20, OutHeadP=0x30fbf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x30fdf20, outp=0x30fbf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x30fdf20, outheadp=0x30fbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x81f3058) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 480 (Thread 177.480):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x310bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3852, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4853, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x310df20, outheadp=0x310bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81f38b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 481 (Thread 177.481):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x311bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3855, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11888, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x311df20, outheadp=0x311bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81f4108) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 482 (Thread 177.482):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x312df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f4960) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 483 (Thread 177.483):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x313df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f51b8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 484 (Thread 177.484):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x314df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f5a10) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 485 (Thread 177.485):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x315df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f6268) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 486 (Thread 177.486):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x316bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3870, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4873, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x316df20, outheadp=0x316bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81f6ac0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 487 (Thread 177.487):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x317df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f7318) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 488 (Thread 177.488):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x318df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f7b70) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 489 (Thread 177.489):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x319bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3879, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11827, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x319df20, outheadp=0x319bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81f83c8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 490 (Thread 177.490):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x31adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f8c20) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 491 (Thread 177.491):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x31bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81f9478) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 492 (Thread 177.492):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x31cbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3888, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4851, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x31cdf20, outheadp=0x31cbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81f9cd0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 493 (Thread 177.493):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x31ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81fa528) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 494 (Thread 177.494):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x31edf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81fad80) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 495 (Thread 177.495):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x31fbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3897, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11849, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x31fdf20, outheadp=0x31fbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81fb5d8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 496 (Thread 177.496):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x320df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81fbe30) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 497 (Thread 177.497):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x321df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81fc688) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 498 (Thread 177.498):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x322df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81fcee0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 499 (Thread 177.499):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x323df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81fd738) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 500 (Thread 177.500):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x324df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81fdf90) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 501 (Thread 177.501):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x325df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81fe7e8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 502 (Thread 177.502):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x326bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3918, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6841, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x326df20, outheadp=0x326bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x81ff040) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 503 (Thread 177.503):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x327df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x81ff898) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 504 (Thread 177.504):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x328bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3924, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4864, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x328df20, outheadp=0x328bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x82000f0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 505 (Thread 177.505):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x329df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8200948) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 506 (Thread 177.506):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x32adf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x82011a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 507 (Thread 177.507):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x32bdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x82019f8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 508 (Thread 177.508):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x32cdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8202250) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 509 (Thread 177.509):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x32ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8202aa8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 510 (Thread 177.510):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x32ebdb8, option=2, send_size=0, rcv_size=24, rcv_name=3942, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6778, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x32edf20, outheadp=0x32ebf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8203300) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 511 (Thread 177.511):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x32fbbb8, option=2, send_size=0, rcv_size=24, rcv_name=3945, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8133628) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=4787, seqno=93, control=2767, offset=0, data=85045248, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=4787, seqno=93, control=2767, offset=0, data=85045248, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x32fdf20, OutHeadP=0x32fbf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x32fdf20, outp=0x32fbf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x32fdf20, outheadp=0x32fbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x8203b58) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 512 (Thread 177.512):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x330df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x82043b0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 513 (Thread 177.513):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x331bbb8, option=2, send_size=0, rcv_size=24, rcv_name=3951, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8260d48) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=11856, seqno=91, control=5370, offset=0, data=83353600, length=131072, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=11856, seqno=91, control=5370, offset=0, data=83353600, length=131072, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x331df20, OutHeadP=0x331bf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x1f, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x331df20, outp=0x331bf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x331df20, outheadp=0x331bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x8204c08) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 514 (Thread 177.514):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x332df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8205460) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 515 (Thread 177.515):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x333df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8205cb8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 516 (Thread 177.516):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x334df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8206510) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 517 (Thread 177.517):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x335df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8206d68) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 518 (Thread 177.518):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x336df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x82075c0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 519 (Thread 177.519):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x337df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8207e18) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 520 (Thread 177.520):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x338df20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8208670) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 521 (Thread 177.521):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x339bdb8, option=2, send_size=0, rcv_size=24, rcv_name=3975, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11863, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x339df20, outheadp=0x339bf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8208ec8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 522 (Thread 177.522):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x33abdb8, option=2, send_size=0, rcv_size=24, rcv_name=3978, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=4787, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x33adf20, outheadp=0x33abf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x8209720) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 523 (Thread 177.523):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x33bbc48, option=2, send_size=0, rcv_size=24, rcv_name=3981, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b475a in ports_port_deref (portstruct=0x8060928) at /home/sthibaul-guest/hurd-debian/./libports/port-deref.c:33
+#5 0x01059331 in _pager_do_write_request (object=27, seqno=473815, control=28, offset=14811136, data=12541952, length=4096, dirty=1, kcopy=1, initializing=0) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:257
+#6 0x010599d6 in _pager_seqnos_memory_object_data_return (object=27, seqno=473815, control=28, offset=14811136, data=12541952, length=4096, dirty=1, kcopy=1) at /home/sthibaul-guest/hurd-debian/./libpager/data-return.c:272
+#7 0x0105bee7 in _Xmemory_object_data_return (InHeadP=0x33bdf20, OutHeadP=0x33bbf10) at memory_objectServer.c:837
+#8 0x0105bd4f in _pager_seqnos_memory_object_server (InHeadP=0x0, OutHeadP=0xffffffe7) at memory_objectServer.c:947
+#9 0x0105adac in pager_demuxer (inp=0x33bdf20, outp=0x33bbf10) at /home/sthibaul-guest/hurd-debian/./libpager/demuxer.c:34
+#10 0x010b5163 in internal_demuxer (inp=0x33bdf20, outheadp=0x33bbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:101
+#11 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#12 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#13 0x010b0058 in cthread_body (self=0x8209f78) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#14 0x00000000 in ?? ()
+
+Thread 524 (Thread 177.524):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x33cbdb8, option=2, send_size=0, rcv_size=24, rcv_name=3984, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=11860, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x33cdf20, outheadp=0x33cbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x820a7d0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 525 (Thread 177.525):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x33ddf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x820b028) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 526 (Thread 177.526):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x33ebdb8, option=2, send_size=0, rcv_size=24, rcv_name=3990, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f8f0, port=6731, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x33edf20, outheadp=0x33ebf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x820b880) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 527 (Thread 177.527):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x33fdf20, option=2050, send_size=0, rcv_size=8192, rcv_name=24, timeout=0, notify=0) at msg.c:110
+#2 0x010e4db4 in __mach_msg_server_timeout (demux=0x134ff38, max_size=8192, rcv_name=24, option=2048, timeout=0) at msgserver.c:101
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x820c0d8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 528 (Thread 177.528):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x395bdb8, option=2, send_size=0, rcv_size=24, rcv_name=8764, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f6c0, port=11800, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x395bf10, outheadp=0x395df20) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x3a006a0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 529 (Thread 177.529):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x39bbdb8, option=2, send_size=0, rcv_size=24, rcv_name=8881, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f6c0, port=6692, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x39bbf10, outheadp=0x39bdf20) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x3a016f0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 530 (Thread 177.530):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x40ebf10, option=2051, send_size=48, rcv_size=8192, rcv_name=18, timeout=0, notify=0) at msg.c:110
+#2 0x010e4e29 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:151
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x83a9420) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 531 (Thread 177.531):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x43adf20, option=2051, send_size=40, rcv_size=8192, rcv_name=18, timeout=0, notify=0) at msg.c:110
+#2 0x010e4e29 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:151
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x3a4efc0) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 532 (Thread 177.532):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x47abdb8, option=2, send_size=0, rcv_size=24, rcv_name=13165, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f6c0, port=11806, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x47adf20, outheadp=0x47abf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x3a31a48) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 533 (Thread 177.533):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x48cdf20, option=2051, send_size=40, rcv_size=8192, rcv_name=18, timeout=0, notify=0) at msg.c:110
+#2 0x010e4e29 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:151
+#3 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#4 0x010b0058 in cthread_body (self=0x8400f30) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#5 0x00000000 in ?? ()
+
+Thread 534 (Thread 177.534):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x4bbbdb8, option=2, send_size=0, rcv_size=24, rcv_name=4850, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f6c0, port=13460, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x4bbdf20, outheadp=0x4bbbf10) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x83bb9c8) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
+
+Thread 535 (Thread 177.535):
+#0 0x010e3efc in mach_msg_trap () at /build/buildd-eglibc_2.11.2-6+b1-hurd-i386-sWVQAp/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+#1 0x010e46f9 in __mach_msg (msg=0x4bcbdb8, option=2, send_size=0, rcv_size=24, rcv_name=5058, timeout=0, notify=0) at msg.c:110
+#2 0x010aecef in cproc_block () at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:638
+#3 0x010af17a in __mutex_lock_solid (ptr=0x10b9488) at /home/sthibaul-guest/hurd-debian/./libthreads/cprocs.c:950
+#4 0x010b4565 in ports_lookup_port (bucket=0x805f6c0, port=6692, class=0x0) at /home/sthibaul-guest/hurd-debian/./libports/lookup-port.c:32
+#5 0x010b50d0 in internal_demuxer (inp=0x4bcbf10, outheadp=0x4bcdf20) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:86
+#6 0x010e4dc6 in __mach_msg_server_timeout (demux=0x133ff38, max_size=8192, rcv_name=18, option=2048, timeout=0) at msgserver.c:109
+#7 0x010b4eb0 in thread_function (master=0) at /home/sthibaul-guest/hurd-debian/./libports/manage-multithread.c:136
+#8 0x010b0058 in cthread_body (self=0x82b9038) at /home/sthibaul-guest/hurd-debian/./libthreads/cthreads.c:300
+#9 0x00000000 in ?? ()
--
cgit v1.2.3
From dbb6186d91d06cb1fd41617d3a364c8d9b0be97d Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 26 Oct 2010 12:30:08 +0200
Subject: open_issues/io_system_binutils_ld_64ksec: New.
---
open_issues/io_system_binutils_ld_64ksec.mdwn | 33 +++++++++++++++++++++
.../io_system_binutils_ld_64ksec/test.tar.xz | Bin 0 -> 378092 bytes
2 files changed, 33 insertions(+)
create mode 100644 open_issues/io_system_binutils_ld_64ksec.mdwn
create mode 100644 open_issues/io_system_binutils_ld_64ksec/test.tar.xz
diff --git a/open_issues/io_system_binutils_ld_64ksec.mdwn b/open_issues/io_system_binutils_ld_64ksec.mdwn
new file mode 100644
index 00000000..16c2ae50
--- /dev/null
+++ b/open_issues/io_system_binutils_ld_64ksec.mdwn
@@ -0,0 +1,33 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_hurd]]
+
+This one may be considered as a testcase for I/O system optimization.
+
+It is taken from the [[binutils_testsuite]], `ld/ld-elf/sec64k.exp`, where this
+test may occasionally trigger a timeout. It is extracted from
+cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24.
+
+ $ wget -O - http://www.gnu.org/software/hurd/open_issues/io_system_binutils_ld_64ksec/test.tar.xz | xz -d | tar -x
+ $ cd test/
+ $ \time ./ld-new.stripped -o dump dump?.o dump??.o
+ 0.00user 0.00system 2:46.11elapsed 0%CPU (0avgtext+0avgdata 0maxresident)k
+ 0inputs+0outputs (0major+0minor)pagefaults 0swaps
+
+On the idle grubber, this one repeatedly takes a few minutes wall time to
+complete successfully, contrary to a few seconds on a GNU/Linux system.
+
+While processing the object files, there is heavy interaction with the relevant
+[[hurd/translator/ext2fs]] process . Running [[hurd/debugging/rpctrace]] on
+the testee shows that (primarily) an ever-repeating series of `io_seek` and
+`io_read` is being processed. Running the testee on GNU/Linux with strace
+shows the equivalent thing (`_llseek`, `read`) -- but Linux' I/O system isn't
+as slow as the Hurd's.
diff --git a/open_issues/io_system_binutils_ld_64ksec/test.tar.xz b/open_issues/io_system_binutils_ld_64ksec/test.tar.xz
new file mode 100644
index 00000000..6d7c606c
Binary files /dev/null and b/open_issues/io_system_binutils_ld_64ksec/test.tar.xz differ
--
cgit v1.2.3
From a035187dc4742faaaec97d581efda74616c87dda Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 26 Oct 2010 15:15:40 +0200
Subject: open_issues/binutils_testsuite: Update. And some more.
---
binutils.mdwn | 3 +-
open_issues/binutils.mdwn | 28 +-
open_issues/binutils_testsuite.mdwn | 984 ++------------------------
open_issues/binutils_testsuite/log_build-diff | 4 +-
open_issues/binutils_testsuite/sum_hurd | 713 ++++++++++++++++++-
open_issues/binutils_testsuite/sum_linux | 10 +-
open_issues/io_system_binutils_ld_64ksec.mdwn | 4 +-
source_repositories.mdwn | 9 +-
source_repositories/binutils.mdwn | 14 +
topgit.mdwn | 4 +
10 files changed, 805 insertions(+), 968 deletions(-)
create mode 100644 source_repositories/binutils.mdwn
diff --git a/binutils.mdwn b/binutils.mdwn
index 00926a44..44b672eb 100644
--- a/binutils.mdwn
+++ b/binutils.mdwn
@@ -21,7 +21,8 @@ Actually *non-*specifics: as these tools primarily deal with low-level parts of
the target architecture and the object file format (ELF ABI), which are
essentially (at least meant to be) the same, there shouldn't be many
differences comparing the binutils between the GNU/Hurd and GNU/Linux ports,
-for example.
+for example. There are a few, though, as explained on binutils' [[open issues
+page|open_issues/binutils]].
# Open Issues
diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn
index c4eb7c85..260e519e 100644
--- a/open_issues/binutils.mdwn
+++ b/open_issues/binutils.mdwn
@@ -13,11 +13,20 @@ License|/fdl]]."]]"""]]
Here's what's to be done for maintaining GNU Binutils.
+# [[Sources|source_repositories/binutils]]
+
+
# Configuration
-Last checked against cdf7c161ebd4a934c9e705d33f5247fd52975612, 2010-10-24.
+Last checked against cdf7c161ebd4a934c9e705d33f5247fd52975612 (2010-10-24).
+
+ * Globally
-a.out support and 64 bit support are not interesting.
+ * a.out, COFF, PE image support and 64 bit support are not interesting.
+
+ * In the testsuites, `.exp` and `.d` files very likely should not only
+ care for `*-*-linux*`, but also `*-*-gnu*`. (If the need to be
+ conditionalized like this at all.)
* `bfd/`
@@ -29,9 +38,7 @@ a.out support and 64 bit support are not interesting.
* `i386linux_vec` -- a.out.
- * `i386pei_vec`
-
- *BFD back-end for Intel 386 PE IMAGE COFF files*. Not interesting.
+ * `i386pei_vec` -- PE.
* 64 bit.
@@ -45,14 +52,12 @@ a.out support and 64 bit support are not interesting.
* `COREFILE=trad-core.lo` with `TRAD_HEADER='"hosts/i386linux.h"'`
- We don't have any such core file support configured. Should we?
- Where is this core file reading exactly used? GDB?
+ We don't have any such core file support configured. TODO: should
+ we? Where is this core file reading exactly used? GDB?
* `i386linux_vec` -- a.out.
- * `i386pei_vec`
-
- *BFD back-end for Intel 386 PE IMAGE COFF files*. Not interesting.
+ * `i386pei_vec` -- PE.
* `binutils/`
@@ -76,7 +81,8 @@ a.out support and 64 bit support are not interesting.
* `*-*-gnu*`
- Resolve `crt0.o` vs. `crt1.o` issue.
+ TODO: resolve `crt0.o` vs. `crt1.o` issue. [[Testsuite
+ failures|binutils_testsuite#static]].
* `configure.tgt`
diff --git a/open_issues/binutils_testsuite.mdwn b/open_issues/binutils_testsuite.mdwn
index acbc48e9..f99078a4 100644
--- a/open_issues/binutils_testsuite.mdwn
+++ b/open_issues/binutils_testsuite.mdwn
@@ -11,8 +11,8 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_binutils]]
Here's a log of a binutils build and testsuite run; this is from
-cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24, run on
-kepler.SCHWINGE and grubber.
+6a55712fd7d37033555d206fea8baf6ea299efae (2010-10-26)
+[[sources|source_repositories/binutils]], run on kepler.SCHWINGE and grubber.
$ export LC_ALL=C
$ ../hurd/configure 2>&1 | tee log_build
@@ -36,738 +36,75 @@ GNU/Linux defining `-DTRAD_CORE`, `-DHAVE_i386linux_vec`
$ make -k check
[...]
+On grubber, this takes roughly 45 minutes.
+
$ ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils_testsuite/sum_linux
$ ssh grubber 'cd tmp/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils_testsuite/sum_hurd
Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
$ diff -u -F ^Running open_issues/binutils_testsuite/sum_linux open_issues/binutils_testsuite/sum_hurd
- --- open_issues/binutils_testsuite/sum_linux 2010-10-24 20:33:04.000000000 +0200
- +++ open_issues/binutils_testsuite/sum_hurd 2010-10-24 20:41:53.000000000 +0200
+ --- open_issues/binutils_testsuite/sum_linux 2010-10-26 09:54:36.000000000 +0200
+ +++ open_issues/binutils_testsuite/sum_hurd 2010-10-26 14:42:26.000000000 +0200
@@ -1,5 +1,5 @@
- -Test Run By thomas on Sun Oct 24 20:00:29 2010
+ -Test Run By thomas on Tue Oct 26 09:50:30 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sun Oct 24 20:01:01 2010
+ +Test Run By tschwinge on Tue Oct 26 12:32:17 2010
+Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
- @@ -14,19 +14,12 @@
- PASS: ar thin archive with nested archive
- PASS: ar argument parsing
- PASS: ar deterministic archive
- -PASS: ar unique symbol in archive
- Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
- Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
- Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
- Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
- -UNSUPPORTED: Update ELF header 1
- -PASS: Update ELF header 2
- -PASS: Update ELF header 3
- Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
- Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
- -PASS: objcopy on compressed debug sections
- -PASS: strip on uncompressed debug sections
- -PASS: strip on compressed debug sections
- Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
- Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
- PASS: nm (no arguments)
- @@ -50,35 +43,9 @@
- PASS: run stripped executable with saving a symbol
- PASS: keep only debug data
- PASS: simple objcopy of debug data
- -PASS: objcopy (ELF unknown section type)
- -PASS: objcopy (ELF group)
- -PASS: objcopy (ELF group)
- -PASS: objcopy (ELF group)
- -PASS: objcopy (ELF group)
- -PASS: copy removing group member
- -PASS: copy with setting section flags 1
- -PASS: add notes section
- PASS: copy with setting section flags 2
- PASS: copy with setting section flags 3
- PASS: strip --strip-unneeded on common symbol
- -PASS: strip with section group 1
- -PASS: strip with section group 2
- -PASS: strip empty file
- -PASS: strip with section group 4
- -PASS: strip with section group 5
- -PASS: strip with section group 6
- -PASS: strip with section group 7
- -PASS: strip with section group 8
- -PASS: strip with section group 9
- -PASS: strip on STB_GNU_UNIQUE
- -PASS: objcopy keeps symbols needed by relocs
- -PASS: --localize-hidden test 1
- -PASS: unordered .debug_info references to .debug_ranges
- -UNSUPPORTED: unordered .debug_info references to .debug_ranges
- -PASS: objcopy add-section
- -PASS: objcopy add-empty-section
- -PASS: objcopy on sections with SHF_EXCLUDE
- -PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
- PASS: --localize-hidden test 2
- Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
- PASS: objdump -i
- @@ -87,17 +54,8 @@
- PASS: objdump -t
- PASS: objdump -r
- PASS: objdump -s
- -PASS: objdump -s -j .zdebug_abbrev
- -PASS: objdump -W
- +UNSUPPORTED: objdump compressed debug
- Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
- -PASS: finding out ELF size with readelf -h
- -PASS: readelf -h
- -PASS: readelf -S
- -PASS: readelf -s
- -PASS: readelf -r
- -PASS: readelf -wi
- -PASS: readelf -wa (compressed)
- -PASS: readelf -p
- Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
- PASS: size (no arguments)
- PASS: size -A
- @@ -107,10 +65,10 @@
-
- === binutils Summary ===
+ @@ -109,8 +109,8 @@ Running [...]/hurd/binutils/testsuite/bi
- -# of expected passes 79
- -# of unsupported tests 2
- -Test Run By thomas on Sun Oct 24 20:00:50 2010
+ # of expected passes 79
+ # of unsupported tests 2
+ -Test Run By thomas on Tue Oct 26 09:50:51 2010
-Native configuration is i686-pc-linux-gnu
- +# of expected passes 38
- +# of unsupported tests 1
- +Test Run By tschwinge on Sun Oct 24 20:06:29 2010
+ +Test Run By tschwinge on Tue Oct 26 12:39:07 2010
+Native configuration is i686-unknown-gnu0.3
=== ld tests ===
- @@ -129,8 +87,8 @@
- UNTESTED: bootstrap with --no-keep-memory
- UNTESTED: bootstrap with --relax
- Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
- -PASS: cdtest
- -PASS: cdtest with -Ur
- +FAIL: cdtest
- +FAIL: cdtest with -Ur
- Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
- PASS: check sections 1
- PASS: check sections 2
- @@ -139,428 +97,23 @@
- Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
- Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
- Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
- -PASS: ld-discard/extern
- -PASS: ld-discard/start
- -PASS: ld-discard/static
- -PASS: ld-discard/zero-rel
- Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
- -PASS: Run with -paudit.so
- -PASS: Run with -Paudit.so
- -PASS: Run with --depaudit=audit.so
- -PASS: Run with shared with --audit
- -PASS: Run with shared with --audit
- -PASS: Run with -lusesaudit
- -PASS: Run with -lusesaudit -lusesaudit2
- Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
- -PASS: strip -z max-page-size=0x200000 (maxpage1)
- -PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
- -PASS: strip -z max-page-size=0x100000 (maxpage1)
- -PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
- -PASS: strip (maxpage1)
- -PASS: strip -shared (maxpage1)
- -PASS: objcopy (maxpage1)
- -PASS: objcopy -shared (maxpage1)
- -PASS: strip -z relro (relro1)
- -PASS: strip -z relro -shared (relro1)
- -PASS: objcopy -z relro (relro1)
- -PASS: objcopy -z relro -shared (relro1)
- -PASS: strip -z relro -shared (relro2)
- -PASS: objcopy -z relro -shared (relro2)
- -PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
- -PASS: objcopy (tbss1)
- -PASS: objcopy -z relro (tbss1)
- -PASS: objcopy -shared (tbss1)
- -PASS: objcopy -shared -z relro (tbss1)
- -PASS: objcopy -z max-page-size=0x100000 (tbss1)
- -PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
- -PASS: objcopy (tdata1)
- -PASS: objcopy -z relro (tdata1)
- -PASS: objcopy -shared (tdata1)
- -PASS: objcopy -shared -z relro (tdata1)
- -PASS: objcopy -z max-page-size=0x100000 (tdata1)
- -PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
- -PASS: objcopy (tbss2)
- -PASS: objcopy -z relro (tbss2)
- -PASS: objcopy -shared (tbss2)
- -PASS: objcopy -shared -z relro (tbss2)
- -PASS: objcopy -z max-page-size=0x100000 (tbss2)
- -PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
- -PASS: objcopy (tdata2)
- -PASS: objcopy -z relro (tdata2)
- -PASS: objcopy -shared (tdata2)
- -PASS: objcopy -shared -z relro (tdata2)
- -PASS: objcopy -z max-page-size=0x100000 (tdata2)
- -PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
- Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
- -PASS: Build libdwarf1.so
- -PASS: Run with libdwarf1.so first
- -PASS: Run with libdwarf1.so last
- -PASS: Strip -s libdwarf1c.so
- Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
- -PASS: Guess the target size from eh-group1size.o
- -PASS: Build eh-group1.o
- -PASS: Link eh-group.o to eh-group
- Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
- -PASS: ld-elf/commonpage1
- -PASS: ld-elf/discard1
- -PASS: ld-elf/discard2
- -PASS: ld-elf/discard3
- -PASS: ld-elf/dynsym1
- -PASS: ld-elf/eh-frame-hdr
- -PASS: ld-elf/eh5
- -PASS: ld-elf/eh6
- -PASS: ld-elf/empty
- -PASS: ld-elf/empty2
- -PASS: ld-elf/exclude3a
- -PASS: ld-elf/exclude3b
- -PASS: ld-elf/exclude3c
- -PASS: ld-elf/expr1
- -PASS: --extract-symbol test 1 (sections)
- -PASS: --extract-symbol test 1 (symbols)
- -PASS: --set-section-flags test 1 (sections)
- -PASS: ld-elf/group1
- -PASS: ld-elf/group10
- -PASS: ld-elf/group2
- -PASS: ld-elf/group3a
- -PASS: ld-elf/group3b
- -PASS: ld-elf/group4
- -PASS: ld-elf/group5
- -PASS: ld-elf/group6
- -PASS: ld-elf/group7
- -PASS: ld-elf/group8a
- -PASS: ld-elf/group8b
- -PASS: ld-elf/group9a
- -PASS: ld-elf/group9b
- -PASS: ld-elf/hash
- -PASS: ld-elf/header
- -PASS: ld-elf/init-fini-arrays
- -PASS: ld-elf/linkonce1
- -PASS: ld-elf/linkonce2
- -PASS: ld-elf/linkoncerdiff
- -PASS: ld-elf/loadaddr1
- -PASS: ld-elf/loadaddr2
- -PASS: ld-elf/loadaddr3a
- -PASS: ld-elf/loadaddr3b
- -PASS: ld-elf/local1
- -PASS: ld-elf/maxpage1
- -PASS: ld-elf/maxpage2
- -PASS: ld-elf/maxpage3a
- -PASS: ld-elf/merge
- -PASS: ld-elf/merge2
- -PASS: ld-elf/multibss1
- -PASS: ld-elf/nobits-1
- -PASS: ld-elf/noload-1
- -PASS: ld-elf/noload-2
- -PASS: ld-elf/noload-3
- -PASS: ld-elf/note-1
- -PASS: ld-elf/note-2
- -PASS: ld-elf/orphan-region
- -PASS: ld-elf/orphan
- -PASS: ld-elf/orphan2
- -PASS: ld-elf/orphan3
- -PASS: ld-elf/orphan4
- -PASS: ld-elf/overlay
- -PASS: ld-elf/pr11304
- -PASS: ld-elf/pr349
- -PASS: relocatable with script
- -PASS: ld-elf/seg
- -PASS: ld-elf/stab
- -PASS: ld-elf/textaddr1
- -PASS: ld-elf/textaddr2
- -PASS: ld-elf/textaddr3
- -PASS: ld-elf/textaddr4
- -PASS: ld-elf/textaddr5
- -PASS: ld-elf/textaddr6
- -PASS: ld-elf/textaddr7
- -PASS: ld-elf/unknown
- -PASS: ld-elf/unknown2
- -PASS: ld-elf/warn1
- -PASS: ld-elf/warn2
- -PASS: Weak symbols in dynamic objects 1 (support)
- -PASS: Weak symbols in dynamic objects 1 (main test)
- -PASS: --gc-sections on tls variable
- -PASS: preinit array
+ @@ -282,9 +282,9 @@ Running [...]/hurd/ld/testsuite/ld-elf/e
+ PASS: preinit array
+ PASS: init array
+ PASS: fini array
-PASS: static preinit array
- -PASS: init array
-PASS: static init array
- -PASS: fini array
-PASS: static fini array
+ +XFAIL: static preinit array
+ +XFAIL: static init array
+ +XFAIL: static fini array
Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
- -PASS: ld link shared library
- -PASS: ld export symbols from archive
- -PASS: ld link shared library with --exclude-libs
- -PASS: ld exclude symbols from archive - --exclude-libs libexclude
- -PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
- -PASS: ld exclude symbols from archive - --exclude-libs ALL
- -PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
- -PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
- -PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
- Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
- -PASS: read-only .eh_frame section
- -PASS: read-only .gcc_except_table section
- Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
- -PASS: assignment of ELF sections to segments (same page)
- -PASS: assignment of ELF sections to segments (adjacent pages)
- -PASS: assignment of ELF sections to segments (disjoint pages)
- +UNSUPPORTED: assignment of ELF sections to segments
- Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
- -PASS: ld-elf/64ksec-r
- -PASS: ld-elf/64ksec
- Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
- -PASS: Build libfoo.so
- -PASS: Build versioned libfoo.so
- -PASS: Build libbar.so
- -PASS: Build warn libbar.so
- -PASS: Build hidden libbar.so
- -PASS: Build protected libbar.so
- -PASS: Build libbar.so with libfoo.so
- -PASS: Build libar.so with versioned libfoo.so
- -PASS: Build hidden libbar.so with libfoo.so
- -PASS: Build hidden libar.so with versioned libfoo.so
- -PASS: Build protected libbar.so with libfoo.so
- -PASS: Build protected libbar.so with versioned libfoo.so
- -PASS: Build libdl1.so
- -PASS: Build libdl2a.so with --dynamic-list=dl2.list
- -PASS: Build libdl2a.so with --dynamic-list=dl2a.list
- -PASS: Build libdl2a.so with --dynamic-list-data
- -PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
- -PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
- -PASS: Build libdl4a.so with --dynamic-list=dl4.list
- -PASS: Build libdl4b.so with --dynamic-list-data
- -PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
- -PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
- -PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
- -PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
- -PASS: Build libdl6a.so
- -PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
- -PASS: Build libdl6c.so with -Bsymbolic
- -PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
- -PASS: Build libdata1.so
- -PASS: Build libcomm1.o
- -PASS: Build libfunc1.so
- -PASS: Build libpr9676-1.a
- -PASS: Build libpr9676-2.a
- -PASS: Build libpr9676-3.so
- -PASS: Build libpr9676-4.so
- -PASS: Build libpr9676-4a.so
- -PASS: Build libpr9679.so
- -PASS: Build libpr11138-1.so
- -PASS: Build libpr11138-2.o
- -PASS: Run normal with libfoo.so
- -PASS: Run protected with libfoo.so
- -PASS: Run hidden with libfoo.so
- -PASS: Run normal with versioned libfoo.so
- -PASS: Run warn with versioned libfoo.so
- -PASS: Run protected with versioned libfoo.so
- -PASS: Run hidden with versioned libfoo.so
- -PASS: Run normal libbar.so with libfoo.so
- -PASS: Run protected libbar.so with libfoo.so
- -PASS: Run hidden libbar.so with libfoo.so
- -PASS: Run normal libbar.so with versioned libfoo.so
- -PASS: Run protected libbar.so with versioned libfoo.so
- -PASS: Run hidden libbar.so with versioned libfoo.so
- -PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
- -PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
- -PASS: Run with libdl2a.so
- -PASS: Run with libdl2b.so
- -PASS: Run with libdl2c.so
- -PASS: Run with libdl4a.so
- -PASS: Run with libdl4b.so
- -PASS: Run with libdl4c.so
- -PASS: Run with libdl4d.so
- -PASS: Run with libdl4e.so
- -PASS: Run with libdl4f.so
- -PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
- -PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
- -PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
- -PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
- -PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
- -PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
- -PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
- -PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
- -PASS: Run dl6b2 with dlopen on libdl6b.so
- -PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
- -PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
- -PASS: Run with libdata1.so
- -PASS: Run with libfunc1.so comm1.o
- -PASS: Run with comm1.o libfunc1.so
- -PASS: Run with pr11138-2.c libpr11138-1.so
- -PASS: Run with libpr11138-1.so pr11138-2.c
- -PASS: Build libdl3a.so with --dynamic-list=dl3.list
- -PASS: Build libdl3b.so with -Bsymbolic
- -PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
- -PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
- -PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
- -PASS: Run with libdl3a.so
- -PASS: Run with libdl3c.so
- -PASS: Run with libnew1a.so
- -PASS: Run with libnew1b.so
- Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
- -PASS: tls_common
- Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
- -PASS: Build libwrap1a.so
- -PASS: Build libwrap1b.so
- -PASS: Run with libwrap1a.so and libwrap1b.so
- -PASS: Run with libwrap1b.so and libwrap1a.so
- Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
- -PASS: --sort-common (descending)
- -PASS: --sort-common (ascending)
- -PASS: size/aligment change of common symbols (warning 1)
- -PASS: size/aligment change of common symbols (change 1)
- -PASS: size/aligment change of common symbols (warning 2)
- -PASS: size/aligment change of common symbols (change 2)
- Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
- -PASS: vers1
- -PASS: vers2
- -PASS: vers3
- -PASS: vers4
- -PASS: vers4a
- -PASS: vers4b
- -PASS: vers5
- -PASS: vers6
- -PASS: vers7a
- -PASS: vers7
- -PASS: vers8
- -PASS: vers9
- -PASS: vers10
- -PASS: vers11
- -PASS: vers12
- -PASS: ar with versioned solib
- -PASS: vers14
- -PASS: vers15
- -PASS: vers16a
- -PASS: vers16
- -PASS: vers17
- -PASS: vers18
- -PASS: vers19
- -PASS: vers20a
- -PASS: vers20
- -PASS: vers21
- -PASS: vers22a
- -PASS: vers22b
- -PASS: vers22
- -PASS: vers23a
- -PASS: vers23b
- -PASS: vers23c
- -PASS: vers23d
- -PASS: vers23
- -PASS: vers24a
- -PASS: vers24b
- -PASS: vers24c
- -PASS: vers25a
- -PASS: vers25b1
- -PASS: vers25b2
- -PASS: vers26a
- -PASS: vers26b1
- -PASS: vers26b2
- -PASS: vers26b3
- -PASS: vers27a
- -PASS: vers27b
- -PASS: vers27c1
- -PASS: vers27c2
- -PASS: vers27d1
- -PASS: vers27d2
- -PASS: vers27d3
- -PASS: vers27d4
- -PASS: vers27d5
- -PASS: vers28a
- -PASS: vers28b
- -PASS: vers28c
- -PASS: vers29
- -PASS: vers30
- -PASS: vers31
- -PASS: vers32a
- -PASS: vers32b
- -PASS: vers32c
- -PASS: vers32d
- Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
- -PASS: ld-elfvsb/hidden0
- -PASS: ld-elfvsb/hidden1
- -PASS: ld-elfvsb/hidden2
- -PASS: ld-elfvsb/internal0
- -PASS: ld-elfvsb/internal1
- -PASS: ld-elfvsb/protected0
- -PASS: ld-elfvsb/protected1
- -PASS: visibility (hidden) (non PIC)
- -PASS: visibility (hidden) (non PIC, load offset)
- -PASS: visibility (hidden)
- -PASS: visibility (hidden) (PIC main, non PIC so)
- -PASS: visibility (hidden) (PIC main)
- -PASS: visibility (hidden_normal) (non PIC)
- -PASS: visibility (hidden_normal) (non PIC, load offset)
- -PASS: visibility (hidden_normal)
- -PASS: visibility (hidden_normal) (PIC main, non PIC so)
- -PASS: visibility (hidden_normal) (PIC main)
- -PASS: visibility (hidden_undef) (non PIC)
- -PASS: visibility (hidden_undef) (non PIC, load offset)
- -PASS: visibility (hidden_undef)
- -PASS: visibility (hidden_undef) (PIC main, non PIC so)
- -PASS: visibility (hidden_undef) (PIC main)
- -PASS: visibility (hidden_undef_def) (non PIC)
- -PASS: visibility (hidden_undef_def) (non PIC, load offset)
- -PASS: visibility (hidden_undef_def)
- -PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
- -PASS: visibility (hidden_undef_def) (PIC main)
- -PASS: visibility (hidden_weak) (non PIC)
- -PASS: visibility (hidden_weak) (non PIC, load offset)
- -PASS: visibility (hidden_weak)
- -PASS: visibility (hidden_weak) (PIC main, non PIC so)
- -PASS: visibility (hidden_weak) (PIC main)
- -PASS: visibility (protected) (non PIC)
- -PASS: visibility (protected) (non PIC, load offset)
- -PASS: visibility (protected)
- -PASS: visibility (protected) (PIC main, non PIC so)
- -PASS: visibility (protected) (PIC main)
- -PASS: visibility (protected_undef) (non PIC)
- -PASS: visibility (protected_undef) (non PIC, load offset)
- -PASS: visibility (protected_undef)
- -PASS: visibility (protected_undef) (PIC main, non PIC so)
- -PASS: visibility (protected_undef) (PIC main)
- -PASS: visibility (protected_undef_def) (non PIC)
- -PASS: visibility (protected_undef_def) (non PIC, load offset)
- -PASS: visibility (protected_undef_def)
- -PASS: visibility (protected_undef_def) (PIC main, non PIC so)
- -PASS: visibility (protected_undef_def) (PIC main)
- -PASS: visibility (protected_weak) (non PIC)
- -PASS: visibility (protected_weak) (non PIC, load offset)
- -PASS: visibility (protected_weak)
- -PASS: visibility (protected_weak) (PIC main, non PIC so)
- -PASS: visibility (protected_weak) (PIC main)
- -PASS: visibility (normal) (non PIC)
- -PASS: visibility (normal) (non PIC, load offset)
- -PASS: visibility (normal)
- -PASS: visibility (normal) (PIC main, non PIC so)
- -PASS: visibility (normal) (PIC main)
- -PASS: common hidden symbol
- -PASS: weak hidden symbol DSO last
- -PASS: weak hidden symbol DSO first
- Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
- -PASS: ELF DSO weak func first
- -PASS: ELF DSO weak func last
- -PASS: ELF DSO weak func first DSO
- -PASS: ELF DSO weak func last DSO
- -PASS: ELF weak func first
- -PASS: ELF weak func last
+ PASS: ld link shared library
+ PASS: ld export symbols from archive
+ @@ -540,8 +540,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ PASS: ELF DSO weak func last DSO
+ PASS: ELF weak func first
+ PASS: ELF weak func last
-PASS: ELF weak func first DSO
-PASS: ELF weak func last DSO
- -PASS: ELF DSO weak data first
- -PASS: ELF DSO weak data last
- -PASS: ELF DSO weak data first DSO
- -PASS: ELF DSO weak data last DSO
- -PASS: ELF DSO weak data first DSO common
- -PASS: ELF DSO weak data last DSO common
- -PASS: ELF weak data first
- -PASS: ELF weak data last
- -PASS: ELF weak data first common
- -PASS: ELF weak data last common
+ +XFAIL: ELF weak func first DSO
+ +XFAIL: ELF weak func last DSO
+ PASS: ELF DSO weak data first
+ PASS: ELF DSO weak data last
+ PASS: ELF DSO weak data first DSO
+ @@ -552,10 +552,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ PASS: ELF weak data last
+ PASS: ELF weak data first common
+ PASS: ELF weak data last common
-PASS: ELF weak data first DSO
-PASS: ELF weak data last DSO
-PASS: ELF weak data first DSO common
-PASS: ELF weak data last DSO common
- -PASS: ELF DSO small bar (size)
- -PASS: ELF DSO foo with small bar (size)
- -PASS: ELF DSO big bar (size)
- -PASS: ELF weak size
- -PASS: ld-elfweak/size2
- Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
- Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
- Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
- @@ -571,85 +124,16 @@
- PASS: Check --gc-section/-r/-e
- PASS: Check --gc-section/-r/-u
- PASS: --gc-sections -r without -e
- -PASS: --gc-sections with note section
- -PASS: --gc-sections with __start_
- -PASS: --gc-sections with shared library
- Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
- Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
- -PASS: TLS -fpic -shared transitions
- -PASS: TLS descriptor -fpic -shared transitions
- -PASS: Helper shared library
- -PASS: TLS -fpic and -fno-pic exec transitions
- -PASS: TLS descriptor -fpic and -fno-pic exec transitions
- -PASS: TLS -fno-pic -shared
- -PASS: TLS with global dynamic and descriptors
- -PASS: TLS in debug sections
- -PASS: TLS @indntpoff with %eax
- -PASS: Reloc section order
- -PASS: Basic --emit-relocs support
- -PASS: -z combreloc relocation sections
- -PASS: TLS GD->LE transition
- -PASS: TLS LD->LE transition
- -PASS: TLS IE->LE transition
- -PASS: Absolute non-overflowing relocs
- -PASS: PCREL8 overflow
- -PASS: PCREL16 overflow
- -PASS: PCREL16 absolute reloc
- -PASS: Invalid allocated section
- -PASS: --warn-shared-textrel --fatal-warnings
- -PASS: TLS GD->LE transition check
- -PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
- -PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
- -PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
- -PASS: TLS IE->LE transition check (R_386_TLS_IE)
- -PASS: ld-i386/hidden1
- -PASS: ld-i386/hidden2
- -PASS: ld-i386/hidden3
- -PASS: ld-i386/protected1
- -PASS: ld-i386/protected2
- -PASS: ld-i386/protected3
- -PASS: TLS with PIE
- -PASS: ld-i386/nogot1
- -PASS: ld-i386/nogot2
- -PASS: ld-i386/discarded1
- -PASS: undefined symbol with compressed debug sections
- Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
- Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
- Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
- -PASS: strip (ifunc-4-x86)
- -PASS: objcopy (ifunc-4-x86)
- -PASS: strip (ifunc-4-local-x86)
- -PASS: objcopy (ifunc-4-local-x86)
- Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
- -PASS: Building ifunc binaries
- -PASS: Checking ifunc binaries
- -PASS: ld-ifunc/ifunc-1-local-x86
- -PASS: ld-ifunc/ifunc-1-x86
- -PASS: ld-ifunc/ifunc-10-i386
- -PASS: ld-ifunc/ifunc-11-i386
- -PASS: ld-ifunc/ifunc-2-i386
- -PASS: ld-ifunc/ifunc-2-local-i386
- -PASS: ld-ifunc/ifunc-3a-x86
- -PASS: ld-ifunc/ifunc-3b-x86
- -PASS: ld-ifunc/ifunc-4-local-x86
- -PASS: ld-ifunc/ifunc-4-x86
- -PASS: ld-ifunc/ifunc-4a-x86
- -PASS: ld-ifunc/ifunc-5a-i386
- -PASS: ld-ifunc/ifunc-5a-local-i386
- -PASS: ld-ifunc/ifunc-5b-i386
- -PASS: ld-ifunc/ifunc-5b-local-i386
- -PASS: ld-ifunc/ifunc-5r-local-i386
- -PASS: ld-ifunc/ifunc-6a-i386
- -PASS: ld-ifunc/ifunc-6b-i386
- -PASS: ld-ifunc/ifunc-7a-i386
- -PASS: ld-ifunc/ifunc-7b-i386
- -PASS: ld-ifunc/ifunc-8-i386
- -PASS: ld-ifunc/ifunc-9-x86
- Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
- PASS: -l: test (preparation)
- PASS: -l: test
- Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
- -PASS: ld-linkonce/zeroehl32
- Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
- Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
- Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
- @@ -663,23 +147,19 @@
- Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
- Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
- Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
- -PASS: weak undefined
- -PASS: weak undefined data
- -PASS: missing entry symbol
- Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
- PASS: plugin API enabled
- PASS: load plugin
- PASS: fail plugin onload
- -PASS: fail plugin allsymbolsread
- -PASS: fail plugin cleanup
- -PASS: plugin all hooks
- -PASS: plugin claimfile lost symbol
- -PASS: plugin claimfile replace symbol
- -PASS: plugin claimfile resolve symbol
- -PASS: plugin claimfile replace file
- -PASS: plugin set symbol visibility
- -PASS: plugin ignore lib
- -PASS: plugin claimfile replace lib
- +FAIL: fail plugin allsymbolsread
- +FAIL: fail plugin cleanup
- +FAIL: plugin all hooks
- +FAIL: plugin claimfile lost symbol
- +FAIL: plugin claimfile replace symbol
- +FAIL: plugin claimfile resolve symbol
- +FAIL: plugin claimfile replace file
- +FAIL: plugin ignore lib
- +FAIL: plugin claimfile replace lib
- Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
- Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
- Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
- @@ -689,7 +169,6 @@
- PASS: ld-scripts/align2b
- PASS: ld-scripts/align2c
- Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
- -PASS: ALIGNOF
- Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
- PASS: ASSERT
- Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
- @@ -708,7 +187,6 @@
- PASS: ld-scripts/defined2
- PASS: ld-scripts/defined3
- Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
- -PASS: dynamic sections
- Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
- PASS: ld-scripts/empty-address-1
- PASS: ld-scripts/empty-address-2a
- @@ -717,9 +195,7 @@
- PASS: ld-scripts/empty-address-3b
- PASS: ld-scripts/empty-address-3c
- Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
- -PASS: ld-scripts/empty-aligned
- Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
- -PASS: ld-scripts/empty-orphan
- Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
- PASS: ld-scripts/expr1
- Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
- @@ -729,87 +205,35 @@
- Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
- PASS: map addresses
- Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
- -PASS: overlay size
- -PASS: overlay size (map check)
- Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
- -PASS: PHDRS
- Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
- -PASS: PHDRS2
- Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
- -PASS: PHDRS headers
- -PASS: PHDRS headers 3a
- Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
- PASS: ld-scripts/provide-1
- PASS: ld-scripts/provide-2
- XFAIL: ld-scripts/provide-3
- Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
- -PASS: rgn-at1
- -PASS: rgn-at2
- -PASS: rgn-at3
- -PASS: rgn-at4
- -PASS: rgn-at5
- Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
- -PASS: rgn-over1
- -PASS: rgn-over1 (map check)
- -PASS: rgn-over2
- -PASS: rgn-over2 (map check)
- -PASS: rgn-over3
- -PASS: rgn-over3 (map check)
- -PASS: rgn-over4
- -PASS: rgn-over4 (map check)
- -PASS: rgn-over5
- -PASS: rgn-over5 (map check)
- -PASS: rgn-over6
- -PASS: rgn-over6 (map check)
- -PASS: rgn-over7
- -PASS: rgn-over7 (map check)
- -PASS: rgn-over8
- Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
+ +XFAIL: ELF weak data first DSO
+ +XFAIL: ELF weak data last DSO
+ +XFAIL: ELF weak data first DSO common
+ +XFAIL: ELF weak data last DSO common
+ PASS: ELF DSO small bar (size)
+ PASS: ELF DSO foo with small bar (size)
+ PASS: ELF DSO big bar (size)
+ @@ -768,10 +768,10 @@ Running [...]/hurd/ld/testsuite/ld-scrip
PASS: script
PASS: MRI script
PASS: MEMORY
@@ -780,235 +117,42 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
PASS: ld-scripts/section-match-1
Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
- PASS: ld-scripts/size-1
- -PASS: ld-scripts/size-2
- +UNSUPPORTED: size-2
- Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
- PASS: SIZEOF
- Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
- -PASS: --sort-section alignment
- -PASS: SORT_BY_ALIGNMENT
- -PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
- -PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
- -PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
- -PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
- -PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
- -PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
- -PASS: --sort-section name
- -PASS: SORT_BY_NAME
- -PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
- -PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
- -PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
- -PASS: SORT_BY_NAME(SORT_BY_NAME())
- -PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
- -PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
- -PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
- -PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
- Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
- -PASS: weak symbols
- +UNSUPPORTED: weak symbols
- Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
- -PASS: Preserve default . = 0
- -PASS: Preserve explicit . = 0
- Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
- -PASS: selective1
- -PASS: selective2
- -PASS: selective3
- -XFAIL: selective4
- -XFAIL: selective5
- -XFAIL: selective6
- Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
- Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
- Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
- @@ -819,12 +243,6 @@
- Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
- Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
- Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
- -PASS: shared (non PIC)
- -PASS: shared (non PIC, load offset)
- -PASS: shared
- -PASS: shared -Bsymbolic
- -PASS: shared (PIC main, non PIC so)
- -PASS: shared (PIC main)
- Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
- Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
- Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
- @@ -835,8 +253,6 @@
- PASS: Build libentry.a
- PASS: --entry foo archive
- PASS: --entry foo -u foo archive
- -PASS: -shared --entry foo archive
- -PASS: -shared --entry foo -u foo archive
- PASS: --entry foo
- PASS: --entry foo -u foo
- PASS: --entry 0x0
- @@ -845,7 +261,7 @@
- PASS: undefined function
- PASS: undefined line
- Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
- -PASS: weak undefined symbols
- +UNSUPPORTED: weak undefined symbols
- Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
- Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
- Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
- @@ -860,13 +276,15 @@
+ @@ -860,13 +860,13 @@ Running [...]/hurd/ld/testsuite/ld-xtens
=== ld Summary ===
-# of expected passes 611
-# of expected failures 8
- +# of expected passes 57
- +# of unexpected failures 11
- +# of expected failures 5
+ +# of expected passes 602
+ +# of expected failures 17
# of untested testcases 6
- +# of unsupported tests 4
/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101024
- -Test Run By thomas on Sun Oct 24 20:00:34 2010
+ -Test Run By thomas on Tue Oct 26 09:50:33 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sun Oct 24 20:02:04 2010
+ +Test Run By tschwinge on Tue Oct 26 12:34:01 2010
+Native configuration is i686-unknown-gnu0.3
=== gas tests ===
- @@ -940,15 +358,6 @@
- Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
- Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
- Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
- -PASS: CFI on i386
- -PASS: cfi cfi-diag-1
- -PASS: CFI common 1
- -PASS: CFI common 2
- -PASS: CFI common 3
- -PASS: CFI common 4
- -PASS: CFI common 5
- -PASS: CFI common 7
- -PASS: CFI common 6
- Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
- Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
- Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
- @@ -957,36 +366,6 @@
- Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
- Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
- Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
- -PASS: elf ehopt0
- -PASS: .file file names
- -PASS: group section
- -PASS: group section
- -PASS: group section name
- -PASS: group section with multiple sections of same name
- -PASS: group section with multiple sections of same name
- -PASS: automatic section group
- -PASS: automatic section group
- -PASS: .equ redefinitions (ELF)
- -PASS: elf equate relocs
- -PASS: Ill-formed directives
- -PASS: elf section0
- -PASS: elf section1
- -PASS: elf section2 list
- -PASS: note section
- -PASS: label arithmetic with multiple same-name sections
- -PASS: elf section5 list
- -PASS: ELF struct
- -PASS: .set with expression
- -PASS: ELF symbol versioning
- -PASS: .set with IFUNC
- -PASS: elf type list
- -PASS: elf section6
- -PASS: elf section7
- -PASS: section flags
- -PASS: DWARF2 1
- -PASS: DWARF2 2
- -PASS: DWARF2 3
- -PASS: Check bad section flag
- Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
- Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
- Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
- @@ -1165,41 +544,10 @@
- PASS: i386 FSGSBase (Intel disassembly)
- PASS: i386 RdRnd
- PASS: i386 RdRnd (Intel disassembly)
- -PASS: i386 reloc
- -PASS: i386 jump16
- -PASS: i386 white
- -PASS: i386 pcrel reloc
- -PASS: i386 abs reloc
- -PASS: i386 intelpic
- -PASS: i386 relax
- -PASS: i386 relax 1
- -PASS: i386 relax 3
- -PASS: i386 gotpc
- -PASS: i386 dynamic tls
- -PASS: i386 pic tls
- -PASS: i386 non-pic tls
- -PASS: i386 .bss
- -PASS: i386 relocs
- -PASS: i386 reloc32
- -PASS: x86 mixed mode relocs (32-bit object)
- -PASS: i386 AT&T register names
- -PASS: i386 intel-got
- -PASS: i386 Intel register names
- -PASS: i386 inval-equ-1
- -PASS: i386 inval-equ-2
- -PASS: i386 ifunc
- -PASS: i386 l1om-inval
- -PASS: i386 local PIC
- -PASS: DWARF2 debugging information 1
- -XFAIL: DWARF2 debugging information 2
- PASS: x86 Intel expressions
- PASS: string insn operands
- PASS: i386 string-bad
- PASS: i386 space1
- -PASS: i386 list-1
- -PASS: i386 list-2
- -PASS: i386 list-3
- -PASS: DWARF2 debugging information 1
- Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
- Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
- Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
- @@ -1210,9 +558,6 @@
- Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
- Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
- Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
- -PASS: lns lns-diag-1
- -PASS: lns-duplicate
- -PASS: lns-common-1
- Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
- Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
- Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
- @@ -1281,11 +626,6 @@
- Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
- Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
- Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
- -PASS: symver symver0
- -PASS: symver symver1
- -PASS: symver symver2
- -PASS: symver symver3
- -PASS: symver symver6
- Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
- Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
- Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
- @@ -1300,7 +640,6 @@
-
- === gas Summary ===
-
- -# of expected passes 315
- -# of expected failures 1
- +# of expected passes 238
- ../as-new 2.20.51.20101024
-
-A lot of tests are not being run. Might be due
-to the tests (incorrectly / correctly) being Linux-specific.
+# Analysis
+
+## `FAIL: static [...]`
+
+The testsuite isn't prepared for using `crt0.o` instead of `crt1.o` depending
+on whether a static or dynamic executable is created. Documented in
+`ld/configure.host`. Perhaps we should finally rewrite this messy code in
+glibc to avoid this difference...
-A few tests fail.
+## `FAIL: ld-elf/64ksec`
+On the idle grubber, this one takes a few minutes wall time to complete
+successfully ([[I/O system weakness|io_system_binutils_ld_64ksec]], so assuming
+some system load variation, the testsuite's timeout may trigger.
-These tests PASSed when manually configured for `i686-pc-gnu`, but not when
-automatically configured for `i686-unknown-gnu0.3`:
+## `FAIL: ELF weak [...]`
- Running /home/tschwinge/tmp/binutils/master/ld/testsuite/ld-discard/discard.exp ...
- PASS: ld-discard/extern
- PASS: ld-discard/start
- PASS: ld-discard/static
- PASS: ld-discard/zero-rel
+[[I|tschwinge]] suppose this is due to us having an override w.r.t. weak symbol
+handling in glibc, needed for our external [[libpthread]]. TODO: document
+properly.
diff --git a/open_issues/binutils_testsuite/log_build-diff b/open_issues/binutils_testsuite/log_build-diff
index df43cb74..a63f1aed 100644
--- a/open_issues/binutils_testsuite/log_build-diff
+++ b/open_issues/binutils_testsuite/log_build-diff
@@ -1,5 +1,5 @@
---- /dev/fd/63 2010-10-24 19:54:24.583358614 +0200
-+++ /dev/fd/62 2010-10-24 19:54:24.583358614 +0200
+--- /dev/fd/63 2010-10-26 10:07:58.598668616 +0200
++++ /dev/fd/62 2010-10-26 10:07:58.598668616 +0200
@@ -1,6 +1,6 @@
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-pc-linux-gnu
diff --git a/open_issues/binutils_testsuite/sum_hurd b/open_issues/binutils_testsuite/sum_hurd
index 5eded115..b6301e5a 100644
--- a/open_issues/binutils_testsuite/sum_hurd
+++ b/open_issues/binutils_testsuite/sum_hurd
@@ -1,4 +1,4 @@
-Test Run By tschwinge on Sun Oct 24 20:01:01 2010
+Test Run By tschwinge on Tue Oct 26 12:32:17 2010
Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -14,12 +14,19 @@ PASS: ar thin archive
PASS: ar thin archive with nested archive
PASS: ar argument parsing
PASS: ar deterministic archive
+PASS: ar unique symbol in archive
Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
+UNSUPPORTED: Update ELF header 1
+PASS: Update ELF header 2
+PASS: Update ELF header 3
Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
+PASS: objcopy on compressed debug sections
+PASS: strip on uncompressed debug sections
+PASS: strip on compressed debug sections
Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
PASS: nm (no arguments)
@@ -43,9 +50,35 @@ PASS: run stripped executable
PASS: run stripped executable with saving a symbol
PASS: keep only debug data
PASS: simple objcopy of debug data
+PASS: objcopy (ELF unknown section type)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: copy removing group member
+PASS: copy with setting section flags 1
+PASS: add notes section
PASS: copy with setting section flags 2
PASS: copy with setting section flags 3
PASS: strip --strip-unneeded on common symbol
+PASS: strip with section group 1
+PASS: strip with section group 2
+PASS: strip empty file
+PASS: strip with section group 4
+PASS: strip with section group 5
+PASS: strip with section group 6
+PASS: strip with section group 7
+PASS: strip with section group 8
+PASS: strip with section group 9
+PASS: strip on STB_GNU_UNIQUE
+PASS: objcopy keeps symbols needed by relocs
+PASS: --localize-hidden test 1
+PASS: unordered .debug_info references to .debug_ranges
+UNSUPPORTED: unordered .debug_info references to .debug_ranges
+PASS: objcopy add-section
+PASS: objcopy add-empty-section
+PASS: objcopy on sections with SHF_EXCLUDE
+PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
PASS: --localize-hidden test 2
Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
PASS: objdump -i
@@ -54,8 +87,17 @@ PASS: objdump -h
PASS: objdump -t
PASS: objdump -r
PASS: objdump -s
-UNSUPPORTED: objdump compressed debug
+PASS: objdump -s -j .zdebug_abbrev
+PASS: objdump -W
Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
+PASS: finding out ELF size with readelf -h
+PASS: readelf -h
+PASS: readelf -S
+PASS: readelf -s
+PASS: readelf -r
+PASS: readelf -wi
+PASS: readelf -wa (compressed)
+PASS: readelf -p
Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
PASS: size (no arguments)
PASS: size -A
@@ -65,9 +107,9 @@ Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
=== binutils Summary ===
-# of expected passes 38
-# of unsupported tests 1
-Test Run By tschwinge on Sun Oct 24 20:06:29 2010
+# of expected passes 79
+# of unsupported tests 2
+Test Run By tschwinge on Tue Oct 26 12:39:07 2010
Native configuration is i686-unknown-gnu0.3
=== ld tests ===
@@ -87,8 +129,8 @@ UNTESTED: bootstrap with --traditional-format
UNTESTED: bootstrap with --no-keep-memory
UNTESTED: bootstrap with --relax
Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
-FAIL: cdtest
-FAIL: cdtest with -Ur
+PASS: cdtest
+PASS: cdtest with -Ur
Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
PASS: check sections 1
PASS: check sections 2
@@ -97,23 +139,428 @@ Running [...]/hurd/ld/testsuite/ld-crx/crx.exp ...
Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
+PASS: ld-discard/extern
+PASS: ld-discard/start
+PASS: ld-discard/static
+PASS: ld-discard/zero-rel
Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
+PASS: Run with -paudit.so
+PASS: Run with -Paudit.so
+PASS: Run with --depaudit=audit.so
+PASS: Run with shared with --audit
+PASS: Run with shared with --audit
+PASS: Run with -lusesaudit
+PASS: Run with -lusesaudit -lusesaudit2
Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
+PASS: strip -z max-page-size=0x200000 (maxpage1)
+PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
+PASS: strip -z max-page-size=0x100000 (maxpage1)
+PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
+PASS: strip (maxpage1)
+PASS: strip -shared (maxpage1)
+PASS: objcopy (maxpage1)
+PASS: objcopy -shared (maxpage1)
+PASS: strip -z relro (relro1)
+PASS: strip -z relro -shared (relro1)
+PASS: objcopy -z relro (relro1)
+PASS: objcopy -z relro -shared (relro1)
+PASS: strip -z relro -shared (relro2)
+PASS: objcopy -z relro -shared (relro2)
+PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
+PASS: objcopy (tbss1)
+PASS: objcopy -z relro (tbss1)
+PASS: objcopy -shared (tbss1)
+PASS: objcopy -shared -z relro (tbss1)
+PASS: objcopy -z max-page-size=0x100000 (tbss1)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
+PASS: objcopy (tdata1)
+PASS: objcopy -z relro (tdata1)
+PASS: objcopy -shared (tdata1)
+PASS: objcopy -shared -z relro (tdata1)
+PASS: objcopy -z max-page-size=0x100000 (tdata1)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
+PASS: objcopy (tbss2)
+PASS: objcopy -z relro (tbss2)
+PASS: objcopy -shared (tbss2)
+PASS: objcopy -shared -z relro (tbss2)
+PASS: objcopy -z max-page-size=0x100000 (tbss2)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
+PASS: objcopy (tdata2)
+PASS: objcopy -z relro (tdata2)
+PASS: objcopy -shared (tdata2)
+PASS: objcopy -shared -z relro (tdata2)
+PASS: objcopy -z max-page-size=0x100000 (tdata2)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
+PASS: Build libdwarf1.so
+PASS: Run with libdwarf1.so first
+PASS: Run with libdwarf1.so last
+PASS: Strip -s libdwarf1c.so
Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
+PASS: Guess the target size from eh-group1size.o
+PASS: Build eh-group1.o
+PASS: Link eh-group.o to eh-group
Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
+PASS: ld-elf/commonpage1
+PASS: ld-elf/discard1
+PASS: ld-elf/discard2
+PASS: ld-elf/discard3
+PASS: ld-elf/dynsym1
+PASS: ld-elf/eh-frame-hdr
+PASS: ld-elf/eh5
+PASS: ld-elf/eh6
+PASS: ld-elf/empty
+PASS: ld-elf/empty2
+PASS: ld-elf/exclude3a
+PASS: ld-elf/exclude3b
+PASS: ld-elf/exclude3c
+PASS: ld-elf/expr1
+PASS: --extract-symbol test 1 (sections)
+PASS: --extract-symbol test 1 (symbols)
+PASS: --set-section-flags test 1 (sections)
+PASS: ld-elf/group1
+PASS: ld-elf/group10
+PASS: ld-elf/group2
+PASS: ld-elf/group3a
+PASS: ld-elf/group3b
+PASS: ld-elf/group4
+PASS: ld-elf/group5
+PASS: ld-elf/group6
+PASS: ld-elf/group7
+PASS: ld-elf/group8a
+PASS: ld-elf/group8b
+PASS: ld-elf/group9a
+PASS: ld-elf/group9b
+PASS: ld-elf/hash
+PASS: ld-elf/header
+PASS: ld-elf/init-fini-arrays
+PASS: ld-elf/linkonce1
+PASS: ld-elf/linkonce2
+PASS: ld-elf/linkoncerdiff
+PASS: ld-elf/loadaddr1
+PASS: ld-elf/loadaddr2
+PASS: ld-elf/loadaddr3a
+PASS: ld-elf/loadaddr3b
+PASS: ld-elf/local1
+PASS: ld-elf/maxpage1
+PASS: ld-elf/maxpage2
+PASS: ld-elf/maxpage3a
+PASS: ld-elf/merge
+PASS: ld-elf/merge2
+PASS: ld-elf/multibss1
+PASS: ld-elf/nobits-1
+PASS: ld-elf/noload-1
+PASS: ld-elf/noload-2
+PASS: ld-elf/noload-3
+PASS: ld-elf/note-1
+PASS: ld-elf/note-2
+PASS: ld-elf/orphan-region
+PASS: ld-elf/orphan
+PASS: ld-elf/orphan2
+PASS: ld-elf/orphan3
+PASS: ld-elf/orphan4
+PASS: ld-elf/overlay
+PASS: ld-elf/pr11304
+PASS: ld-elf/pr349
+PASS: relocatable with script
+PASS: ld-elf/seg
+PASS: ld-elf/stab
+PASS: ld-elf/textaddr1
+PASS: ld-elf/textaddr2
+PASS: ld-elf/textaddr3
+PASS: ld-elf/textaddr4
+PASS: ld-elf/textaddr5
+PASS: ld-elf/textaddr6
+PASS: ld-elf/textaddr7
+PASS: ld-elf/unknown
+PASS: ld-elf/unknown2
+PASS: ld-elf/warn1
+PASS: ld-elf/warn2
+PASS: Weak symbols in dynamic objects 1 (support)
+PASS: Weak symbols in dynamic objects 1 (main test)
+PASS: --gc-sections on tls variable
+PASS: preinit array
+PASS: init array
+PASS: fini array
+XFAIL: static preinit array
+XFAIL: static init array
+XFAIL: static fini array
Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
+PASS: ld link shared library
+PASS: ld export symbols from archive
+PASS: ld link shared library with --exclude-libs
+PASS: ld exclude symbols from archive - --exclude-libs libexclude
+PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
+PASS: ld exclude symbols from archive - --exclude-libs ALL
+PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
+PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
+PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
+PASS: read-only .eh_frame section
+PASS: read-only .gcc_except_table section
Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
-UNSUPPORTED: assignment of ELF sections to segments
+PASS: assignment of ELF sections to segments (same page)
+PASS: assignment of ELF sections to segments (adjacent pages)
+PASS: assignment of ELF sections to segments (disjoint pages)
Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
+PASS: ld-elf/64ksec-r
+PASS: ld-elf/64ksec
Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
+PASS: Build libfoo.so
+PASS: Build versioned libfoo.so
+PASS: Build libbar.so
+PASS: Build warn libbar.so
+PASS: Build hidden libbar.so
+PASS: Build protected libbar.so
+PASS: Build libbar.so with libfoo.so
+PASS: Build libar.so with versioned libfoo.so
+PASS: Build hidden libbar.so with libfoo.so
+PASS: Build hidden libar.so with versioned libfoo.so
+PASS: Build protected libbar.so with libfoo.so
+PASS: Build protected libbar.so with versioned libfoo.so
+PASS: Build libdl1.so
+PASS: Build libdl2a.so with --dynamic-list=dl2.list
+PASS: Build libdl2a.so with --dynamic-list=dl2a.list
+PASS: Build libdl2a.so with --dynamic-list-data
+PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
+PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
+PASS: Build libdl4a.so with --dynamic-list=dl4.list
+PASS: Build libdl4b.so with --dynamic-list-data
+PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
+PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
+PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
+PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
+PASS: Build libdl6a.so
+PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
+PASS: Build libdl6c.so with -Bsymbolic
+PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
+PASS: Build libdata1.so
+PASS: Build libcomm1.o
+PASS: Build libfunc1.so
+PASS: Build libpr9676-1.a
+PASS: Build libpr9676-2.a
+PASS: Build libpr9676-3.so
+PASS: Build libpr9676-4.so
+PASS: Build libpr9676-4a.so
+PASS: Build libpr9679.so
+PASS: Build libpr11138-1.so
+PASS: Build libpr11138-2.o
+PASS: Run normal with libfoo.so
+PASS: Run protected with libfoo.so
+PASS: Run hidden with libfoo.so
+PASS: Run normal with versioned libfoo.so
+PASS: Run warn with versioned libfoo.so
+PASS: Run protected with versioned libfoo.so
+PASS: Run hidden with versioned libfoo.so
+PASS: Run normal libbar.so with libfoo.so
+PASS: Run protected libbar.so with libfoo.so
+PASS: Run hidden libbar.so with libfoo.so
+PASS: Run normal libbar.so with versioned libfoo.so
+PASS: Run protected libbar.so with versioned libfoo.so
+PASS: Run hidden libbar.so with versioned libfoo.so
+PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
+PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
+PASS: Run with libdl2a.so
+PASS: Run with libdl2b.so
+PASS: Run with libdl2c.so
+PASS: Run with libdl4a.so
+PASS: Run with libdl4b.so
+PASS: Run with libdl4c.so
+PASS: Run with libdl4d.so
+PASS: Run with libdl4e.so
+PASS: Run with libdl4f.so
+PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
+PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
+PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
+PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
+PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
+PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
+PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
+PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
+PASS: Run dl6b2 with dlopen on libdl6b.so
+PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
+PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
+PASS: Run with libdata1.so
+PASS: Run with libfunc1.so comm1.o
+PASS: Run with comm1.o libfunc1.so
+PASS: Run with pr11138-2.c libpr11138-1.so
+PASS: Run with libpr11138-1.so pr11138-2.c
+PASS: Build libdl3a.so with --dynamic-list=dl3.list
+PASS: Build libdl3b.so with -Bsymbolic
+PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
+PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
+PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
+PASS: Run with libdl3a.so
+PASS: Run with libdl3c.so
+PASS: Run with libnew1a.so
+PASS: Run with libnew1b.so
Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
+PASS: tls_common
Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
+PASS: Build libwrap1a.so
+PASS: Build libwrap1b.so
+PASS: Run with libwrap1a.so and libwrap1b.so
+PASS: Run with libwrap1b.so and libwrap1a.so
Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
+PASS: --sort-common (descending)
+PASS: --sort-common (ascending)
+PASS: size/aligment change of common symbols (warning 1)
+PASS: size/aligment change of common symbols (change 1)
+PASS: size/aligment change of common symbols (warning 2)
+PASS: size/aligment change of common symbols (change 2)
Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
+PASS: vers1
+PASS: vers2
+PASS: vers3
+PASS: vers4
+PASS: vers4a
+PASS: vers4b
+PASS: vers5
+PASS: vers6
+PASS: vers7a
+PASS: vers7
+PASS: vers8
+PASS: vers9
+PASS: vers10
+PASS: vers11
+PASS: vers12
+PASS: ar with versioned solib
+PASS: vers14
+PASS: vers15
+PASS: vers16a
+PASS: vers16
+PASS: vers17
+PASS: vers18
+PASS: vers19
+PASS: vers20a
+PASS: vers20
+PASS: vers21
+PASS: vers22a
+PASS: vers22b
+PASS: vers22
+PASS: vers23a
+PASS: vers23b
+PASS: vers23c
+PASS: vers23d
+PASS: vers23
+PASS: vers24a
+PASS: vers24b
+PASS: vers24c
+PASS: vers25a
+PASS: vers25b1
+PASS: vers25b2
+PASS: vers26a
+PASS: vers26b1
+PASS: vers26b2
+PASS: vers26b3
+PASS: vers27a
+PASS: vers27b
+PASS: vers27c1
+PASS: vers27c2
+PASS: vers27d1
+PASS: vers27d2
+PASS: vers27d3
+PASS: vers27d4
+PASS: vers27d5
+PASS: vers28a
+PASS: vers28b
+PASS: vers28c
+PASS: vers29
+PASS: vers30
+PASS: vers31
+PASS: vers32a
+PASS: vers32b
+PASS: vers32c
+PASS: vers32d
Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
+PASS: ld-elfvsb/hidden0
+PASS: ld-elfvsb/hidden1
+PASS: ld-elfvsb/hidden2
+PASS: ld-elfvsb/internal0
+PASS: ld-elfvsb/internal1
+PASS: ld-elfvsb/protected0
+PASS: ld-elfvsb/protected1
+PASS: visibility (hidden) (non PIC)
+PASS: visibility (hidden) (non PIC, load offset)
+PASS: visibility (hidden)
+PASS: visibility (hidden) (PIC main, non PIC so)
+PASS: visibility (hidden) (PIC main)
+PASS: visibility (hidden_normal) (non PIC)
+PASS: visibility (hidden_normal) (non PIC, load offset)
+PASS: visibility (hidden_normal)
+PASS: visibility (hidden_normal) (PIC main, non PIC so)
+PASS: visibility (hidden_normal) (PIC main)
+PASS: visibility (hidden_undef) (non PIC)
+PASS: visibility (hidden_undef) (non PIC, load offset)
+PASS: visibility (hidden_undef)
+PASS: visibility (hidden_undef) (PIC main, non PIC so)
+PASS: visibility (hidden_undef) (PIC main)
+PASS: visibility (hidden_undef_def) (non PIC)
+PASS: visibility (hidden_undef_def) (non PIC, load offset)
+PASS: visibility (hidden_undef_def)
+PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
+PASS: visibility (hidden_undef_def) (PIC main)
+PASS: visibility (hidden_weak) (non PIC)
+PASS: visibility (hidden_weak) (non PIC, load offset)
+PASS: visibility (hidden_weak)
+PASS: visibility (hidden_weak) (PIC main, non PIC so)
+PASS: visibility (hidden_weak) (PIC main)
+PASS: visibility (protected) (non PIC)
+PASS: visibility (protected) (non PIC, load offset)
+PASS: visibility (protected)
+PASS: visibility (protected) (PIC main, non PIC so)
+PASS: visibility (protected) (PIC main)
+PASS: visibility (protected_undef) (non PIC)
+PASS: visibility (protected_undef) (non PIC, load offset)
+PASS: visibility (protected_undef)
+PASS: visibility (protected_undef) (PIC main, non PIC so)
+PASS: visibility (protected_undef) (PIC main)
+PASS: visibility (protected_undef_def) (non PIC)
+PASS: visibility (protected_undef_def) (non PIC, load offset)
+PASS: visibility (protected_undef_def)
+PASS: visibility (protected_undef_def) (PIC main, non PIC so)
+PASS: visibility (protected_undef_def) (PIC main)
+PASS: visibility (protected_weak) (non PIC)
+PASS: visibility (protected_weak) (non PIC, load offset)
+PASS: visibility (protected_weak)
+PASS: visibility (protected_weak) (PIC main, non PIC so)
+PASS: visibility (protected_weak) (PIC main)
+PASS: visibility (normal) (non PIC)
+PASS: visibility (normal) (non PIC, load offset)
+PASS: visibility (normal)
+PASS: visibility (normal) (PIC main, non PIC so)
+PASS: visibility (normal) (PIC main)
+PASS: common hidden symbol
+PASS: weak hidden symbol DSO last
+PASS: weak hidden symbol DSO first
Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
+PASS: ELF DSO weak func first
+PASS: ELF DSO weak func last
+PASS: ELF DSO weak func first DSO
+PASS: ELF DSO weak func last DSO
+PASS: ELF weak func first
+PASS: ELF weak func last
+XFAIL: ELF weak func first DSO
+XFAIL: ELF weak func last DSO
+PASS: ELF DSO weak data first
+PASS: ELF DSO weak data last
+PASS: ELF DSO weak data first DSO
+PASS: ELF DSO weak data last DSO
+PASS: ELF DSO weak data first DSO common
+PASS: ELF DSO weak data last DSO common
+PASS: ELF weak data first
+PASS: ELF weak data last
+PASS: ELF weak data first common
+PASS: ELF weak data last common
+XFAIL: ELF weak data first DSO
+XFAIL: ELF weak data last DSO
+XFAIL: ELF weak data first DSO common
+XFAIL: ELF weak data last DSO common
+PASS: ELF DSO small bar (size)
+PASS: ELF DSO foo with small bar (size)
+PASS: ELF DSO big bar (size)
+PASS: ELF weak size
+PASS: ld-elfweak/size2
Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
@@ -124,16 +571,85 @@ PASS: Check --gc-section/-q
PASS: Check --gc-section/-r/-e
PASS: Check --gc-section/-r/-u
PASS: --gc-sections -r without -e
+PASS: --gc-sections with note section
+PASS: --gc-sections with __start_
+PASS: --gc-sections with shared library
Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
+PASS: TLS -fpic -shared transitions
+PASS: TLS descriptor -fpic -shared transitions
+PASS: Helper shared library
+PASS: TLS -fpic and -fno-pic exec transitions
+PASS: TLS descriptor -fpic and -fno-pic exec transitions
+PASS: TLS -fno-pic -shared
+PASS: TLS with global dynamic and descriptors
+PASS: TLS in debug sections
+PASS: TLS @indntpoff with %eax
+PASS: Reloc section order
+PASS: Basic --emit-relocs support
+PASS: -z combreloc relocation sections
+PASS: TLS GD->LE transition
+PASS: TLS LD->LE transition
+PASS: TLS IE->LE transition
+PASS: Absolute non-overflowing relocs
+PASS: PCREL8 overflow
+PASS: PCREL16 overflow
+PASS: PCREL16 absolute reloc
+PASS: Invalid allocated section
+PASS: --warn-shared-textrel --fatal-warnings
+PASS: TLS GD->LE transition check
+PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
+PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
+PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
+PASS: TLS IE->LE transition check (R_386_TLS_IE)
+PASS: ld-i386/hidden1
+PASS: ld-i386/hidden2
+PASS: ld-i386/hidden3
+PASS: ld-i386/protected1
+PASS: ld-i386/protected2
+PASS: ld-i386/protected3
+PASS: TLS with PIE
+PASS: ld-i386/nogot1
+PASS: ld-i386/nogot2
+PASS: ld-i386/discarded1
+PASS: undefined symbol with compressed debug sections
Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
+PASS: strip (ifunc-4-x86)
+PASS: objcopy (ifunc-4-x86)
+PASS: strip (ifunc-4-local-x86)
+PASS: objcopy (ifunc-4-local-x86)
Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
+PASS: Building ifunc binaries
+PASS: Checking ifunc binaries
+PASS: ld-ifunc/ifunc-1-local-x86
+PASS: ld-ifunc/ifunc-1-x86
+PASS: ld-ifunc/ifunc-10-i386
+PASS: ld-ifunc/ifunc-11-i386
+PASS: ld-ifunc/ifunc-2-i386
+PASS: ld-ifunc/ifunc-2-local-i386
+PASS: ld-ifunc/ifunc-3a-x86
+PASS: ld-ifunc/ifunc-3b-x86
+PASS: ld-ifunc/ifunc-4-local-x86
+PASS: ld-ifunc/ifunc-4-x86
+PASS: ld-ifunc/ifunc-4a-x86
+PASS: ld-ifunc/ifunc-5a-i386
+PASS: ld-ifunc/ifunc-5a-local-i386
+PASS: ld-ifunc/ifunc-5b-i386
+PASS: ld-ifunc/ifunc-5b-local-i386
+PASS: ld-ifunc/ifunc-5r-local-i386
+PASS: ld-ifunc/ifunc-6a-i386
+PASS: ld-ifunc/ifunc-6b-i386
+PASS: ld-ifunc/ifunc-7a-i386
+PASS: ld-ifunc/ifunc-7b-i386
+PASS: ld-ifunc/ifunc-8-i386
+PASS: ld-ifunc/ifunc-9-x86
Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
PASS: -l: test (preparation)
PASS: -l: test
Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
+PASS: ld-linkonce/zeroehl32
Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
@@ -147,19 +663,23 @@ Running [...]/hurd/ld/testsuite/ld-pe/pe-run.exp ...
Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
+PASS: weak undefined
+PASS: weak undefined data
+PASS: missing entry symbol
Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
PASS: plugin API enabled
PASS: load plugin
PASS: fail plugin onload
-FAIL: fail plugin allsymbolsread
-FAIL: fail plugin cleanup
-FAIL: plugin all hooks
-FAIL: plugin claimfile lost symbol
-FAIL: plugin claimfile replace symbol
-FAIL: plugin claimfile resolve symbol
-FAIL: plugin claimfile replace file
-FAIL: plugin ignore lib
-FAIL: plugin claimfile replace lib
+PASS: fail plugin allsymbolsread
+PASS: fail plugin cleanup
+PASS: plugin all hooks
+PASS: plugin claimfile lost symbol
+PASS: plugin claimfile replace symbol
+PASS: plugin claimfile resolve symbol
+PASS: plugin claimfile replace file
+PASS: plugin set symbol visibility
+PASS: plugin ignore lib
+PASS: plugin claimfile replace lib
Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
@@ -169,6 +689,7 @@ PASS: ld-scripts/align2a
PASS: ld-scripts/align2b
PASS: ld-scripts/align2c
Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
+PASS: ALIGNOF
Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
PASS: ASSERT
Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
@@ -187,6 +708,7 @@ PASS: DEFINED (PRMS 5699)
PASS: ld-scripts/defined2
PASS: ld-scripts/defined3
Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
+PASS: dynamic sections
Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
PASS: ld-scripts/empty-address-1
PASS: ld-scripts/empty-address-2a
@@ -195,7 +717,9 @@ PASS: ld-scripts/empty-address-3a
PASS: ld-scripts/empty-address-3b
PASS: ld-scripts/empty-address-3c
Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
+PASS: ld-scripts/empty-aligned
Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
+PASS: ld-scripts/empty-orphan
Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
PASS: ld-scripts/expr1
Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
@@ -205,15 +729,41 @@ PASS: include-1
Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
PASS: map addresses
Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
+PASS: overlay size
+PASS: overlay size (map check)
Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
+PASS: PHDRS
Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
+PASS: PHDRS2
Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
+PASS: PHDRS headers
+PASS: PHDRS headers 3a
Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
PASS: ld-scripts/provide-1
PASS: ld-scripts/provide-2
XFAIL: ld-scripts/provide-3
Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
+PASS: rgn-at1
+PASS: rgn-at2
+PASS: rgn-at3
+PASS: rgn-at4
+PASS: rgn-at5
Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
+PASS: rgn-over1
+PASS: rgn-over1 (map check)
+PASS: rgn-over2
+PASS: rgn-over2 (map check)
+PASS: rgn-over3
+PASS: rgn-over3 (map check)
+PASS: rgn-over4
+PASS: rgn-over4 (map check)
+PASS: rgn-over5
+PASS: rgn-over5 (map check)
+PASS: rgn-over6
+PASS: rgn-over6 (map check)
+PASS: rgn-over7
+PASS: rgn-over7 (map check)
+PASS: rgn-over8
Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
PASS: script
PASS: MRI script
@@ -226,14 +776,40 @@ Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
PASS: ld-scripts/section-match-1
Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
PASS: ld-scripts/size-1
-UNSUPPORTED: size-2
+PASS: ld-scripts/size-2
Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
PASS: SIZEOF
Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
+PASS: --sort-section alignment
+PASS: SORT_BY_ALIGNMENT
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
+PASS: --sort-section name
+PASS: SORT_BY_NAME
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_NAME(SORT_BY_NAME())
+PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
+PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
+PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
+PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
-UNSUPPORTED: weak symbols
+PASS: weak symbols
Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
+PASS: Preserve default . = 0
+PASS: Preserve explicit . = 0
Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
+PASS: selective1
+PASS: selective2
+PASS: selective3
+XFAIL: selective4
+XFAIL: selective5
+XFAIL: selective6
Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
@@ -243,6 +819,12 @@ Running [...]/hurd/ld/testsuite/ld-sh/sh64/relax.exp ...
Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
+PASS: shared (non PIC)
+PASS: shared (non PIC, load offset)
+PASS: shared
+PASS: shared -Bsymbolic
+PASS: shared (PIC main, non PIC so)
+PASS: shared (PIC main)
Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
@@ -253,6 +835,8 @@ Running [...]/hurd/ld/testsuite/ld-undefined/entry.exp ...
PASS: Build libentry.a
PASS: --entry foo archive
PASS: --entry foo -u foo archive
+PASS: -shared --entry foo archive
+PASS: -shared --entry foo -u foo archive
PASS: --entry foo
PASS: --entry foo -u foo
PASS: --entry 0x0
@@ -261,7 +845,7 @@ PASS: undefined
PASS: undefined function
PASS: undefined line
Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
-UNSUPPORTED: weak undefined symbols
+PASS: weak undefined symbols
Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
@@ -276,14 +860,12 @@ Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
=== ld Summary ===
-# of expected passes 57
-# of unexpected failures 11
-# of expected failures 5
+# of expected passes 602
+# of expected failures 17
# of untested testcases 6
-# of unsupported tests 4
/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101024
-Test Run By tschwinge on Sun Oct 24 20:02:04 2010
+Test Run By tschwinge on Tue Oct 26 12:34:01 2010
Native configuration is i686-unknown-gnu0.3
=== gas tests ===
@@ -358,6 +940,15 @@ Running [...]/hurd/gas/testsuite/gas/arm/arm.exp ...
Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
+PASS: CFI on i386
+PASS: cfi cfi-diag-1
+PASS: CFI common 1
+PASS: CFI common 2
+PASS: CFI common 3
+PASS: CFI common 4
+PASS: CFI common 5
+PASS: CFI common 7
+PASS: CFI common 6
Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
@@ -366,6 +957,36 @@ Running [...]/hurd/gas/testsuite/gas/d10v/d10v.exp ...
Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
+PASS: elf ehopt0
+PASS: .file file names
+PASS: group section
+PASS: group section
+PASS: group section name
+PASS: group section with multiple sections of same name
+PASS: group section with multiple sections of same name
+PASS: automatic section group
+PASS: automatic section group
+PASS: .equ redefinitions (ELF)
+PASS: elf equate relocs
+PASS: Ill-formed directives
+PASS: elf section0
+PASS: elf section1
+PASS: elf section2 list
+PASS: note section
+PASS: label arithmetic with multiple same-name sections
+PASS: elf section5 list
+PASS: ELF struct
+PASS: .set with expression
+PASS: ELF symbol versioning
+PASS: .set with IFUNC
+PASS: elf type list
+PASS: elf section6
+PASS: elf section7
+PASS: section flags
+PASS: DWARF2 1
+PASS: DWARF2 2
+PASS: DWARF2 3
+PASS: Check bad section flag
Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
@@ -544,10 +1165,41 @@ PASS: i386 FSGSBase
PASS: i386 FSGSBase (Intel disassembly)
PASS: i386 RdRnd
PASS: i386 RdRnd (Intel disassembly)
+PASS: i386 reloc
+PASS: i386 jump16
+PASS: i386 white
+PASS: i386 pcrel reloc
+PASS: i386 abs reloc
+PASS: i386 intelpic
+PASS: i386 relax
+PASS: i386 relax 1
+PASS: i386 relax 3
+PASS: i386 gotpc
+PASS: i386 dynamic tls
+PASS: i386 pic tls
+PASS: i386 non-pic tls
+PASS: i386 .bss
+PASS: i386 relocs
+PASS: i386 reloc32
+PASS: x86 mixed mode relocs (32-bit object)
+PASS: i386 AT&T register names
+PASS: i386 intel-got
+PASS: i386 Intel register names
+PASS: i386 inval-equ-1
+PASS: i386 inval-equ-2
+PASS: i386 ifunc
+PASS: i386 l1om-inval
+PASS: i386 local PIC
+PASS: DWARF2 debugging information 1
+XFAIL: DWARF2 debugging information 2
PASS: x86 Intel expressions
PASS: string insn operands
PASS: i386 string-bad
PASS: i386 space1
+PASS: i386 list-1
+PASS: i386 list-2
+PASS: i386 list-3
+PASS: DWARF2 debugging information 1
Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
@@ -558,6 +1210,9 @@ Running [...]/hurd/gas/testsuite/gas/iq2000/odd-sdw.exp ...
Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
+PASS: lns lns-diag-1
+PASS: lns-duplicate
+PASS: lns-common-1
Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
@@ -626,6 +1281,11 @@ Running [...]/hurd/gas/testsuite/gas/sparc/mismatch.exp ...
Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
+PASS: symver symver0
+PASS: symver symver1
+PASS: symver symver2
+PASS: symver symver3
+PASS: symver symver6
Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
@@ -640,6 +1300,7 @@ Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
=== gas Summary ===
-# of expected passes 238
+# of expected passes 315
+# of expected failures 1
../as-new 2.20.51.20101024
diff --git a/open_issues/binutils_testsuite/sum_linux b/open_issues/binutils_testsuite/sum_linux
index 380fb096..d3cdede8 100644
--- a/open_issues/binutils_testsuite/sum_linux
+++ b/open_issues/binutils_testsuite/sum_linux
@@ -1,4 +1,4 @@
-Test Run By thomas on Sun Oct 24 20:00:29 2010
+Test Run By thomas on Tue Oct 26 09:50:30 2010
Native configuration is i686-pc-linux-gnu
=== binutils tests ===
@@ -109,7 +109,7 @@ Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
# of expected passes 79
# of unsupported tests 2
-Test Run By thomas on Sun Oct 24 20:00:50 2010
+Test Run By thomas on Tue Oct 26 09:50:51 2010
Native configuration is i686-pc-linux-gnu
=== ld tests ===
@@ -280,10 +280,10 @@ PASS: Weak symbols in dynamic objects 1 (support)
PASS: Weak symbols in dynamic objects 1 (main test)
PASS: --gc-sections on tls variable
PASS: preinit array
-PASS: static preinit array
PASS: init array
-PASS: static init array
PASS: fini array
+PASS: static preinit array
+PASS: static init array
PASS: static fini array
Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
PASS: ld link shared library
@@ -865,7 +865,7 @@ Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
# of untested testcases 6
/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101024
-Test Run By thomas on Sun Oct 24 20:00:34 2010
+Test Run By thomas on Tue Oct 26 09:50:33 2010
Native configuration is i686-pc-linux-gnu
=== gas tests ===
diff --git a/open_issues/io_system_binutils_ld_64ksec.mdwn b/open_issues/io_system_binutils_ld_64ksec.mdwn
index 16c2ae50..0484137a 100644
--- a/open_issues/io_system_binutils_ld_64ksec.mdwn
+++ b/open_issues/io_system_binutils_ld_64ksec.mdwn
@@ -13,8 +13,8 @@ License|/fdl]]."]]"""]]
This one may be considered as a testcase for I/O system optimization.
It is taken from the [[binutils_testsuite]], `ld/ld-elf/sec64k.exp`, where this
-test may occasionally trigger a timeout. It is extracted from
-cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24.
+test may occasionally [[trigger a timeout|binutils_testsuite#64ksec]]. It is
+extracted from cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24.
$ wget -O - http://www.gnu.org/software/hurd/open_issues/io_system_binutils_ld_64ksec/test.tar.xz | xz -d | tar -x
$ cd test/
diff --git a/source_repositories.mdwn b/source_repositories.mdwn
index da65ba49..3df44e74 100644
--- a/source_repositories.mdwn
+++ b/source_repositories.mdwn
@@ -227,7 +227,7 @@ like this:
$ git clone git://flubber.bddebian.com/~hurd-web/hurd-web
Another example, [[Thomas Schwinge|tschwinge]] has a checkout of
-[[hurd/libpthread]] in `~tschwinge/tmp/hurd/libpthread/`, the
+[[libpthread]] in `~tschwinge/tmp/hurd/libpthread/`, the
`~tschwinge/tmp/hurd/libpthread/.git/git-daemon-export-ok` file exists. If you
really need to, you can clone it like this:
@@ -238,6 +238,13 @@ really need to, you can clone it like this:
* web pages: git://flubber.bddebian.com/~hurd-web/hurd-web
+# Git repositories on grubber
+
+## List of Interesting Repositories
+
+ * [[binutils maintenance|binutils]]
+
+
# Debian Git repositories
IRC, #hurd, 2010-07-31
diff --git a/source_repositories/binutils.mdwn b/source_repositories/binutils.mdwn
new file mode 100644
index 00000000..bef7336f
--- /dev/null
+++ b/source_repositories/binutils.mdwn
@@ -0,0 +1,14 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+There is a repository for maintenance of [[/binutils]] for the Hurd's needs:
+`grubber:~tschwinge/tmp/binutils/git`
+
+This repository uses [[TopGit]].
diff --git a/topgit.mdwn b/topgit.mdwn
index 55ff5f54..df2b7266 100644
--- a/topgit.mdwn
+++ b/topgit.mdwn
@@ -21,3 +21,7 @@ License|/fdl]]."]]"""]]
Reviews*](http://blog.grogmaster.com/2008/12/topgit-means-never-having-to-wait-for.html)
* Christoph Egger: [*Git repository's and
topgit*](http://lists.debian.org/debian-devel-games/2008/11/msg00109.html)
+
+We're using this for some packages, where we're maintaining long-lived
+development branches, for example [[source_repositories/binutils]] or
+[[source_repositories/glibc]]. The latter one has usage examples, too.
--
cgit v1.2.3
From 2d08d718d5d9053e9839af1ac6d6f097ddb94ea6 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 26 Oct 2010 17:01:14 +0200
Subject: open_issues/ifunc: First binutils analysis.
---
open_issues/ifunc.mdwn | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/open_issues/ifunc.mdwn b/open_issues/ifunc.mdwn
index a3c30dc2..0ff1f7b5 100644
--- a/open_issues/ifunc.mdwn
+++ b/open_issues/ifunc.mdwn
@@ -15,3 +15,25 @@ target configure magic for [[/GCC]].
has a short summary about how to
use it from GCC.
+
+ * binutils
+
+ Already passes the ifunc testsuite bits for GAS, but notably for LD
+ (`ld/testsuite/ld-ifunc/ifunc.exp`), too, but that one contains a bunch of
+ stuff explicitly tailored towards Linux. For example, we get *OS/ABI: UNIX
+ - Linux*.
+
+ Most of the executables that the testsuite generates don't actually
+ execute. (Though, this is partly due to the [[static
+ issue|binutils_testsuite#static]].)
+
+ $ tmpdir/local_prog
+ ifunc working correctly
+ $ tmpdir/static_prog
+ Killed
+ $ tmpdir/dynamic_prog
+ tmpdir/dynamic_prog: error while loading shared libraries: ./tmpdir/libshared_ifunc.so: ELF file OS ABI invalid
+ $ tmpdir/static_nonifunc_prog
+ Killed
+ $ tmpdir/test-1
+ tmpdir/test-1: error while loading shared libraries: tmpdir/libshared_ifunc.so: ELF file OS ABI invalid
--
cgit v1.2.3
From a94d013031dc5c81266840a7eccb5cf5775bafff Mon Sep 17 00:00:00 2001
From: antrik
Date: Tue, 26 Oct 2010 18:35:54 +0200
Subject: news 2010-09: slight wording change
---
news/2010-09.mdwn | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/news/2010-09.mdwn b/news/2010-09.mdwn
index 1a6ec6fc..e6afd397 100644
--- a/news/2010-09.mdwn
+++ b/news/2010-09.mdwn
@@ -103,7 +103,7 @@ that](http://lists.gnu.org/archive/html/bug-hurd/2010-09/msg00021.html).
Manuel Menal [fixed a
bug](http://lists.gnu.org/archive/html/bug-hurd/2010-09/msg00061.html) that
occurred when sending file descriptors with `SCM_RIGHTS` over `PF_LOCAL`
-sockets. He also determined this bug to be the reason that the SSH daemon's
+sockets. He also identified this bug as the reason why the SSH daemon's
privilege separation was not working on GNU/Hurd -- now [this is
fixed](http://lists.gnu.org/archive/html/commit-hurd/2010-09/msg00036.html) and
you can use the default of `UsePrivilegeSeparation yes`.
--
cgit v1.2.3
From 02361abecdc0b96463270f56bd0a5edc0ba13ac3 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 26 Oct 2010 18:40:31 +0200
Subject: open_issues/binutils_testsuite: Update.
---
open_issues/binutils.mdwn | 2 +-
open_issues/binutils_testsuite.mdwn | 56 ++++++++++-----------
open_issues/binutils_testsuite/log_build-diff | 72 +++++++++++++--------------
open_issues/binutils_testsuite/sum_hurd | 19 ++++---
open_issues/binutils_testsuite/sum_linux | 21 ++++----
source_repositories/binutils.mdwn | 3 +-
6 files changed, 88 insertions(+), 85 deletions(-)
diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn
index 260e519e..e349a9f9 100644
--- a/open_issues/binutils.mdwn
+++ b/open_issues/binutils.mdwn
@@ -18,7 +18,7 @@ Here's what's to be done for maintaining GNU Binutils.
# Configuration
-Last checked against cdf7c161ebd4a934c9e705d33f5247fd52975612 (2010-10-24).
+Last checked against 40392cee5071a6914e7be3b61d2ded9804eaf2d1 (2010-10-26).
* Globally
diff --git a/open_issues/binutils_testsuite.mdwn b/open_issues/binutils_testsuite.mdwn
index f99078a4..62efaa97 100644
--- a/open_issues/binutils_testsuite.mdwn
+++ b/open_issues/binutils_testsuite.mdwn
@@ -11,11 +11,11 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_binutils]]
Here's a log of a binutils build and testsuite run; this is from
-6a55712fd7d37033555d206fea8baf6ea299efae (2010-10-26)
+2c95694f72ad823d74180f939f25ade999309055 (2010-10-26)
[[sources|source_repositories/binutils]], run on kepler.SCHWINGE and grubber.
$ export LC_ALL=C
- $ ../hurd/configure 2>&1 | tee log_build
+ $ ../hurd/configure --prefix="$PWD".install 2>&1 | tee log_build
[...]
$ make SHELL=/bin/bash 2>&1 | tee log_build_
[...]
@@ -44,12 +44,12 @@ On grubber, this takes roughly 45 minutes.
Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
$ diff -u -F ^Running open_issues/binutils_testsuite/sum_linux open_issues/binutils_testsuite/sum_hurd
- --- open_issues/binutils_testsuite/sum_linux 2010-10-26 09:54:36.000000000 +0200
- +++ open_issues/binutils_testsuite/sum_hurd 2010-10-26 14:42:26.000000000 +0200
+ --- open_issues/binutils_testsuite/sum_linux 2010-10-26 17:00:00.000000000 +0200
+ +++ open_issues/binutils_testsuite/sum_hurd 2010-10-26 18:38:34.000000000 +0200
@@ -1,5 +1,5 @@
- -Test Run By thomas on Tue Oct 26 09:50:30 2010
+ -Test Run By thomas on Tue Oct 26 16:53:56 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Tue Oct 26 12:32:17 2010
+ +Test Run By tschwinge on Tue Oct 26 17:42:05 2010
+Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -58,14 +58,14 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
# of expected passes 79
# of unsupported tests 2
- -Test Run By thomas on Tue Oct 26 09:50:51 2010
+ -Test Run By thomas on Tue Oct 26 16:54:17 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Tue Oct 26 12:39:07 2010
+ +Test Run By tschwinge on Tue Oct 26 17:51:14 2010
+Native configuration is i686-unknown-gnu0.3
=== ld tests ===
- @@ -282,9 +282,9 @@ Running [...]/hurd/ld/testsuite/ld-elf/e
+ @@ -283,9 +283,9 @@ Running [...]/hurd/ld/testsuite/ld-elf/e
PASS: preinit array
PASS: init array
PASS: fini array
@@ -78,7 +78,17 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
PASS: ld link shared library
PASS: ld export symbols from archive
- @@ -540,8 +540,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ @@ -305,7 +305,8 @@ Running [...]/hurd/ld/testsuite/ld-elf/s
+ PASS: assignment of ELF sections to segments (disjoint pages)
+ Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
+ PASS: ld-elf/64ksec-r
+ -PASS: ld-elf/64ksec
+ +WARNING: program timed out.
+ +FAIL: ld-elf/64ksec
+ Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
+ PASS: Build libfoo.so
+ PASS: Build versioned libfoo.so
+ @@ -541,8 +542,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
PASS: ELF DSO weak func last DSO
PASS: ELF weak func first
PASS: ELF weak func last
@@ -89,7 +99,7 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
PASS: ELF DSO weak data first
PASS: ELF DSO weak data last
PASS: ELF DSO weak data first DSO
- @@ -552,10 +552,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ @@ -553,10 +554,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
PASS: ELF weak data last
PASS: ELF weak data first common
PASS: ELF weak data last common
@@ -104,33 +114,21 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
PASS: ELF DSO small bar (size)
PASS: ELF DSO foo with small bar (size)
PASS: ELF DSO big bar (size)
- @@ -768,10 +768,10 @@ Running [...]/hurd/ld/testsuite/ld-scrip
- PASS: script
- PASS: MRI script
- PASS: MEMORY
- -XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
- -XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
- XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
- +XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
- XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
- +XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
- Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
- PASS: ld-scripts/section-match-1
- Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
- @@ -860,13 +860,13 @@ Running [...]/hurd/ld/testsuite/ld-xtens
+ @@ -861,13 +862,14 @@ Running [...]/hurd/ld/testsuite/ld-xtens
=== ld Summary ===
- -# of expected passes 611
+ -# of expected passes 612
-# of expected failures 8
+# of expected passes 602
+ +# of unexpected failures 1
+# of expected failures 17
# of untested testcases 6
- /media/data[...]/hurd.build/ld/ld-new 2.20.51.20101024
+ /media/data[...]/hurd.build/ld/ld-new 2.20.51.20101026
- -Test Run By thomas on Tue Oct 26 09:50:33 2010
+ -Test Run By thomas on Tue Oct 26 16:54:00 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Tue Oct 26 12:34:01 2010
+ +Test Run By tschwinge on Tue Oct 26 17:43:55 2010
+Native configuration is i686-unknown-gnu0.3
=== gas tests ===
diff --git a/open_issues/binutils_testsuite/log_build-diff b/open_issues/binutils_testsuite/log_build-diff
index a63f1aed..b1985762 100644
--- a/open_issues/binutils_testsuite/log_build-diff
+++ b/open_issues/binutils_testsuite/log_build-diff
@@ -1,5 +1,5 @@
---- /dev/fd/63 2010-10-26 10:07:58.598668616 +0200
-+++ /dev/fd/62 2010-10-26 10:07:58.598668616 +0200
+--- /dev/fd/63 2010-10-26 17:41:28.970668617 +0200
++++ /dev/fd/62 2010-10-26 17:41:28.970668617 +0200
@@ -1,6 +1,6 @@
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-pc-linux-gnu
@@ -198,35 +198,35 @@
configure: updating cache ./config.cache
configure: creating ./config.status
@@ -1214,36 +1214,15 @@
- /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../hurd/bfd/dwarf1.c
- libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../hurd/bfd/dwarf1.c -o dwarf1.o
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../hurd/bfd/dwarf1.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../hurd/bfd/dwarf1.c -o dwarf1.o
mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c -o i386linux.lo ../../hurd/bfd/i386linux.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c ../../hurd/bfd/i386linux.c -o i386linux.o
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c -o i386linux.lo ../../hurd/bfd/i386linux.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c ../../hurd/bfd/i386linux.c -o i386linux.o
-mv -f .deps/i386linux.Tpo .deps/i386linux.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c -o aout32.lo ../../hurd/bfd/aout32.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c ../../hurd/bfd/aout32.c -o aout32.o
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c -o aout32.lo ../../hurd/bfd/aout32.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c ../../hurd/bfd/aout32.c -o aout32.o
-mv -f .deps/aout32.Tpo .deps/aout32.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c -o pei-i386.lo ../../hurd/bfd/pei-i386.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c ../../hurd/bfd/pei-i386.c -o pei-i386.o
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c -o pei-i386.lo ../../hurd/bfd/pei-i386.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c ../../hurd/bfd/pei-i386.c -o pei-i386.o
-mv -f .deps/pei-i386.Tpo .deps/pei-i386.Plo
-rm -f peigen.c
-sed -e s/XX/pe/g < ../../hurd/bfd/peXXigen.c > peigen.new
-mv -f peigen.new peigen.c
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c -o peigen.lo peigen.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c peigen.c -o peigen.o
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c -o peigen.lo peigen.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c peigen.c -o peigen.o
-mv -f .deps/peigen.Tpo .deps/peigen.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c -o cofflink.lo ../../hurd/bfd/cofflink.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c ../../hurd/bfd/cofflink.c -o cofflink.o
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c -o cofflink.lo ../../hurd/bfd/cofflink.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c ../../hurd/bfd/cofflink.c -o cofflink.o
-mv -f .deps/cofflink.Tpo .deps/cofflink.Plo
- /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c -o elf32-gen.lo ../../hurd/bfd/elf32-gen.c
- libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c ../../hurd/bfd/elf32-gen.c -o elf32-gen.o
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c -o elf32-gen.lo ../../hurd/bfd/elf32-gen.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c ../../hurd/bfd/elf32-gen.c -o elf32-gen.o
mv -f .deps/elf32-gen.Tpo .deps/elf32-gen.Plo
- /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c -o cpu-i386.lo ../../hurd/bfd/cpu-i386.c
- libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c ../../hurd/bfd/cpu-i386.c -o cpu-i386.o
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c -o cpu-i386.lo ../../hurd/bfd/cpu-i386.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c ../../hurd/bfd/cpu-i386.c -o cpu-i386.o
mv -f .deps/cpu-i386.Tpo .deps/cpu-i386.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"/usr/local/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c -o trad-core.lo ../../hurd/bfd/trad-core.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"/usr/local/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c ../../hurd/bfd/trad-core.c -o trad-core.o
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c -o trad-core.lo ../../hurd/bfd/trad-core.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c ../../hurd/bfd/trad-core.c -o trad-core.o
-mv -f .deps/trad-core.Tpo .deps/trad-core.Plo
rm -f tofiles
f=""; \
@@ -238,7 +238,7 @@
@@ -1253,7 +1232,7 @@
/bin/bash ../../hurd/bfd/../move-if-change tofiles ofiles
touch stamp-ofiles
- /bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -release `cat libtool-soversion` -o libbfd.la -rpath /usr/local/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles` -lz
+ /bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -release `cat libtool-soversion` -o libbfd.la -rpath [...].install/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles` -lz
-libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o i386linux.o aout32.o pei-i386.o peigen.o cofflink.o elf32-gen.o cpu-i386.o trad-core.o
+libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o elf32-gen.o cpu-i386.o
libtool: link: ranlib .libs/libbfd.a
@@ -581,34 +581,34 @@
done;\
@@ -2642,8 +2621,8 @@
mv -f .deps/ldctor.Tpo .deps/ldctor.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
-DDEFAULT_EMULATION='"elf_i386"' \
-- -DBINDIR='"/usr/local/bin"' -DTOOLBINDIR='"/usr/local/i686-pc-linux-gnu/bin"' \
+- -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-pc-linux-gnu/bin"' \
- -DTARGET='"i686-pc-linux-gnu"' -DTARGET_SYSTEM_ROOT=\"\" \
-+ -DBINDIR='"/usr/local/bin"' -DTOOLBINDIR='"/usr/local/i686-unknown-gnu0.3/bin"' \
++ -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-unknown-gnu0.3/bin"' \
+ -DTARGET='"i686-unknown-gnu0.3"' -DTARGET_SYSTEM_ROOT=\"\" \
../../hurd/ld/ldmain.c
mv -f .deps/ldmain.Tpo .deps/ldmain.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldwrite.o -MD -MP -MF .deps/ldwrite.Tpo -c -o ldwrite.o ../../hurd/ld/ldwrite.c
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldwrite.o -MD -MP -MF .deps/ldwrite.Tpo -c -o ldwrite.o ../../hurd/ld/ldwrite.c
@@ -2657,7 +2636,7 @@
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmisc.o -MD -MP -MF .deps/ldmisc.Tpo -c -o ldmisc.o ../../hurd/ld/ldmisc.c
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmisc.o -MD -MP -MF .deps/ldmisc.Tpo -c -o ldmisc.o ../../hurd/ld/ldmisc.c
mv -f .deps/ldmisc.Tpo .deps/ldmisc.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
-- -DSCRIPTDIR='"/usr/local/i686-pc-linux-gnu/lib"' -DBINDIR='"/usr/local/bin"' -DTOOLBINDIR='"/usr/local/i686-pc-linux-gnu/bin"' \
-+ -DSCRIPTDIR='"/usr/local/i686-unknown-gnu0.3/lib"' -DBINDIR='"/usr/local/bin"' -DTOOLBINDIR='"/usr/local/i686-unknown-gnu0.3/bin"' \
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
+- -DSCRIPTDIR='"[...].install/i686-pc-linux-gnu/lib"' -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-pc-linux-gnu/bin"' \
++ -DSCRIPTDIR='"[...].install/i686-unknown-gnu0.3/lib"' -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-unknown-gnu0.3/bin"' \
../../hurd/ld/ldfile.c
mv -f .deps/ldfile.Tpo .deps/ldfile.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldcref.o -MD -MP -MF .deps/ldcref.Tpo -c -o ldcref.o ../../hurd/ld/ldcref.c
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldcref.o -MD -MP -MF .deps/ldcref.Tpo -c -o ldcref.o ../../hurd/ld/ldcref.c
@@ -2665,14 +2644,11 @@
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../hurd/ld/plugin.c
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../hurd/ld/plugin.c
mv -f .deps/plugin.Tpo .deps/plugin.Po
cp ../../hurd/ld/emultempl/astring.sed stringify.sed
--LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "/usr/local/lib" "/usr/local" "/usr/local" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-pc-linux-gnu"
-+LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "/usr/local/lib" "/usr/local" "/usr/local" i686-unknown-gnu0.3 i686-unknown-gnu0.3 i686-unknown-gnu0.3 "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-unknown-gnu0.3"
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT eelf_i386.o -MD -MP -MF .deps/eelf_i386.Tpo -c -o eelf_i386.o eelf_i386.c
+-LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-pc-linux-gnu"
++LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-unknown-gnu0.3 i686-unknown-gnu0.3 i686-unknown-gnu0.3 "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-unknown-gnu0.3"
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT eelf_i386.o -MD -MP -MF .deps/eelf_i386.Tpo -c -o eelf_i386.o eelf_i386.c
mv -f .deps/eelf_i386.Tpo .deps/eelf_i386.Po
--LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "/usr/local/lib" "/usr/local" "/usr/local" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no i386linux "i686-pc-linux-gnuaout"
--gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"/usr/local/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ei386linux.o -MD -MP -MF .deps/ei386linux.Tpo -c -o ei386linux.o ei386linux.c
+-LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no i386linux "i686-pc-linux-gnuaout"
+-gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ei386linux.o -MD -MP -MF .deps/ei386linux.Tpo -c -o ei386linux.o ei386linux.c
-mv -f .deps/ei386linux.Tpo .deps/ei386linux.Po
-/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
-libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
diff --git a/open_issues/binutils_testsuite/sum_hurd b/open_issues/binutils_testsuite/sum_hurd
index b6301e5a..3ae2d198 100644
--- a/open_issues/binutils_testsuite/sum_hurd
+++ b/open_issues/binutils_testsuite/sum_hurd
@@ -1,4 +1,4 @@
-Test Run By tschwinge on Tue Oct 26 12:32:17 2010
+Test Run By tschwinge on Tue Oct 26 17:42:05 2010
Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -109,7 +109,7 @@ Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
# of expected passes 79
# of unsupported tests 2
-Test Run By tschwinge on Tue Oct 26 12:39:07 2010
+Test Run By tschwinge on Tue Oct 26 17:51:14 2010
Native configuration is i686-unknown-gnu0.3
=== ld tests ===
@@ -142,6 +142,7 @@ Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
PASS: ld-discard/extern
PASS: ld-discard/start
PASS: ld-discard/static
+PASS: ld-discard/zero-range
PASS: ld-discard/zero-rel
Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
PASS: Run with -paudit.so
@@ -304,7 +305,8 @@ PASS: assignment of ELF sections to segments (adjacent pages)
PASS: assignment of ELF sections to segments (disjoint pages)
Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
PASS: ld-elf/64ksec-r
-PASS: ld-elf/64ksec
+WARNING: program timed out.
+FAIL: ld-elf/64ksec
Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
PASS: Build libfoo.so
PASS: Build versioned libfoo.so
@@ -861,11 +863,12 @@ Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
=== ld Summary ===
# of expected passes 602
+# of unexpected failures 1
# of expected failures 17
# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101024
+/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101026
-Test Run By tschwinge on Tue Oct 26 12:34:01 2010
+Test Run By tschwinge on Tue Oct 26 17:43:55 2010
Native configuration is i686-unknown-gnu0.3
=== gas tests ===
@@ -1030,6 +1033,8 @@ PASS: i386 prefix
PASS: i386 amd
PASS: i386 katmai
PASS: i386 jump
+PASS: i386 relax 1
+PASS: i386 relax 3
PASS: i386 ssemmx2
PASS: i386 sse2
PASS: i386 sub
@@ -1172,8 +1177,6 @@ PASS: i386 pcrel reloc
PASS: i386 abs reloc
PASS: i386 intelpic
PASS: i386 relax
-PASS: i386 relax 1
-PASS: i386 relax 3
PASS: i386 gotpc
PASS: i386 dynamic tls
PASS: i386 pic tls
@@ -1302,5 +1305,5 @@ Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
# of expected passes 315
# of expected failures 1
-../as-new 2.20.51.20101024
+../as-new 2.20.51.20101026
diff --git a/open_issues/binutils_testsuite/sum_linux b/open_issues/binutils_testsuite/sum_linux
index d3cdede8..6eddaf99 100644
--- a/open_issues/binutils_testsuite/sum_linux
+++ b/open_issues/binutils_testsuite/sum_linux
@@ -1,4 +1,4 @@
-Test Run By thomas on Tue Oct 26 09:50:30 2010
+Test Run By thomas on Tue Oct 26 16:53:56 2010
Native configuration is i686-pc-linux-gnu
=== binutils tests ===
@@ -109,7 +109,7 @@ Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
# of expected passes 79
# of unsupported tests 2
-Test Run By thomas on Tue Oct 26 09:50:51 2010
+Test Run By thomas on Tue Oct 26 16:54:17 2010
Native configuration is i686-pc-linux-gnu
=== ld tests ===
@@ -142,6 +142,7 @@ Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
PASS: ld-discard/extern
PASS: ld-discard/start
PASS: ld-discard/static
+PASS: ld-discard/zero-range
PASS: ld-discard/zero-rel
Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
PASS: Run with -paudit.so
@@ -768,10 +769,10 @@ Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
PASS: script
PASS: MRI script
PASS: MEMORY
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
PASS: ld-scripts/section-match-1
Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
@@ -860,12 +861,12 @@ Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
=== ld Summary ===
-# of expected passes 611
+# of expected passes 612
# of expected failures 8
# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101024
+/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101026
-Test Run By thomas on Tue Oct 26 09:50:33 2010
+Test Run By thomas on Tue Oct 26 16:54:00 2010
Native configuration is i686-pc-linux-gnu
=== gas tests ===
@@ -1030,6 +1031,8 @@ PASS: i386 prefix
PASS: i386 amd
PASS: i386 katmai
PASS: i386 jump
+PASS: i386 relax 1
+PASS: i386 relax 3
PASS: i386 ssemmx2
PASS: i386 sse2
PASS: i386 sub
@@ -1172,8 +1175,6 @@ PASS: i386 pcrel reloc
PASS: i386 abs reloc
PASS: i386 intelpic
PASS: i386 relax
-PASS: i386 relax 1
-PASS: i386 relax 3
PASS: i386 gotpc
PASS: i386 dynamic tls
PASS: i386 pic tls
@@ -1302,5 +1303,5 @@ Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
# of expected passes 315
# of expected failures 1
-../as-new 2.20.51.20101024
+../as-new 2.20.51.20101026
diff --git a/source_repositories/binutils.mdwn b/source_repositories/binutils.mdwn
index bef7336f..87c91adf 100644
--- a/source_repositories/binutils.mdwn
+++ b/source_repositories/binutils.mdwn
@@ -11,4 +11,5 @@ License|/fdl]]."]]"""]]
There is a repository for maintenance of [[/binutils]] for the Hurd's needs:
`grubber:~tschwinge/tmp/binutils/git`
-This repository uses [[TopGit]].
+This repository uses [[TopGit]] and is based on
+.
--
cgit v1.2.3
From 2aa14f3d428497f5c47c9a13fb71d2dc5ed54943 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 27 Oct 2010 14:41:57 +0200
Subject: user/tschwinge: Fix link, change email address.
---
user/tschwinge.mdwn | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/user/tschwinge.mdwn b/user/tschwinge.mdwn
index 2c75292b..eea5480c 100644
--- a/user/tschwinge.mdwn
+++ b/user/tschwinge.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2008, 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -10,8 +10,8 @@ is included in the section entitled
[[!meta title="Thomas Schwinge"]]
-
+
Germany
-
+
--
cgit v1.2.3
From b7daa22561cbd9285f431f097a71cc66bec1dc34 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 27 Oct 2010 16:49:49 +0200
Subject: purify_html: Rewritten in order to maintain the files' original
timestamps unless they're actually modified.
---
purify_html | 42 +++++++++++++++++++++++++++++++++---------
1 file changed, 33 insertions(+), 9 deletions(-)
diff --git a/purify_html b/purify_html
index 4cf582af..9c3a7862 100755
--- a/purify_html
+++ b/purify_html
@@ -1,15 +1,39 @@
#!/bin/sh
-# Mangle the rendered files to cause fewer differernces upon re-rendering.
+# Mangle the rendered files to cause fewer differences after re-rendering.
-# Written by Thomas Schwinge .
+# Written by Thomas Schwinge .
# Un-mangle mailto links: convert HTML character entities to real characters.
find ./ -name \*.html -print0 \
- | xargs -0 \
- perl -p -i -l -e \
- 'BEGIN { $replacing = 0; }
- # The replacing-toggling logic is a bit rough, but so is life.
- $replacing = 1 if /$file.new") or die "open: $file: $!";
+ select(OUT) or die "select: $file: $!";
+ }
+
+ while (<>) {
+ # The replacing-toggling logic is a bit rough, but so is life.
+ $replacing = 1 if /
Date: Wed, 27 Oct 2010 17:08:26 +0200
Subject: open_issues/binutils_testsuite: Add forgotten closing HTML tags.
---
open_issues/binutils_testsuite.mdwn | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/open_issues/binutils_testsuite.mdwn b/open_issues/binutils_testsuite.mdwn
index 62efaa97..dc4fe7ec 100644
--- a/open_issues/binutils_testsuite.mdwn
+++ b/open_issues/binutils_testsuite.mdwn
@@ -136,20 +136,20 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
# Analysis
-## `FAIL: static [...]`
+## `FAIL: static [...]`
The testsuite isn't prepared for using `crt0.o` instead of `crt1.o` depending
on whether a static or dynamic executable is created. Documented in
`ld/configure.host`. Perhaps we should finally rewrite this messy code in
glibc to avoid this difference...
-## `FAIL: ld-elf/64ksec`
+## `FAIL: ld-elf/64ksec`
On the idle grubber, this one takes a few minutes wall time to complete
successfully ([[I/O system weakness|io_system_binutils_ld_64ksec]], so assuming
some system load variation, the testsuite's timeout may trigger.
-## `FAIL: ELF weak [...]`
+## `FAIL: ELF weak [...]`
[[I|tschwinge]] suppose this is due to us having an override w.r.t. weak symbol
handling in glibc, needed for our external [[libpthread]]. TODO: document
--
cgit v1.2.3
From 33809298260e49428610a2000396494d6d30cf1b Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 27 Oct 2010 17:59:23 +0200
Subject: hurd/building/cross-compiling: Tag as stable_URL.
Huh, this is indeed linked to from external pages. :-)
---
hurd/building/cross-compiling.mdwn | 2 ++
1 file changed, 2 insertions(+)
diff --git a/hurd/building/cross-compiling.mdwn b/hurd/building/cross-compiling.mdwn
index 1ecfd0bd..73c19b4d 100644
--- a/hurd/building/cross-compiling.mdwn
+++ b/hurd/building/cross-compiling.mdwn
@@ -8,4 +8,6 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
+[[!tag stable_URL]]
+
[[!meta redir=/toolchain/cross-gnu]]
--
cgit v1.2.3
From 803bdc6b58f4d7718aba5a93e3b8a9d0b119fe02 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Thu, 28 Oct 2010 00:45:59 +0200
Subject: open_issues/binutils: Update.
---
open_issues/binutils.mdwn | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn
index e349a9f9..cce56e63 100644
--- a/open_issues/binutils.mdwn
+++ b/open_issues/binutils.mdwn
@@ -18,7 +18,7 @@ Here's what's to be done for maintaining GNU Binutils.
# Configuration
-Last checked against 40392cee5071a6914e7be3b61d2ded9804eaf2d1 (2010-10-26).
+Last checked against ae7a5b75f18b0ad681f013596ffc17789939c415 (2010-10-27).
* Globally
--
cgit v1.2.3
From 57e53f663b3b2acd716a37c4a15f033b2ff0c34e Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Thu, 28 Oct 2010 00:46:15 +0200
Subject: open_issues/ext2fs_deadlock: Samuel had a quick look.
---
open_issues/ext2fs_deadlock.mdwn | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/open_issues/ext2fs_deadlock.mdwn b/open_issues/ext2fs_deadlock.mdwn
index 4c5cdb24..369875fe 100644
--- a/open_issues/ext2fs_deadlock.mdwn
+++ b/open_issues/ext2fs_deadlock.mdwn
@@ -43,3 +43,13 @@ accessing it, no matter whether noninvasive mode or not. (Didn't have time to
pull the information out of the process' memory manually (how to do that,
anyways?), and also didn't have time to continue with debugging GDB itself, but
this sounds like a [[!taglink open_issue_gdb]]...)
+
+---
+
+IRC, #hurd, 2010-10-27
+
+ thread 8 hung on ports_begin_rpc
+ that's probably where one could investigated first
+ yes, a lot of threads are hung on that
+ You mean 0x10b9488, right?
+ yes
--
cgit v1.2.3
From 713fec605aeb6076188ae6d803f4ec3114a574bf Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 30 Oct 2010 17:03:27 +0200
Subject: open_issues/binutils: Update.
---
open_issues/binutils.mdwn | 2 +-
open_issues/binutils_testsuite.mdwn | 40 ++++++++++++++-------------
open_issues/binutils_testsuite/log_build-diff | 4 +--
open_issues/binutils_testsuite/sum_hurd | 37 ++++++++++++++++---------
open_issues/binutils_testsuite/sum_linux | 37 ++++++++++++++++---------
5 files changed, 72 insertions(+), 48 deletions(-)
diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn
index cce56e63..481c1dec 100644
--- a/open_issues/binutils.mdwn
+++ b/open_issues/binutils.mdwn
@@ -18,7 +18,7 @@ Here's what's to be done for maintaining GNU Binutils.
# Configuration
-Last checked against ae7a5b75f18b0ad681f013596ffc17789939c415 (2010-10-27).
+Last checked against e83f2cdb9a77350370b96952e54bb785d1c84f4e (2010-10-30).
* Globally
diff --git a/open_issues/binutils_testsuite.mdwn b/open_issues/binutils_testsuite.mdwn
index dc4fe7ec..82f63894 100644
--- a/open_issues/binutils_testsuite.mdwn
+++ b/open_issues/binutils_testsuite.mdwn
@@ -11,7 +11,7 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_binutils]]
Here's a log of a binutils build and testsuite run; this is from
-2c95694f72ad823d74180f939f25ade999309055 (2010-10-26)
+e4b8d2a57f640a1095012e00975612d939c8a8b7 (2010-10-30)
[[sources|source_repositories/binutils]], run on kepler.SCHWINGE and grubber.
$ export LC_ALL=C
@@ -23,6 +23,8 @@ Here's a log of a binutils build and testsuite run; this is from
(kepler.SCHWINGE defaults to using /bin/sh for libtool, grubber to /bin/bash;
thus harmonized.)
+On grubber, this takes roughly 50 minutes.
+
x86 GNU/Linux and GNU/Hurd's configurations are [[slightly
different|binutils]], thus mask out most of the differences that are due to
GNU/Linux defining `-DTRAD_CORE`, `-DHAVE_i386linux_vec`
@@ -44,28 +46,28 @@ On grubber, this takes roughly 45 minutes.
Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
$ diff -u -F ^Running open_issues/binutils_testsuite/sum_linux open_issues/binutils_testsuite/sum_hurd
- --- open_issues/binutils_testsuite/sum_linux 2010-10-26 17:00:00.000000000 +0200
- +++ open_issues/binutils_testsuite/sum_hurd 2010-10-26 18:38:34.000000000 +0200
+ --- open_issues/binutils_testsuite/sum_linux 2010-10-30 15:04:52.000000000 +0200
+ +++ open_issues/binutils_testsuite/sum_hurd 2010-10-30 16:58:27.000000000 +0200
@@ -1,5 +1,5 @@
- -Test Run By thomas on Tue Oct 26 16:53:56 2010
+ -Test Run By thomas on Sat Oct 30 15:00:17 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Tue Oct 26 17:42:05 2010
+ +Test Run By tschwinge on Sat Oct 30 16:11:35 2010
+Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
- @@ -109,8 +109,8 @@ Running [...]/hurd/binutils/testsuite/bi
+ @@ -114,8 +114,8 @@ Running [...]/hurd/binutils/testsuite/bi
- # of expected passes 79
+ # of expected passes 83
# of unsupported tests 2
- -Test Run By thomas on Tue Oct 26 16:54:17 2010
+ -Test Run By thomas on Sat Oct 30 15:00:43 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Tue Oct 26 17:51:14 2010
+ +Test Run By tschwinge on Sat Oct 30 16:19:25 2010
+Native configuration is i686-unknown-gnu0.3
=== ld tests ===
- @@ -283,9 +283,9 @@ Running [...]/hurd/ld/testsuite/ld-elf/e
+ @@ -295,9 +295,9 @@ Running [...]/hurd/ld/testsuite/ld-elf/e
PASS: preinit array
PASS: init array
PASS: fini array
@@ -78,7 +80,7 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
PASS: ld link shared library
PASS: ld export symbols from archive
- @@ -305,7 +305,8 @@ Running [...]/hurd/ld/testsuite/ld-elf/s
+ @@ -317,7 +317,8 @@ Running [...]/hurd/ld/testsuite/ld-elf/s
PASS: assignment of ELF sections to segments (disjoint pages)
Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
PASS: ld-elf/64ksec-r
@@ -88,7 +90,7 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
PASS: Build libfoo.so
PASS: Build versioned libfoo.so
- @@ -541,8 +542,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ @@ -553,8 +554,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
PASS: ELF DSO weak func last DSO
PASS: ELF weak func first
PASS: ELF weak func last
@@ -99,7 +101,7 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
PASS: ELF DSO weak data first
PASS: ELF DSO weak data last
PASS: ELF DSO weak data first DSO
- @@ -553,10 +554,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ @@ -565,10 +566,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
PASS: ELF weak data last
PASS: ELF weak data first common
PASS: ELF weak data last common
@@ -114,21 +116,21 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
PASS: ELF DSO small bar (size)
PASS: ELF DSO foo with small bar (size)
PASS: ELF DSO big bar (size)
- @@ -861,13 +862,14 @@ Running [...]/hurd/ld/testsuite/ld-xtens
+ @@ -873,13 +874,14 @@ Running [...]/hurd/ld/testsuite/ld-xtens
=== ld Summary ===
- -# of expected passes 612
+ -# of expected passes 618
-# of expected failures 8
- +# of expected passes 602
+ +# of expected passes 608
+# of unexpected failures 1
+# of expected failures 17
# of untested testcases 6
- /media/data[...]/hurd.build/ld/ld-new 2.20.51.20101026
+ /media/data[...]/hurd.build/ld/ld-new 2.20.51.20101030
- -Test Run By thomas on Tue Oct 26 16:54:00 2010
+ -Test Run By thomas on Sat Oct 30 15:00:23 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Tue Oct 26 17:43:55 2010
+ +Test Run By tschwinge on Sat Oct 30 16:13:29 2010
+Native configuration is i686-unknown-gnu0.3
=== gas tests ===
diff --git a/open_issues/binutils_testsuite/log_build-diff b/open_issues/binutils_testsuite/log_build-diff
index b1985762..1f1c1202 100644
--- a/open_issues/binutils_testsuite/log_build-diff
+++ b/open_issues/binutils_testsuite/log_build-diff
@@ -1,5 +1,5 @@
---- /dev/fd/63 2010-10-26 17:41:28.970668617 +0200
-+++ /dev/fd/62 2010-10-26 17:41:28.970668617 +0200
+--- /dev/fd/63 2010-10-30 16:58:33.835215493 +0200
++++ /dev/fd/62 2010-10-30 16:58:33.835215493 +0200
@@ -1,6 +1,6 @@
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-pc-linux-gnu
diff --git a/open_issues/binutils_testsuite/sum_hurd b/open_issues/binutils_testsuite/sum_hurd
index 3ae2d198..84dc8df8 100644
--- a/open_issues/binutils_testsuite/sum_hurd
+++ b/open_issues/binutils_testsuite/sum_hurd
@@ -1,4 +1,4 @@
-Test Run By tschwinge on Tue Oct 26 17:42:05 2010
+Test Run By tschwinge on Sat Oct 30 16:11:35 2010
Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -17,6 +17,11 @@ PASS: ar deterministic archive
PASS: ar unique symbol in archive
Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/compress.exp ...
+PASS: objcopy (objcopy compress debug sections)
+PASS: objcopy (objcopy decompress compressed debug sections)
+PASS: objcopy decompress debug sections in archive
+PASS: objcopy compress debug sections in archive
Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
UNSUPPORTED: Update ELF header 1
@@ -107,9 +112,9 @@ Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
=== binutils Summary ===
-# of expected passes 79
+# of expected passes 83
# of unsupported tests 2
-Test Run By tschwinge on Tue Oct 26 17:51:14 2010
+Test Run By tschwinge on Sat Oct 30 16:19:25 2010
Native configuration is i686-unknown-gnu0.3
=== ld tests ===
@@ -192,6 +197,10 @@ PASS: objcopy -shared (tdata2)
PASS: objcopy -shared -z relro (tdata2)
PASS: objcopy -z max-page-size=0x100000 (tdata2)
PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
+Running [...]/hurd/ld/testsuite/ld-elf/compress.exp ...
+PASS: Build libfoo.so with compressed debug sections
+PASS: Build libbar.so with compressed debug sections
+PASS: Run normal with libfoo.so with compressed debug sections
Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
PASS: Build libdwarf1.so
PASS: Run with libdwarf1.so first
@@ -203,6 +212,9 @@ PASS: Build eh-group1.o
PASS: Link eh-group.o to eh-group
Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
PASS: ld-elf/commonpage1
+PASS: ld-elf/compress1a
+PASS: ld-elf/compress1b
+PASS: ld-elf/compress1c
PASS: ld-elf/discard1
PASS: ld-elf/discard2
PASS: ld-elf/discard3
@@ -862,13 +874,13 @@ Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
=== ld Summary ===
-# of expected passes 602
+# of expected passes 608
# of unexpected failures 1
# of expected failures 17
# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101026
+/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101030
-Test Run By tschwinge on Tue Oct 26 17:43:55 2010
+Test Run By tschwinge on Sat Oct 30 16:13:29 2010
Native configuration is i686-unknown-gnu0.3
=== gas tests ===
@@ -967,8 +979,8 @@ PASS: group section
PASS: group section name
PASS: group section with multiple sections of same name
PASS: group section with multiple sections of same name
-PASS: automatic section group
-PASS: automatic section group
+PASS: automatic section group a
+PASS: automatic section group b
PASS: .equ redefinitions (ELF)
PASS: elf equate relocs
PASS: Ill-formed directives
@@ -1034,7 +1046,7 @@ PASS: i386 amd
PASS: i386 katmai
PASS: i386 jump
PASS: i386 relax 1
-PASS: i386 relax 3
+PASS: i386 relax 2
PASS: i386 ssemmx2
PASS: i386 sse2
PASS: i386 sub
@@ -1194,7 +1206,7 @@ PASS: i386 ifunc
PASS: i386 l1om-inval
PASS: i386 local PIC
PASS: DWARF2 debugging information 1
-XFAIL: DWARF2 debugging information 2
+PASS: DWARF2 debugging information 2
PASS: x86 Intel expressions
PASS: string insn operands
PASS: i386 string-bad
@@ -1303,7 +1315,6 @@ Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
=== gas Summary ===
-# of expected passes 315
-# of expected failures 1
-../as-new 2.20.51.20101026
+# of expected passes 316
+../as-new 2.20.51.20101030
diff --git a/open_issues/binutils_testsuite/sum_linux b/open_issues/binutils_testsuite/sum_linux
index 6eddaf99..2e21a29c 100644
--- a/open_issues/binutils_testsuite/sum_linux
+++ b/open_issues/binutils_testsuite/sum_linux
@@ -1,4 +1,4 @@
-Test Run By thomas on Tue Oct 26 16:53:56 2010
+Test Run By thomas on Sat Oct 30 15:00:17 2010
Native configuration is i686-pc-linux-gnu
=== binutils tests ===
@@ -17,6 +17,11 @@ PASS: ar deterministic archive
PASS: ar unique symbol in archive
Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/compress.exp ...
+PASS: objcopy (objcopy compress debug sections)
+PASS: objcopy (objcopy decompress compressed debug sections)
+PASS: objcopy decompress debug sections in archive
+PASS: objcopy compress debug sections in archive
Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
UNSUPPORTED: Update ELF header 1
@@ -107,9 +112,9 @@ Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
=== binutils Summary ===
-# of expected passes 79
+# of expected passes 83
# of unsupported tests 2
-Test Run By thomas on Tue Oct 26 16:54:17 2010
+Test Run By thomas on Sat Oct 30 15:00:43 2010
Native configuration is i686-pc-linux-gnu
=== ld tests ===
@@ -192,6 +197,10 @@ PASS: objcopy -shared (tdata2)
PASS: objcopy -shared -z relro (tdata2)
PASS: objcopy -z max-page-size=0x100000 (tdata2)
PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
+Running [...]/hurd/ld/testsuite/ld-elf/compress.exp ...
+PASS: Build libfoo.so with compressed debug sections
+PASS: Build libbar.so with compressed debug sections
+PASS: Run normal with libfoo.so with compressed debug sections
Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
PASS: Build libdwarf1.so
PASS: Run with libdwarf1.so first
@@ -203,6 +212,9 @@ PASS: Build eh-group1.o
PASS: Link eh-group.o to eh-group
Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
PASS: ld-elf/commonpage1
+PASS: ld-elf/compress1a
+PASS: ld-elf/compress1b
+PASS: ld-elf/compress1c
PASS: ld-elf/discard1
PASS: ld-elf/discard2
PASS: ld-elf/discard3
@@ -861,12 +873,12 @@ Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
=== ld Summary ===
-# of expected passes 612
+# of expected passes 618
# of expected failures 8
# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101026
+/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101030
-Test Run By thomas on Tue Oct 26 16:54:00 2010
+Test Run By thomas on Sat Oct 30 15:00:23 2010
Native configuration is i686-pc-linux-gnu
=== gas tests ===
@@ -965,8 +977,8 @@ PASS: group section
PASS: group section name
PASS: group section with multiple sections of same name
PASS: group section with multiple sections of same name
-PASS: automatic section group
-PASS: automatic section group
+PASS: automatic section group a
+PASS: automatic section group b
PASS: .equ redefinitions (ELF)
PASS: elf equate relocs
PASS: Ill-formed directives
@@ -1032,7 +1044,7 @@ PASS: i386 amd
PASS: i386 katmai
PASS: i386 jump
PASS: i386 relax 1
-PASS: i386 relax 3
+PASS: i386 relax 2
PASS: i386 ssemmx2
PASS: i386 sse2
PASS: i386 sub
@@ -1192,7 +1204,7 @@ PASS: i386 ifunc
PASS: i386 l1om-inval
PASS: i386 local PIC
PASS: DWARF2 debugging information 1
-XFAIL: DWARF2 debugging information 2
+PASS: DWARF2 debugging information 2
PASS: x86 Intel expressions
PASS: string insn operands
PASS: i386 string-bad
@@ -1301,7 +1313,6 @@ Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
=== gas Summary ===
-# of expected passes 315
-# of expected failures 1
-../as-new 2.20.51.20101026
+# of expected passes 316
+../as-new 2.20.51.20101030
--
cgit v1.2.3
From e4dce63f1d51611a0f123299680160a82f11e1ea Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 31 Oct 2010 08:02:38 +0100
Subject: open_issues/virtualization/networking: New. And some other minor
reorganization.
---
emulation.mdwn | 17 +++---------
...implementing_hurd_on_top_of_another_system.mdwn | 3 ++-
open_issues/virtual_square_view-os.mdwn | 6 +++++
open_issues/virtualization.mdwn | 6 ++++-
open_issues/virtualization/networking.mdwn | 30 ++++++++++++++++++++++
virtualization.mdwn | 13 +++++++---
6 files changed, 57 insertions(+), 18 deletions(-)
create mode 100644 open_issues/virtualization/networking.mdwn
diff --git a/emulation.mdwn b/emulation.mdwn
index 9e6a5e55..3238209b 100644
--- a/emulation.mdwn
+++ b/emulation.mdwn
@@ -1,20 +1,11 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
-# External
-
- * [*Emulation: Role-Playing for
- Computers*](http://www.informit.com/articles/printerfriendly.aspx?p=659522),
- an article by David Chisnall.
-
-
-# See Also
-
- * [[Virtualization]].
+[[!meta redir=virtualization]]
diff --git a/open_issues/implementing_hurd_on_top_of_another_system.mdwn b/open_issues/implementing_hurd_on_top_of_another_system.mdwn
index a3e367ce..1d7a1e50 100644
--- a/open_issues/implementing_hurd_on_top_of_another_system.mdwn
+++ b/open_issues/implementing_hurd_on_top_of_another_system.mdwn
@@ -11,7 +11,8 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_documentation]]
It is possible to run Hurd stuff on top of another system instead of on Mach.
-One obvious variant is emulation ([[hurd/running/QEMU]], for example), but
+One obvious variant is [[emulation]] (using [[hurd/running/QEMU]], for
+example), but
doing that does not really integratable the Hurd guest into the host system.
There is also a more direct way, more powerful, but it also has certain
requirements to do it effectively:
diff --git a/open_issues/virtual_square_view-os.mdwn b/open_issues/virtual_square_view-os.mdwn
index 7f5137e5..dcc98785 100644
--- a/open_issues/virtual_square_view-os.mdwn
+++ b/open_issues/virtual_square_view-os.mdwn
@@ -42,6 +42,12 @@ Perhaps start reading with the *slides* linked below.
*
+ *
+
+ * Renzo Davoli, [*Virtual
+ Square*](http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.108.9106),
+ 2005
+
* Renzo Davoli, Michael Goldweber, [*View-OS: Change your View on
Virtualization*](http://www.cs.unibo.it/~renzo/view-os-lk2009.pdf),
Proc. of Linux Kongress, 2009
diff --git a/open_issues/virtualization.mdwn b/open_issues/virtualization.mdwn
index 83b6b4c4..ebf86a2d 100644
--- a/open_issues/virtualization.mdwn
+++ b/open_issues/virtualization.mdwn
@@ -20,6 +20,8 @@ An index of things to work on w.r.t. virtualization.
* [[hurd/subhurd]] / [[hurd/neighborhurd]]
+ * [[Implementing_Hurd_On_Top_of_Another_System]]
+
* Unix / Linux
* [[Capsicum]]
@@ -32,4 +34,6 @@ An index of things to work on w.r.t. virtualization.
* [Divorcing namespaces from
processes](http://lwn.net/Articles/377109/), 2010-03-03
- * [[file_systems]]
+ * [[File_Systems]]
+
+ * [[Networking]]
diff --git a/open_issues/virtualization/networking.mdwn b/open_issues/virtualization/networking.mdwn
new file mode 100644
index 00000000..7a6474a1
--- /dev/null
+++ b/open_issues/virtualization/networking.mdwn
@@ -0,0 +1,30 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_hurd]]
+
+Collection about stuff that is relevant for *virtualization* and *networking*.
+
+ * [[Virtual_Square_View-OS]]
+
+ * [*Virtual Networks*](http://virtualsquare.org/vn.html)
+
+ * [User Level Networking](http://uln.sourceforge.net/)
+
+ * [Virtual Distributed Ethernet](http://vde.sourceforge.net/)
+
+ * [Application Level
+ Environment4Networking](http://sourceforge.net/projects/ale4net/)
+
+ *Ale4NET used dyn library call diversion to define networking at process
+ level.* -- what we're doing with our approach for overriding the default
+ [[hurd/translator/pfinet]] by setting environment variables.
+
+ Project is now part of [[Virtual_Square_View-OS]].
diff --git a/virtualization.mdwn b/virtualization.mdwn
index 52131c12..3a207ae8 100644
--- a/virtualization.mdwn
+++ b/virtualization.mdwn
@@ -1,4 +1,5 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -10,9 +11,15 @@ is included in the section entitled
# External
+ * [*Emulation: Role-Playing for
+ Computers*](http://www.informit.com/articles/printerfriendly.aspx?p=659522),
+ an article by David Chisnall.
+
+ * [*Virtual Machines*](http://virtualsquare.org/vm.html).
+
* Wikipedia page about [[!wikipedia Virtualization]].
-# See Also
+# Open Issues
- * [[Emulation]].
+ * [[open_issues/Virtualization]]
--
cgit v1.2.3
From b7ba1377b7c712e42275f2c8055974dc2a48a0e4 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 6 Nov 2010 10:27:05 +0100
Subject: open_issues/performance: New.
---
community/gsoc/project_ideas.mdwn | 5 ++-
.../gsoc/project_ideas/disk_io_performance.mdwn | 36 ------------------
open_issues/io_system_binutils_ld_64ksec.mdwn | 33 ----------------
.../io_system_binutils_ld_64ksec/test.tar.xz | Bin 378092 -> 0 bytes
open_issues/performance.mdwn | 11 ++++++
open_issues/performance/io_system.mdwn | 42 +++++++++++++++++++++
.../performance/io_system/binutils_ld_64ksec.mdwn | 33 ++++++++++++++++
.../io_system/binutils_ld_64ksec/test.tar.xz | Bin 0 -> 378092 bytes
8 files changed, 89 insertions(+), 71 deletions(-)
delete mode 100644 community/gsoc/project_ideas/disk_io_performance.mdwn
delete mode 100644 open_issues/io_system_binutils_ld_64ksec.mdwn
delete mode 100644 open_issues/io_system_binutils_ld_64ksec/test.tar.xz
create mode 100644 open_issues/performance.mdwn
create mode 100644 open_issues/performance/io_system.mdwn
create mode 100644 open_issues/performance/io_system/binutils_ld_64ksec.mdwn
create mode 100644 open_issues/performance/io_system/binutils_ld_64ksec/test.tar.xz
diff --git a/community/gsoc/project_ideas.mdwn b/community/gsoc/project_ideas.mdwn
index ca10c8a2..2102e8f7 100644
--- a/community/gsoc/project_ideas.mdwn
+++ b/community/gsoc/project_ideas.mdwn
@@ -1,4 +1,5 @@
-[[!meta copyright="Copyright © 2008, 2009 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2008, 2009, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -84,7 +85,7 @@ See also the list of [Hurd-related X.org project ideas](http://wiki.x.org/wiki/H
[[!inline pages="community/gsoc/project_ideas/libdiskfs_locking" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/pthreads" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/sound" show=0 feeds=no actions=yes]]
-[[!inline pages="community/gsoc/project_ideas/disk_io_performance" show=0 feeds=no actions=yes]]
+[[!inline pages="open_issues/performance/io_system" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/vm_tuning" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/mtab" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/gnumach_cleanup" show=0 feeds=no actions=yes]]
diff --git a/community/gsoc/project_ideas/disk_io_performance.mdwn b/community/gsoc/project_ideas/disk_io_performance.mdwn
deleted file mode 100644
index b6c857b0..00000000
--- a/community/gsoc/project_ideas/disk_io_performance.mdwn
+++ /dev/null
@@ -1,36 +0,0 @@
-[[!meta copyright="Copyright © 2008, 2009 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-[[!meta title="Disk I/O Performance Tuning"]]
-
-The most obvious reason for the Hurd feeling slow compared to mainstream
-systems like GNU/Linux, is very slow hard disk access.
-
-The reason for this slowness is lack and/or bad implementation of common
-optimization techniques, like scheduling reads and writes to minimize head
-movement; effective block caching; effective reads/writes to partial blocks;
-reading/writing multiple blocks at once; and read-ahead. The
-[[ext2_filesystem_server|hurd/translator/ext2fs]] might also need some
-optimizations at a higher logical level.
-
-The goal of this project is to analyze the current situation, and implement/fix
-various optimizations, to achieve significantly better disk performance. It
-requires understanding the data flow through the various layers involved in
-disk access on the Hurd ([[filesystem|hurd/virtual_file_system]],
-[[pager|hurd/libpager]], driver), and general experience with
-optimizing complex systems. That said, the killing feature we are definitely
-missing is the read-ahead, and even a very simple implementation would bring
-very big performance speedups.
-
-Possible mentors: Samuel Thibault (youpi)
-
-Exercise: Look through all the code involved in disk I/O, and try something
-easy to improve. It's quite likely though that you will find nothing obvious --
-in this case, please contact us about a different exercise task.
diff --git a/open_issues/io_system_binutils_ld_64ksec.mdwn b/open_issues/io_system_binutils_ld_64ksec.mdwn
deleted file mode 100644
index 0484137a..00000000
--- a/open_issues/io_system_binutils_ld_64ksec.mdwn
+++ /dev/null
@@ -1,33 +0,0 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-[[!tag open_issue_hurd]]
-
-This one may be considered as a testcase for I/O system optimization.
-
-It is taken from the [[binutils_testsuite]], `ld/ld-elf/sec64k.exp`, where this
-test may occasionally [[trigger a timeout|binutils_testsuite#64ksec]]. It is
-extracted from cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24.
-
- $ wget -O - http://www.gnu.org/software/hurd/open_issues/io_system_binutils_ld_64ksec/test.tar.xz | xz -d | tar -x
- $ cd test/
- $ \time ./ld-new.stripped -o dump dump?.o dump??.o
- 0.00user 0.00system 2:46.11elapsed 0%CPU (0avgtext+0avgdata 0maxresident)k
- 0inputs+0outputs (0major+0minor)pagefaults 0swaps
-
-On the idle grubber, this one repeatedly takes a few minutes wall time to
-complete successfully, contrary to a few seconds on a GNU/Linux system.
-
-While processing the object files, there is heavy interaction with the relevant
-[[hurd/translator/ext2fs]] process . Running [[hurd/debugging/rpctrace]] on
-the testee shows that (primarily) an ever-repeating series of `io_seek` and
-`io_read` is being processed. Running the testee on GNU/Linux with strace
-shows the equivalent thing (`_llseek`, `read`) -- but Linux' I/O system isn't
-as slow as the Hurd's.
diff --git a/open_issues/io_system_binutils_ld_64ksec/test.tar.xz b/open_issues/io_system_binutils_ld_64ksec/test.tar.xz
deleted file mode 100644
index 6d7c606c..00000000
Binary files a/open_issues/io_system_binutils_ld_64ksec/test.tar.xz and /dev/null differ
diff --git a/open_issues/performance.mdwn b/open_issues/performance.mdwn
new file mode 100644
index 00000000..3ffffa4d
--- /dev/null
+++ b/open_issues/performance.mdwn
@@ -0,0 +1,11 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+ * [[I/O System|io_system]]
diff --git a/open_issues/performance/io_system.mdwn b/open_issues/performance/io_system.mdwn
new file mode 100644
index 00000000..bf59b5df
--- /dev/null
+++ b/open_issues/performance/io_system.mdwn
@@ -0,0 +1,42 @@
+[[!meta copyright="Copyright © 2008, 2009, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled
+[[GNU Free Documentation License|/fdl]]."]]"""]]
+
+[[!meta title="I/O System"]]
+
+[[!tag open_issue_hurd]]
+
+The most obvious reason for the Hurd feeling slow compared to mainstream
+systems like GNU/Linux, is a low I/O system performance, in particular very
+slow hard disk access.
+
+The reason for this slowness is lack and/or bad implementation of common
+optimization techniques, like scheduling reads and writes to minimize head
+movement; effective block caching; effective reads/writes to partial blocks;
+reading/writing multiple blocks at once; and read-ahead. The
+[[ext2_filesystem_server|hurd/translator/ext2fs]] might also need some
+optimizations at a higher logical level.
+
+The goal of this project is to analyze the current situation, and implement/fix
+various optimizations, to achieve significantly better disk performance. It
+requires understanding the data flow through the various layers involved in
+disk access on the Hurd ([[filesystem|hurd/virtual_file_system]],
+[[pager|hurd/libpager]], driver), and general experience with
+optimizing complex systems. That said, the killing feature we are definitely
+missing is the read-ahead, and even a very simple implementation would bring
+very big performance speedups.
+
+Here's a real use-case: [[binutils_ld_64ksec]].
+
+Possible mentors: Samuel Thibault (youpi)
+
+Exercise: Look through all the code involved in disk I/O, and try something
+easy to improve. It's quite likely though that you will find nothing obvious --
+in this case, please contact us about a different exercise task.
diff --git a/open_issues/performance/io_system/binutils_ld_64ksec.mdwn b/open_issues/performance/io_system/binutils_ld_64ksec.mdwn
new file mode 100644
index 00000000..60dca510
--- /dev/null
+++ b/open_issues/performance/io_system/binutils_ld_64ksec.mdwn
@@ -0,0 +1,33 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_hurd]]
+
+This one may be considered as a testcase for I/O system optimization.
+
+It is taken from the [[binutils_testsuite]], `ld/ld-elf/sec64k.exp`, where this
+test may occasionally [[trigger a timeout|binutils_testsuite#64ksec]]. It is
+extracted from cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24.
+
+ $ wget -O - http://www.gnu.org/software/hurd/open_issues/performance/io_system/binutils_ld_64ksec/test.tar.xz | xz -d | tar -x
+ $ cd test/
+ $ \time ./ld-new.stripped -o dump dump?.o dump??.o
+ 0.00user 0.00system 2:46.11elapsed 0%CPU (0avgtext+0avgdata 0maxresident)k
+ 0inputs+0outputs (0major+0minor)pagefaults 0swaps
+
+On the idle grubber, this one repeatedly takes a few minutes wall time to
+complete successfully, contrary to a few seconds on a GNU/Linux system.
+
+While processing the object files, there is heavy interaction with the relevant
+[[hurd/translator/ext2fs]] process . Running [[hurd/debugging/rpctrace]] on
+the testee shows that (primarily) an ever-repeating series of `io_seek` and
+`io_read` is being processed. Running the testee on GNU/Linux with strace
+shows the equivalent thing (`_llseek`, `read`) -- but Linux' I/O system isn't
+as slow as the Hurd's.
diff --git a/open_issues/performance/io_system/binutils_ld_64ksec/test.tar.xz b/open_issues/performance/io_system/binutils_ld_64ksec/test.tar.xz
new file mode 100644
index 00000000..6d7c606c
Binary files /dev/null and b/open_issues/performance/io_system/binutils_ld_64ksec/test.tar.xz differ
--
cgit v1.2.3
From 69a961ffd9b098b719afe53c90a63a59b367aaea Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 6 Nov 2010 10:29:41 +0100
Subject: open_issues/performance/fork: New.
---
open_issues/performance.mdwn | 2 ++
open_issues/performance/fork.mdwn | 21 +++++++++++++++++++++
2 files changed, 23 insertions(+)
create mode 100644 open_issues/performance/fork.mdwn
diff --git a/open_issues/performance.mdwn b/open_issues/performance.mdwn
index 3ffffa4d..a4816680 100644
--- a/open_issues/performance.mdwn
+++ b/open_issues/performance.mdwn
@@ -9,3 +9,5 @@ is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
* [[I/O System|io_system]]
+
+ * [[fork]]
diff --git a/open_issues/performance/fork.mdwn b/open_issues/performance/fork.mdwn
new file mode 100644
index 00000000..250b5277
--- /dev/null
+++ b/open_issues/performance/fork.mdwn
@@ -0,0 +1,21 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_glibc open_issue_hurd]]
+
+On Unix systems, `fork` is a rather simple system call. Our implementation in
+[[glibc]] is / needs to be rather bulky. TODO: elaborate.
+
+This affects performance when new processes are continuously being spawned from
+the shell, for example.
+
+Alternatives: use `posix_spawn`. Others?
+
+To do: hard numbers.
--
cgit v1.2.3
From 293bd080c171251d976e5c069f03195c386c1d01 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 7 Nov 2010 15:09:27 +0100
Subject: open_issues/performance/io_system: Suggest the Git testsuite.
---
open_issues/performance/io_system.mdwn | 2 ++
1 file changed, 2 insertions(+)
diff --git a/open_issues/performance/io_system.mdwn b/open_issues/performance/io_system.mdwn
index bf59b5df..f5b5506a 100644
--- a/open_issues/performance/io_system.mdwn
+++ b/open_issues/performance/io_system.mdwn
@@ -35,6 +35,8 @@ very big performance speedups.
Here's a real use-case: [[binutils_ld_64ksec]].
+Another one is running the Git testsuite which is mostly I/O bound, too.
+
Possible mentors: Samuel Thibault (youpi)
Exercise: Look through all the code involved in disk I/O, and try something
--
cgit v1.2.3
From 49e004f04123e78c076d2ffe0922bc4cd7356414 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 8 Nov 2010 07:08:51 +0100
Subject: open_issues/binutils: Update.
---
open_issues/binutils.mdwn | 2 +-
open_issues/binutils_testsuite.mdwn | 41 ++++-------
open_issues/binutils_testsuite/log_build-diff | 99 +++++++++++++--------------
open_issues/binutils_testsuite/sum_hurd | 18 ++---
open_issues/binutils_testsuite/sum_linux | 14 ++--
5 files changed, 77 insertions(+), 97 deletions(-)
diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn
index 481c1dec..aca4ec9b 100644
--- a/open_issues/binutils.mdwn
+++ b/open_issues/binutils.mdwn
@@ -18,7 +18,7 @@ Here's what's to be done for maintaining GNU Binutils.
# Configuration
-Last checked against e83f2cdb9a77350370b96952e54bb785d1c84f4e (2010-10-30).
+Last checked against a21e91c6604036d32acbec4d34e4e9fe081cc34f (2010-11-08).
* Globally
diff --git a/open_issues/binutils_testsuite.mdwn b/open_issues/binutils_testsuite.mdwn
index 82f63894..0985d32d 100644
--- a/open_issues/binutils_testsuite.mdwn
+++ b/open_issues/binutils_testsuite.mdwn
@@ -11,7 +11,7 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_binutils]]
Here's a log of a binutils build and testsuite run; this is from
-e4b8d2a57f640a1095012e00975612d939c8a8b7 (2010-10-30)
+a0fc8b2145396563ff60761d8b4ff1d3d3a92c41 (2010-11-07)
[[sources|source_repositories/binutils]], run on kepler.SCHWINGE and grubber.
$ export LC_ALL=C
@@ -46,12 +46,12 @@ On grubber, this takes roughly 45 minutes.
Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
$ diff -u -F ^Running open_issues/binutils_testsuite/sum_linux open_issues/binutils_testsuite/sum_hurd
- --- open_issues/binutils_testsuite/sum_linux 2010-10-30 15:04:52.000000000 +0200
- +++ open_issues/binutils_testsuite/sum_hurd 2010-10-30 16:58:27.000000000 +0200
+ --- open_issues/binutils_testsuite/sum_linux 2010-11-08 06:45:04.000000000 +0100
+ +++ open_issues/binutils_testsuite/sum_hurd 2010-11-08 06:45:18.000000000 +0100
@@ -1,5 +1,5 @@
- -Test Run By thomas on Sat Oct 30 15:00:17 2010
+ -Test Run By thomas on Sun Nov 7 20:20:33 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sat Oct 30 16:11:35 2010
+ +Test Run By tschwinge on Sun Nov 7 21:03:30 2010
+Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -60,9 +60,9 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
# of expected passes 83
# of unsupported tests 2
- -Test Run By thomas on Sat Oct 30 15:00:43 2010
+ -Test Run By thomas on Sun Nov 7 20:20:55 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sat Oct 30 16:19:25 2010
+ +Test Run By tschwinge on Sun Nov 7 21:10:31 2010
+Native configuration is i686-unknown-gnu0.3
=== ld tests ===
@@ -80,17 +80,7 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
PASS: ld link shared library
PASS: ld export symbols from archive
- @@ -317,7 +317,8 @@ Running [...]/hurd/ld/testsuite/ld-elf/s
- PASS: assignment of ELF sections to segments (disjoint pages)
- Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
- PASS: ld-elf/64ksec-r
- -PASS: ld-elf/64ksec
- +WARNING: program timed out.
- +FAIL: ld-elf/64ksec
- Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
- PASS: Build libfoo.so
- PASS: Build versioned libfoo.so
- @@ -553,8 +554,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ @@ -551,8 +551,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
PASS: ELF DSO weak func last DSO
PASS: ELF weak func first
PASS: ELF weak func last
@@ -101,7 +91,7 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
PASS: ELF DSO weak data first
PASS: ELF DSO weak data last
PASS: ELF DSO weak data first DSO
- @@ -565,10 +566,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ @@ -563,10 +563,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
PASS: ELF weak data last
PASS: ELF weak data first common
PASS: ELF weak data last common
@@ -116,21 +106,20 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
PASS: ELF DSO small bar (size)
PASS: ELF DSO foo with small bar (size)
PASS: ELF DSO big bar (size)
- @@ -873,13 +874,14 @@ Running [...]/hurd/ld/testsuite/ld-xtens
+ @@ -871,13 +871,13 @@ Running [...]/hurd/ld/testsuite/ld-xtens
=== ld Summary ===
- -# of expected passes 618
+ -# of expected passes 616
-# of expected failures 8
- +# of expected passes 608
- +# of unexpected failures 1
+ +# of expected passes 607
+# of expected failures 17
# of untested testcases 6
- /media/data[...]/hurd.build/ld/ld-new 2.20.51.20101030
+ /media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
- -Test Run By thomas on Sat Oct 30 15:00:23 2010
+ -Test Run By thomas on Sun Nov 7 20:20:38 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sat Oct 30 16:13:29 2010
+ +Test Run By tschwinge on Sun Nov 7 21:05:14 2010
+Native configuration is i686-unknown-gnu0.3
=== gas tests ===
diff --git a/open_issues/binutils_testsuite/log_build-diff b/open_issues/binutils_testsuite/log_build-diff
index 1f1c1202..461dd9bd 100644
--- a/open_issues/binutils_testsuite/log_build-diff
+++ b/open_issues/binutils_testsuite/log_build-diff
@@ -1,5 +1,5 @@
---- /dev/fd/63 2010-10-30 16:58:33.835215493 +0200
-+++ /dev/fd/62 2010-10-30 16:58:33.835215493 +0200
+--- /dev/fd/63 2010-11-08 06:42:49.315023002 +0100
++++ /dev/fd/62 2010-11-08 06:42:49.315023002 +0100
@@ -1,6 +1,6 @@
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-pc-linux-gnu
@@ -10,16 +10,7 @@
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
-@@ -75,7 +75,7 @@
- checking for cc... cc
- checking for c++... c++
- checking for gcc... gcc
--checking for gcj... no
-+checking for gcj... gcj
- checking for gfortran... no
- checking for ar... ar
- checking for as... as
-@@ -120,7 +120,7 @@
+@@ -96,7 +96,7 @@
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
@@ -28,7 +19,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -129,9 +129,9 @@
+@@ -105,9 +105,9 @@
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
@@ -41,7 +32,7 @@
checking for library containing strerror... none required
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
-@@ -238,11 +238,11 @@
+@@ -214,11 +214,11 @@
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... makeinfo --split-size=5000000
checking for perl... perl
@@ -58,7 +49,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -297,7 +297,7 @@
+@@ -273,7 +273,7 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -67,7 +58,7 @@
checking for sys/systemcfg.h... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
-@@ -369,8 +369,8 @@
+@@ -347,13 +347,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -77,17 +68,23 @@
+checking for sys_nerr... no
checking for sys_siglist... yes
checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
checking for getrusage... yes
-@@ -389,7 +389,7 @@
- checking for sysmp... no
checking for getsysinfo... no
- checking for table... no
+ checking for gettimeofday... (cached) yes
+@@ -368,7 +368,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
-checking for sysctl... yes
+checking for sysctl... no
- checking for wait3... yes
- checking for wait4... yes
- checking for __fsetlocking... yes
-@@ -421,10 +421,10 @@
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -402,10 +402,10 @@
mkdir -p -- ./bfd
Configuring in ./bfd
configure: creating cache ./config.cache
@@ -102,7 +99,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -441,9 +441,9 @@
+@@ -422,9 +422,9 @@
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
@@ -115,7 +112,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -472,34 +472,34 @@
+@@ -453,34 +453,34 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -158,7 +155,7 @@
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
-@@ -582,22 +582,22 @@
+@@ -563,22 +563,22 @@
checking sys/procfs.h usability... yes
checking sys/procfs.h presence... yes
checking for sys/procfs.h... yes
@@ -188,7 +185,7 @@
checking for win32_pstatus_t in sys/procfs.h... no
checking linker --as-needed support... yes
checking for cos in -lm... yes
-@@ -612,7 +612,7 @@
+@@ -593,7 +593,7 @@
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
@@ -197,7 +194,7 @@
checking for mprotect... yes
configure: updating cache ./config.cache
configure: creating ./config.status
-@@ -1214,36 +1214,15 @@
+@@ -1211,36 +1211,15 @@
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../hurd/bfd/dwarf1.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../hurd/bfd/dwarf1.c -o dwarf1.o
mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
@@ -235,7 +232,7 @@
case " $f " in \
*" $i "*) ;; \
*) f="$f $i" ;; \
-@@ -1253,7 +1232,7 @@
+@@ -1250,7 +1229,7 @@
/bin/bash ../../hurd/bfd/../move-if-change tofiles ofiles
touch stamp-ofiles
/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -release `cat libtool-soversion` -o libbfd.la -rpath [...].install/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles` -lz
@@ -244,7 +241,7 @@
libtool: link: ranlib .libs/libbfd.a
libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
libtooldir=`/bin/bash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
-@@ -1269,10 +1248,10 @@
+@@ -1266,10 +1245,10 @@
mkdir -p -- ./opcodes
Configuring in ./opcodes
configure: creating cache ./config.cache
@@ -259,7 +256,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -1289,7 +1268,7 @@
+@@ -1286,7 +1265,7 @@
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
@@ -268,7 +265,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1310,8 +1289,8 @@
+@@ -1307,8 +1286,8 @@
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
@@ -279,7 +276,7 @@
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
-@@ -1320,27 +1299,27 @@
+@@ -1317,27 +1296,27 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -314,7 +311,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -1444,10 +1423,10 @@
+@@ -1441,10 +1420,10 @@
mkdir -p -- ./binutils
Configuring in ./binutils
configure: creating cache ./config.cache
@@ -329,7 +326,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -1464,7 +1443,7 @@
+@@ -1461,7 +1440,7 @@
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
@@ -338,7 +335,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1495,28 +1474,28 @@
+@@ -1492,28 +1471,28 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -374,7 +371,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -1536,7 +1515,7 @@
+@@ -1533,7 +1512,7 @@
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking whether to enable maintainer-specific portions of Makefiles... no
@@ -383,7 +380,7 @@
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
-@@ -1909,10 +1888,10 @@
+@@ -1906,10 +1885,10 @@
mkdir -p -- ./gas
Configuring in ./gas
configure: creating cache ./config.cache
@@ -398,7 +395,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -1929,7 +1908,7 @@
+@@ -1926,7 +1905,7 @@
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
@@ -407,7 +404,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1960,28 +1939,28 @@
+@@ -1957,28 +1936,28 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -443,7 +440,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -2161,10 +2140,10 @@
+@@ -2158,10 +2137,10 @@
mkdir -p -- ./gprof
Configuring in ./gprof
configure: creating cache ./config.cache
@@ -458,7 +455,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -2181,7 +2160,7 @@
+@@ -2178,7 +2157,7 @@
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
@@ -467,7 +464,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -2212,28 +2191,28 @@
+@@ -2209,28 +2188,28 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -503,7 +500,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -2392,10 +2371,10 @@
+@@ -2389,10 +2368,10 @@
mkdir -p -- ./ld
Configuring in ./ld
configure: creating cache ./config.cache
@@ -518,7 +515,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -2417,7 +2396,7 @@
+@@ -2414,7 +2393,7 @@
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
@@ -527,7 +524,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -2445,28 +2424,28 @@
+@@ -2442,28 +2421,28 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -563,7 +560,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -2549,13 +2528,13 @@
+@@ -2546,13 +2525,13 @@
/bin/bash ../../hurd/ld/../ylwrap ../../hurd/ld/ldgram.y y.tab.c ldgram.c y.tab.h ldgram.h y.output ldgram.output -- bison -y -d
updating ldgram.h
(echo "/* This file is automatically generated. DO NOT EDIT! */";\
@@ -579,7 +576,7 @@
| sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
echo " &ld_${f}_emulation, \\"; \
done;\
-@@ -2642,8 +2621,8 @@
+@@ -2639,8 +2618,8 @@
mv -f .deps/ldctor.Tpo .deps/ldctor.Po
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
-DDEFAULT_EMULATION='"elf_i386"' \
@@ -590,7 +587,7 @@
../../hurd/ld/ldmain.c
mv -f .deps/ldmain.Tpo .deps/ldmain.Po
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldwrite.o -MD -MP -MF .deps/ldwrite.Tpo -c -o ldwrite.o ../../hurd/ld/ldwrite.c
-@@ -2657,7 +2636,7 @@
+@@ -2654,7 +2633,7 @@
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmisc.o -MD -MP -MF .deps/ldmisc.Tpo -c -o ldmisc.o ../../hurd/ld/ldmisc.c
mv -f .deps/ldmisc.Tpo .deps/ldmisc.Po
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
@@ -599,7 +596,7 @@
../../hurd/ld/ldfile.c
mv -f .deps/ldfile.Tpo .deps/ldfile.Po
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldcref.o -MD -MP -MF .deps/ldcref.Tpo -c -o ldcref.o ../../hurd/ld/ldcref.c
-@@ -2665,14 +2644,11 @@
+@@ -2662,14 +2641,11 @@
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../hurd/ld/plugin.c
mv -f .deps/plugin.Tpo .deps/plugin.Po
cp ../../hurd/ld/emultempl/astring.sed stringify.sed
@@ -616,4 +613,4 @@
+libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
touch ld.1
perl ../../hurd/ld/../etc/texi2pod.pl -I ../../hurd/ld -I ../../hurd/ld/../bfd/doc -I ../bfd/doc -I ../../hurd/ld/../libiberty -Dman < ../../hurd/ld/ld.texinfo > ld.pod
- (pod2man --center="GNU Development Tools" --release="binutils-2.20.51" --section=1 ld.pod | \
+ (pod2man --center="GNU Development Tools" --release="binutils-2.21.51" --section=1 ld.pod | \
diff --git a/open_issues/binutils_testsuite/sum_hurd b/open_issues/binutils_testsuite/sum_hurd
index 84dc8df8..d1373e39 100644
--- a/open_issues/binutils_testsuite/sum_hurd
+++ b/open_issues/binutils_testsuite/sum_hurd
@@ -1,4 +1,4 @@
-Test Run By tschwinge on Sat Oct 30 16:11:35 2010
+Test Run By tschwinge on Sun Nov 7 21:03:30 2010
Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -114,7 +114,7 @@ Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
# of expected passes 83
# of unsupported tests 2
-Test Run By tschwinge on Sat Oct 30 16:19:25 2010
+Test Run By tschwinge on Sun Nov 7 21:10:31 2010
Native configuration is i686-unknown-gnu0.3
=== ld tests ===
@@ -317,8 +317,7 @@ PASS: assignment of ELF sections to segments (adjacent pages)
PASS: assignment of ELF sections to segments (disjoint pages)
Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
PASS: ld-elf/64ksec-r
-WARNING: program timed out.
-FAIL: ld-elf/64ksec
+PASS: ld-elf/64ksec
Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
PASS: Build libfoo.so
PASS: Build versioned libfoo.so
@@ -484,8 +483,6 @@ PASS: vers30
PASS: vers31
PASS: vers32a
PASS: vers32b
-PASS: vers32c
-PASS: vers32d
Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
PASS: ld-elfvsb/hidden0
PASS: ld-elfvsb/hidden1
@@ -874,13 +871,12 @@ Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
=== ld Summary ===
-# of expected passes 608
-# of unexpected failures 1
+# of expected passes 607
# of expected failures 17
# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101030
+/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
-Test Run By tschwinge on Sat Oct 30 16:13:29 2010
+Test Run By tschwinge on Sun Nov 7 21:05:14 2010
Native configuration is i686-unknown-gnu0.3
=== gas tests ===
@@ -1316,5 +1312,5 @@ Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
=== gas Summary ===
# of expected passes 316
-../as-new 2.20.51.20101030
+../as-new 2.21.51.20101107
diff --git a/open_issues/binutils_testsuite/sum_linux b/open_issues/binutils_testsuite/sum_linux
index 2e21a29c..da645ba0 100644
--- a/open_issues/binutils_testsuite/sum_linux
+++ b/open_issues/binutils_testsuite/sum_linux
@@ -1,4 +1,4 @@
-Test Run By thomas on Sat Oct 30 15:00:17 2010
+Test Run By thomas on Sun Nov 7 20:20:33 2010
Native configuration is i686-pc-linux-gnu
=== binutils tests ===
@@ -114,7 +114,7 @@ Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
# of expected passes 83
# of unsupported tests 2
-Test Run By thomas on Sat Oct 30 15:00:43 2010
+Test Run By thomas on Sun Nov 7 20:20:55 2010
Native configuration is i686-pc-linux-gnu
=== ld tests ===
@@ -483,8 +483,6 @@ PASS: vers30
PASS: vers31
PASS: vers32a
PASS: vers32b
-PASS: vers32c
-PASS: vers32d
Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
PASS: ld-elfvsb/hidden0
PASS: ld-elfvsb/hidden1
@@ -873,12 +871,12 @@ Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
=== ld Summary ===
-# of expected passes 618
+# of expected passes 616
# of expected failures 8
# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.20.51.20101030
+/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
-Test Run By thomas on Sat Oct 30 15:00:23 2010
+Test Run By thomas on Sun Nov 7 20:20:38 2010
Native configuration is i686-pc-linux-gnu
=== gas tests ===
@@ -1314,5 +1312,5 @@ Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
=== gas Summary ===
# of expected passes 316
-../as-new 2.20.51.20101030
+../as-new 2.21.51.20101107
--
cgit v1.2.3
From 0b169a4afd93adb121d99c027ca1c5d484b38230 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 8 Nov 2010 07:24:22 +0100
Subject: open_issues/binutils_testsuite -> open_issues/binutils/testsuite
---
open_issues/binutils.mdwn | 7 +-
open_issues/binutils/testsuite.mdwn | 148 +++
open_issues/binutils/testsuite/log_build-diff | 616 +++++++++
open_issues/binutils/testsuite/sum_hurd | 1316 ++++++++++++++++++++
open_issues/binutils/testsuite/sum_linux | 1316 ++++++++++++++++++++
open_issues/binutils_testsuite.mdwn | 147 ---
open_issues/binutils_testsuite/log_build-diff | 616 ---------
open_issues/binutils_testsuite/sum_hurd | 1316 --------------------
open_issues/binutils_testsuite/sum_linux | 1316 --------------------
open_issues/ifunc.mdwn | 2 +-
.../performance/io_system/binutils_ld_64ksec.mdwn | 7 +-
open_issues/unit_testing.mdwn | 2 +-
12 files changed, 3406 insertions(+), 3403 deletions(-)
create mode 100644 open_issues/binutils/testsuite.mdwn
create mode 100644 open_issues/binutils/testsuite/log_build-diff
create mode 100644 open_issues/binutils/testsuite/sum_hurd
create mode 100644 open_issues/binutils/testsuite/sum_linux
delete mode 100644 open_issues/binutils_testsuite.mdwn
delete mode 100644 open_issues/binutils_testsuite/log_build-diff
delete mode 100644 open_issues/binutils_testsuite/sum_hurd
delete mode 100644 open_issues/binutils_testsuite/sum_linux
diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn
index aca4ec9b..c443adb6 100644
--- a/open_issues/binutils.mdwn
+++ b/open_issues/binutils.mdwn
@@ -24,7 +24,8 @@ Last checked against a21e91c6604036d32acbec4d34e4e9fe081cc34f (2010-11-08).
* a.out, COFF, PE image support and 64 bit support are not interesting.
- * In the testsuites, `.exp` and `.d` files very likely should not only
+ * In the [[testsuite]]s, `.exp` and `.d` files very likely should not
+ only
care for `*-*-linux*`, but also `*-*-gnu*`. (If the need to be
conditionalized like this at all.)
@@ -82,7 +83,7 @@ Last checked against a21e91c6604036d32acbec4d34e4e9fe081cc34f (2010-11-08).
* `*-*-gnu*`
TODO: resolve `crt0.o` vs. `crt1.o` issue. [[Testsuite
- failures|binutils_testsuite#static]].
+ failures|testsuite#static]].
* `configure.tgt`
@@ -92,4 +93,4 @@ Last checked against a21e91c6604036d32acbec4d34e4e9fe081cc34f (2010-11-08).
and 64 bit support.
-# [[Testsuite|binutils_testsuite]]
+# [[Testsuite]]
diff --git a/open_issues/binutils/testsuite.mdwn b/open_issues/binutils/testsuite.mdwn
new file mode 100644
index 00000000..82bd19b1
--- /dev/null
+++ b/open_issues/binutils/testsuite.mdwn
@@ -0,0 +1,148 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_binutils]]
+
+Here's a log of a binutils build and testsuite run; this is from
+a0fc8b2145396563ff60761d8b4ff1d3d3a92c41 (2010-11-07)
+[[sources|source_repositories/binutils]], run on kepler.SCHWINGE and grubber.
+
+ $ export LC_ALL=C
+ $ ../hurd/configure --prefix="$PWD".install 2>&1 | tee log_build
+ [...]
+ $ make SHELL=/bin/bash 2>&1 | tee log_build_
+ [...]
+
+(kepler.SCHWINGE defaults to using /bin/sh for libtool, grubber to /bin/bash;
+thus harmonized.)
+
+On grubber, this takes roughly 50 minutes.
+
+x86 GNU/Linux and GNU/Hurd's configurations are [[slightly
+different|binutils]], thus mask out most of the differences that are due to
+GNU/Linux defining `-DTRAD_CORE`, `-DHAVE_i386linux_vec`
+(`-DSELECT_VECS='[...],&i386linux_vec[...]`), `-DHAVE_i386pei_vec`
+(`-DSELECT_VECS='[...],&i386pei_vec[...]`).
+
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/binutils/hurd.build/ && cat log_build* | sed -e "s%${PWD}%[...]%g" -e s%-DTRAD_CORE%% -e s%-DHAVE_i386linux_vec%% -e s%-DHAVE_i386pei_vec%% -e s%-DSELECT_VECS=\\\('\\\''\\\?\\\)\&bfd_elf32_i386_vec,\&i386linux_vec,\&i386pei_vec,\&bfd_elf32_little_generic_vec,\&bfd_elf32_big_generic_vec'\\\''\\\?%-DSELECT_VECS=\\\1\\\&bfd_elf32_i386_vec,\\\&bfd_elf32_little_generic_vec,\\\&bfd_elf32_big_generic_vec\\\1%') <(ssh grubber 'cd tmp/binutils/hurd.build/ && cat log_build* | sed "s%${PWD}%[...]%g"') > open_issues/binutils/testsuite/log_build-diff
+
+[[log_build-diff]].
+
+ $ make -k check
+ [...]
+
+On grubber, this takes roughly 45 minutes.
+
+ $ ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils/testsuite/sum_linux
+ $ ssh grubber 'cd tmp/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils/testsuite/sum_hurd
+
+Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
+
+ $ diff -u -F ^Running open_issues/binutils/testsuite/sum_linux open_issues/binutils/testsuite/sum_hurd
+ --- open_issues/binutils/testsuite/sum_linux 2010-11-08 06:45:04.000000000 +0100
+ +++ open_issues/binutils/testsuite/sum_hurd 2010-11-08 06:45:18.000000000 +0100
+ @@ -1,5 +1,5 @@
+ -Test Run By thomas on Sun Nov 7 20:20:33 2010
+ -Native configuration is i686-pc-linux-gnu
+ +Test Run By tschwinge on Sun Nov 7 21:03:30 2010
+ +Native configuration is i686-unknown-gnu0.3
+
+ === binutils tests ===
+
+ @@ -114,8 +114,8 @@ Running [...]/hurd/binutils/testsuite/bi
+
+ # of expected passes 83
+ # of unsupported tests 2
+ -Test Run By thomas on Sun Nov 7 20:20:55 2010
+ -Native configuration is i686-pc-linux-gnu
+ +Test Run By tschwinge on Sun Nov 7 21:10:31 2010
+ +Native configuration is i686-unknown-gnu0.3
+
+ === ld tests ===
+
+ @@ -295,9 +295,9 @@ Running [...]/hurd/ld/testsuite/ld-elf/e
+ PASS: preinit array
+ PASS: init array
+ PASS: fini array
+ -PASS: static preinit array
+ -PASS: static init array
+ -PASS: static fini array
+ +XFAIL: static preinit array
+ +XFAIL: static init array
+ +XFAIL: static fini array
+ Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
+ PASS: ld link shared library
+ PASS: ld export symbols from archive
+ @@ -551,8 +551,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ PASS: ELF DSO weak func last DSO
+ PASS: ELF weak func first
+ PASS: ELF weak func last
+ -PASS: ELF weak func first DSO
+ -PASS: ELF weak func last DSO
+ +XFAIL: ELF weak func first DSO
+ +XFAIL: ELF weak func last DSO
+ PASS: ELF DSO weak data first
+ PASS: ELF DSO weak data last
+ PASS: ELF DSO weak data first DSO
+ @@ -563,10 +563,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ PASS: ELF weak data last
+ PASS: ELF weak data first common
+ PASS: ELF weak data last common
+ -PASS: ELF weak data first DSO
+ -PASS: ELF weak data last DSO
+ -PASS: ELF weak data first DSO common
+ -PASS: ELF weak data last DSO common
+ +XFAIL: ELF weak data first DSO
+ +XFAIL: ELF weak data last DSO
+ +XFAIL: ELF weak data first DSO common
+ +XFAIL: ELF weak data last DSO common
+ PASS: ELF DSO small bar (size)
+ PASS: ELF DSO foo with small bar (size)
+ PASS: ELF DSO big bar (size)
+ @@ -871,13 +871,13 @@ Running [...]/hurd/ld/testsuite/ld-xtens
+
+ === ld Summary ===
+
+ -# of expected passes 616
+ -# of expected failures 8
+ +# of expected passes 607
+ +# of expected failures 17
+ # of untested testcases 6
+ /media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
+
+ -Test Run By thomas on Sun Nov 7 20:20:38 2010
+ -Native configuration is i686-pc-linux-gnu
+ +Test Run By tschwinge on Sun Nov 7 21:05:14 2010
+ +Native configuration is i686-unknown-gnu0.3
+
+ === gas tests ===
+
+
+# Analysis
+
+## `FAIL: static [...]`
+
+The testsuite isn't prepared for using `crt0.o` instead of `crt1.o` depending
+on whether a static or dynamic executable is created. Documented in
+`ld/configure.host`. Perhaps we should finally rewrite this messy code in
+glibc to avoid this difference...
+
+## `FAIL: ld-elf/64ksec`
+
+On the idle grubber, this one takes a few minutes wall time to complete
+successfully ([[I/O system weakness|performance/io_system/binutils_ld_64ksec]],
+so assuming
+some system load variation, the testsuite's timeout may trigger.
+
+## `FAIL: ELF weak [...]`
+
+[[I|tschwinge]] suppose this is due to us having an override w.r.t. weak symbol
+handling in glibc, needed for our external [[libpthread]]. TODO: document
+properly.
diff --git a/open_issues/binutils/testsuite/log_build-diff b/open_issues/binutils/testsuite/log_build-diff
new file mode 100644
index 00000000..461dd9bd
--- /dev/null
+++ b/open_issues/binutils/testsuite/log_build-diff
@@ -0,0 +1,616 @@
+--- /dev/fd/63 2010-11-08 06:42:49.315023002 +0100
++++ /dev/fd/62 2010-11-08 06:42:49.315023002 +0100
+@@ -1,6 +1,6 @@
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
+ checking for a BSD-compatible install... /usr/bin/install -c
+ checking whether ln works... yes
+ checking whether ln -s works... yes
+@@ -96,7 +96,7 @@
+ checking for gmsgfmt... /usr/bin/msgfmt
+ checking for xgettext... /usr/bin/xgettext
+ checking for msgmerge... /usr/bin/msgmerge
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -105,9 +105,9 @@
+ checking whether we are using the GNU C compiler... yes
+ checking whether gcc accepts -g... yes
+ checking for gcc option to accept ISO C89... none needed
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking for library containing strerror... none required
+ checking how to run the C preprocessor... gcc -E
+ checking for grep that handles long lines and -e... /bin/grep
+@@ -214,11 +214,11 @@
+ checking whether to enable maintainer-specific portions of Makefiles... no
+ checking for makeinfo... makeinfo --split-size=5000000
+ checking for perl... perl
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-ranlib... ranlib
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-ranlib... ranlib
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -273,7 +273,7 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+@@ -347,13 +347,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -368,7 +368,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -402,10 +402,10 @@
+ mkdir -p -- ./bfd
+ Configuring in ./bfd
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -422,9 +422,9 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-ranlib... ranlib
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-ranlib... ranlib
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -453,34 +453,34 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... (cached) ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... (cached) ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
++checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... no
+@@ -563,22 +563,22 @@
+ checking sys/procfs.h usability... yes
+ checking sys/procfs.h presence... yes
+ checking for sys/procfs.h... yes
+-checking for prstatus_t in sys/procfs.h... yes
++checking for prstatus_t in sys/procfs.h... no
+ checking for prstatus32_t in sys/procfs.h... no
+ checking for prstatus_t.pr_who in sys/procfs.h... no
+ checking for prstatus32_t.pr_who in sys/procfs.h... no
+-checking for pstatus_t in sys/procfs.h... no
++checking for pstatus_t in sys/procfs.h... yes
+ checking for pxstatus_t in sys/procfs.h... no
+ checking for pstatus32_t in sys/procfs.h... no
+-checking for prpsinfo_t in sys/procfs.h... yes
++checking for prpsinfo_t in sys/procfs.h... no
+ checking for prpsinfo32_t in sys/procfs.h... no
+-checking for psinfo_t in sys/procfs.h... no
++checking for psinfo_t in sys/procfs.h... yes
+ checking for psinfo32_t in sys/procfs.h... no
+-checking for lwpstatus_t in sys/procfs.h... no
++checking for lwpstatus_t in sys/procfs.h... yes
+ checking for lwpxstatus_t in sys/procfs.h... no
+ checking for lwpstatus_t.pr_context in sys/procfs.h... no
+-checking for lwpstatus_t.pr_reg in sys/procfs.h... no
+-checking for lwpstatus_t.pr_fpreg in sys/procfs.h... no
++checking for lwpstatus_t.pr_reg in sys/procfs.h... yes
++checking for lwpstatus_t.pr_fpreg in sys/procfs.h... yes
+ checking for win32_pstatus_t in sys/procfs.h... no
+ checking linker --as-needed support... yes
+ checking for cos in -lm... yes
+@@ -593,7 +593,7 @@
+ checking for unistd.h... (cached) yes
+ checking for getpagesize... (cached) yes
+ checking for working mmap... yes
+-checking for madvise... yes
++checking for madvise... no
+ checking for mprotect... yes
+ configure: updating cache ./config.cache
+ configure: creating ./config.status
+@@ -1211,36 +1211,15 @@
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../hurd/bfd/dwarf1.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../hurd/bfd/dwarf1.c -o dwarf1.o
+ mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c -o i386linux.lo ../../hurd/bfd/i386linux.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c ../../hurd/bfd/i386linux.c -o i386linux.o
+-mv -f .deps/i386linux.Tpo .deps/i386linux.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c -o aout32.lo ../../hurd/bfd/aout32.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c ../../hurd/bfd/aout32.c -o aout32.o
+-mv -f .deps/aout32.Tpo .deps/aout32.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c -o pei-i386.lo ../../hurd/bfd/pei-i386.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c ../../hurd/bfd/pei-i386.c -o pei-i386.o
+-mv -f .deps/pei-i386.Tpo .deps/pei-i386.Plo
+-rm -f peigen.c
+-sed -e s/XX/pe/g < ../../hurd/bfd/peXXigen.c > peigen.new
+-mv -f peigen.new peigen.c
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c -o peigen.lo peigen.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c peigen.c -o peigen.o
+-mv -f .deps/peigen.Tpo .deps/peigen.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c -o cofflink.lo ../../hurd/bfd/cofflink.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c ../../hurd/bfd/cofflink.c -o cofflink.o
+-mv -f .deps/cofflink.Tpo .deps/cofflink.Plo
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c -o elf32-gen.lo ../../hurd/bfd/elf32-gen.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c ../../hurd/bfd/elf32-gen.c -o elf32-gen.o
+ mv -f .deps/elf32-gen.Tpo .deps/elf32-gen.Plo
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c -o cpu-i386.lo ../../hurd/bfd/cpu-i386.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c ../../hurd/bfd/cpu-i386.c -o cpu-i386.o
+ mv -f .deps/cpu-i386.Tpo .deps/cpu-i386.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c -o trad-core.lo ../../hurd/bfd/trad-core.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c ../../hurd/bfd/trad-core.c -o trad-core.o
+-mv -f .deps/trad-core.Tpo .deps/trad-core.Plo
+ rm -f tofiles
+ f=""; \
+- for i in elf32-i386.lo elf-ifunc.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo i386linux.lo aout32.lo pei-i386.lo peigen.lo cofflink.lo elf32-gen.lo cpu-i386.lo trad-core.lo ; do \
++ for i in elf32-i386.lo elf-ifunc.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo elf32-gen.lo cpu-i386.lo ; do \
+ case " $f " in \
+ *" $i "*) ;; \
+ *) f="$f $i" ;; \
+@@ -1250,7 +1229,7 @@
+ /bin/bash ../../hurd/bfd/../move-if-change tofiles ofiles
+ touch stamp-ofiles
+ /bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -release `cat libtool-soversion` -o libbfd.la -rpath [...].install/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles` -lz
+-libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o i386linux.o aout32.o pei-i386.o peigen.o cofflink.o elf32-gen.o cpu-i386.o trad-core.o
++libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o elf32-gen.o cpu-i386.o
+ libtool: link: ranlib .libs/libbfd.a
+ libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
+ libtooldir=`/bin/bash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
+@@ -1266,10 +1245,10 @@
+ mkdir -p -- ./opcodes
+ Configuring in ./opcodes
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -1286,7 +1265,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -1307,8 +1286,8 @@
+ checking minix/config.h presence... no
+ checking for minix/config.h... no
+ checking whether it is safe to define __EXTENSIONS__... yes
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking how to print strings... printf
+ checking for a sed that does not truncate output... /bin/sed
+ checking for fgrep... /bin/grep -F
+@@ -1317,27 +1296,27 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... (cached) ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... (cached) ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
++checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -1441,10 +1420,10 @@
+ mkdir -p -- ./binutils
+ Configuring in ./binutils
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -1461,7 +1440,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -1492,28 +1471,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -1533,7 +1512,7 @@
+ checking for xgettext... /usr/bin/xgettext
+ checking for msgmerge... /usr/bin/msgmerge
+ checking whether to enable maintainer-specific portions of Makefiles... no
+-checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
++checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
+ checking for string.h... (cached) yes
+ checking for strings.h... (cached) yes
+ checking for stdlib.h... (cached) yes
+@@ -1906,10 +1885,10 @@
+ mkdir -p -- ./gas
+ Configuring in ./gas
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -1926,7 +1905,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -1957,28 +1936,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -2158,10 +2137,10 @@
+ mkdir -p -- ./gprof
+ Configuring in ./gprof
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -2178,7 +2157,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -2209,28 +2188,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -2389,10 +2368,10 @@
+ mkdir -p -- ./ld
+ Configuring in ./ld
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -2414,7 +2393,7 @@
+ checking for grep that handles long lines and -e... /bin/grep
+ checking for egrep... /bin/grep -E
+ Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -2442,28 +2421,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -2546,13 +2525,13 @@
+ /bin/bash ../../hurd/ld/../ylwrap ../../hurd/ld/ldgram.y y.tab.c ldgram.c y.tab.h ldgram.h y.output ldgram.output -- bison -y -d
+ updating ldgram.h
+ (echo "/* This file is automatically generated. DO NOT EDIT! */";\
+- for f in `echo " " eelf_i386.o ei386linux.o "" \
++ for f in `echo " " eelf_i386.o "" \
+ | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
+ echo "extern ld_emulation_xfer_type ld_${f}_emulation;"; \
+ done;\
+ echo "";\
+ echo "#define EMULATION_LIST \\";\
+- for f in `echo " " eelf_i386.o ei386linux.o "" \
++ for f in `echo " " eelf_i386.o "" \
+ | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
+ echo " &ld_${f}_emulation, \\"; \
+ done;\
+@@ -2639,8 +2618,8 @@
+ mv -f .deps/ldctor.Tpo .deps/ldctor.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
+ -DDEFAULT_EMULATION='"elf_i386"' \
+- -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-pc-linux-gnu/bin"' \
+- -DTARGET='"i686-pc-linux-gnu"' -DTARGET_SYSTEM_ROOT=\"\" \
++ -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-unknown-gnu0.3/bin"' \
++ -DTARGET='"i686-unknown-gnu0.3"' -DTARGET_SYSTEM_ROOT=\"\" \
+ ../../hurd/ld/ldmain.c
+ mv -f .deps/ldmain.Tpo .deps/ldmain.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldwrite.o -MD -MP -MF .deps/ldwrite.Tpo -c -o ldwrite.o ../../hurd/ld/ldwrite.c
+@@ -2654,7 +2633,7 @@
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmisc.o -MD -MP -MF .deps/ldmisc.Tpo -c -o ldmisc.o ../../hurd/ld/ldmisc.c
+ mv -f .deps/ldmisc.Tpo .deps/ldmisc.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
+- -DSCRIPTDIR='"[...].install/i686-pc-linux-gnu/lib"' -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-pc-linux-gnu/bin"' \
++ -DSCRIPTDIR='"[...].install/i686-unknown-gnu0.3/lib"' -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-unknown-gnu0.3/bin"' \
+ ../../hurd/ld/ldfile.c
+ mv -f .deps/ldfile.Tpo .deps/ldfile.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldcref.o -MD -MP -MF .deps/ldcref.Tpo -c -o ldcref.o ../../hurd/ld/ldcref.c
+@@ -2662,14 +2641,11 @@
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../hurd/ld/plugin.c
+ mv -f .deps/plugin.Tpo .deps/plugin.Po
+ cp ../../hurd/ld/emultempl/astring.sed stringify.sed
+-LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-pc-linux-gnu"
++LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-unknown-gnu0.3 i686-unknown-gnu0.3 i686-unknown-gnu0.3 "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-unknown-gnu0.3"
+ gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT eelf_i386.o -MD -MP -MF .deps/eelf_i386.Tpo -c -o eelf_i386.o eelf_i386.c
+ mv -f .deps/eelf_i386.Tpo .deps/eelf_i386.Po
+-LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no i386linux "i686-pc-linux-gnuaout"
+-gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ei386linux.o -MD -MP -MF .deps/ei386linux.Tpo -c -o ei386linux.o ei386linux.c
+-mv -f .deps/ei386linux.Tpo .deps/ei386linux.Po
+-/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
+-libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
++/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
++libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
+ touch ld.1
+ perl ../../hurd/ld/../etc/texi2pod.pl -I ../../hurd/ld -I ../../hurd/ld/../bfd/doc -I ../bfd/doc -I ../../hurd/ld/../libiberty -Dman < ../../hurd/ld/ld.texinfo > ld.pod
+ (pod2man --center="GNU Development Tools" --release="binutils-2.21.51" --section=1 ld.pod | \
diff --git a/open_issues/binutils/testsuite/sum_hurd b/open_issues/binutils/testsuite/sum_hurd
new file mode 100644
index 00000000..d1373e39
--- /dev/null
+++ b/open_issues/binutils/testsuite/sum_hurd
@@ -0,0 +1,1316 @@
+Test Run By tschwinge on Sun Nov 7 21:03:30 2010
+Native configuration is i686-unknown-gnu0.3
+
+ === binutils tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/binutils/testsuite/binutils-all/ar.exp ...
+PASS: ar long file names
+PASS: ar symbol table
+PASS: ar thin archive
+PASS: ar thin archive with nested archive
+PASS: ar argument parsing
+PASS: ar deterministic archive
+PASS: ar unique symbol in archive
+Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/compress.exp ...
+PASS: objcopy (objcopy compress debug sections)
+PASS: objcopy (objcopy decompress compressed debug sections)
+PASS: objcopy decompress debug sections in archive
+PASS: objcopy compress debug sections in archive
+Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
+UNSUPPORTED: Update ELF header 1
+PASS: Update ELF header 2
+PASS: Update ELF header 3
+Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
+PASS: objcopy on compressed debug sections
+PASS: strip on uncompressed debug sections
+PASS: strip on compressed debug sections
+Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
+PASS: nm (no arguments)
+PASS: nm -g
+PASS: nm -P
+Running [...]/hurd/binutils/testsuite/binutils-all/objcopy.exp ...
+PASS: objcopy (simple copy)
+PASS: objcopy --reverse-bytes
+PASS: objcopy -i --interleave-width
+PASS: objcopy -O srec
+PASS: objcopy --set-start
+PASS: objcopy --adjust-start
+PASS: objcopy --adjust-vma
+PASS: objcopy --adjust-section-vma +
+PASS: objcopy --adjust-section-vma =
+PASS: strip
+PASS: strip with saving a symbol
+PASS: simple objcopy of executable
+PASS: run objcopy of executable
+PASS: run stripped executable
+PASS: run stripped executable with saving a symbol
+PASS: keep only debug data
+PASS: simple objcopy of debug data
+PASS: objcopy (ELF unknown section type)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: copy removing group member
+PASS: copy with setting section flags 1
+PASS: add notes section
+PASS: copy with setting section flags 2
+PASS: copy with setting section flags 3
+PASS: strip --strip-unneeded on common symbol
+PASS: strip with section group 1
+PASS: strip with section group 2
+PASS: strip empty file
+PASS: strip with section group 4
+PASS: strip with section group 5
+PASS: strip with section group 6
+PASS: strip with section group 7
+PASS: strip with section group 8
+PASS: strip with section group 9
+PASS: strip on STB_GNU_UNIQUE
+PASS: objcopy keeps symbols needed by relocs
+PASS: --localize-hidden test 1
+PASS: unordered .debug_info references to .debug_ranges
+UNSUPPORTED: unordered .debug_info references to .debug_ranges
+PASS: objcopy add-section
+PASS: objcopy add-empty-section
+PASS: objcopy on sections with SHF_EXCLUDE
+PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
+PASS: --localize-hidden test 2
+Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
+PASS: objdump -i
+PASS: objdump -f
+PASS: objdump -h
+PASS: objdump -t
+PASS: objdump -r
+PASS: objdump -s
+PASS: objdump -s -j .zdebug_abbrev
+PASS: objdump -W
+Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
+PASS: finding out ELF size with readelf -h
+PASS: readelf -h
+PASS: readelf -S
+PASS: readelf -s
+PASS: readelf -r
+PASS: readelf -wi
+PASS: readelf -wa (compressed)
+PASS: readelf -p
+Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
+PASS: size (no arguments)
+PASS: size -A
+Running [...]/hurd/binutils/testsuite/binutils-all/vax/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/windres/windres.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
+
+ === binutils Summary ===
+
+# of expected passes 83
+# of unsupported tests 2
+Test Run By tschwinge on Sun Nov 7 21:10:31 2010
+Native configuration is i686-unknown-gnu0.3
+
+ === ld tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/ld/testsuite/ld-alpha/alpha.exp ...
+Running [...]/hurd/ld/testsuite/ld-arm/arm-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-auto-import/auto-import.exp ...
+Running [...]/hurd/ld/testsuite/ld-bootstrap/bootstrap.exp ...
+UNTESTED: bootstrap
+UNTESTED: bootstrap with strip
+UNTESTED: bootstrap with --static
+UNTESTED: bootstrap with --traditional-format
+UNTESTED: bootstrap with --no-keep-memory
+UNTESTED: bootstrap with --relax
+Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
+PASS: cdtest
+PASS: cdtest with -Ur
+Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
+PASS: check sections 1
+PASS: check sections 2
+Running [...]/hurd/ld/testsuite/ld-cris/cris.exp ...
+Running [...]/hurd/ld/testsuite/ld-crx/crx.exp ...
+Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
+Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
+Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
+PASS: ld-discard/extern
+PASS: ld-discard/start
+PASS: ld-discard/static
+PASS: ld-discard/zero-range
+PASS: ld-discard/zero-rel
+Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
+PASS: Run with -paudit.so
+PASS: Run with -Paudit.so
+PASS: Run with --depaudit=audit.so
+PASS: Run with shared with --audit
+PASS: Run with shared with --audit
+PASS: Run with -lusesaudit
+PASS: Run with -lusesaudit -lusesaudit2
+Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
+PASS: strip -z max-page-size=0x200000 (maxpage1)
+PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
+PASS: strip -z max-page-size=0x100000 (maxpage1)
+PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
+PASS: strip (maxpage1)
+PASS: strip -shared (maxpage1)
+PASS: objcopy (maxpage1)
+PASS: objcopy -shared (maxpage1)
+PASS: strip -z relro (relro1)
+PASS: strip -z relro -shared (relro1)
+PASS: objcopy -z relro (relro1)
+PASS: objcopy -z relro -shared (relro1)
+PASS: strip -z relro -shared (relro2)
+PASS: objcopy -z relro -shared (relro2)
+PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
+PASS: objcopy (tbss1)
+PASS: objcopy -z relro (tbss1)
+PASS: objcopy -shared (tbss1)
+PASS: objcopy -shared -z relro (tbss1)
+PASS: objcopy -z max-page-size=0x100000 (tbss1)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
+PASS: objcopy (tdata1)
+PASS: objcopy -z relro (tdata1)
+PASS: objcopy -shared (tdata1)
+PASS: objcopy -shared -z relro (tdata1)
+PASS: objcopy -z max-page-size=0x100000 (tdata1)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
+PASS: objcopy (tbss2)
+PASS: objcopy -z relro (tbss2)
+PASS: objcopy -shared (tbss2)
+PASS: objcopy -shared -z relro (tbss2)
+PASS: objcopy -z max-page-size=0x100000 (tbss2)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
+PASS: objcopy (tdata2)
+PASS: objcopy -z relro (tdata2)
+PASS: objcopy -shared (tdata2)
+PASS: objcopy -shared -z relro (tdata2)
+PASS: objcopy -z max-page-size=0x100000 (tdata2)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
+Running [...]/hurd/ld/testsuite/ld-elf/compress.exp ...
+PASS: Build libfoo.so with compressed debug sections
+PASS: Build libbar.so with compressed debug sections
+PASS: Run normal with libfoo.so with compressed debug sections
+Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
+PASS: Build libdwarf1.so
+PASS: Run with libdwarf1.so first
+PASS: Run with libdwarf1.so last
+PASS: Strip -s libdwarf1c.so
+Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
+PASS: Guess the target size from eh-group1size.o
+PASS: Build eh-group1.o
+PASS: Link eh-group.o to eh-group
+Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
+PASS: ld-elf/commonpage1
+PASS: ld-elf/compress1a
+PASS: ld-elf/compress1b
+PASS: ld-elf/compress1c
+PASS: ld-elf/discard1
+PASS: ld-elf/discard2
+PASS: ld-elf/discard3
+PASS: ld-elf/dynsym1
+PASS: ld-elf/eh-frame-hdr
+PASS: ld-elf/eh5
+PASS: ld-elf/eh6
+PASS: ld-elf/empty
+PASS: ld-elf/empty2
+PASS: ld-elf/exclude3a
+PASS: ld-elf/exclude3b
+PASS: ld-elf/exclude3c
+PASS: ld-elf/expr1
+PASS: --extract-symbol test 1 (sections)
+PASS: --extract-symbol test 1 (symbols)
+PASS: --set-section-flags test 1 (sections)
+PASS: ld-elf/group1
+PASS: ld-elf/group10
+PASS: ld-elf/group2
+PASS: ld-elf/group3a
+PASS: ld-elf/group3b
+PASS: ld-elf/group4
+PASS: ld-elf/group5
+PASS: ld-elf/group6
+PASS: ld-elf/group7
+PASS: ld-elf/group8a
+PASS: ld-elf/group8b
+PASS: ld-elf/group9a
+PASS: ld-elf/group9b
+PASS: ld-elf/hash
+PASS: ld-elf/header
+PASS: ld-elf/init-fini-arrays
+PASS: ld-elf/linkonce1
+PASS: ld-elf/linkonce2
+PASS: ld-elf/linkoncerdiff
+PASS: ld-elf/loadaddr1
+PASS: ld-elf/loadaddr2
+PASS: ld-elf/loadaddr3a
+PASS: ld-elf/loadaddr3b
+PASS: ld-elf/local1
+PASS: ld-elf/maxpage1
+PASS: ld-elf/maxpage2
+PASS: ld-elf/maxpage3a
+PASS: ld-elf/merge
+PASS: ld-elf/merge2
+PASS: ld-elf/multibss1
+PASS: ld-elf/nobits-1
+PASS: ld-elf/noload-1
+PASS: ld-elf/noload-2
+PASS: ld-elf/noload-3
+PASS: ld-elf/note-1
+PASS: ld-elf/note-2
+PASS: ld-elf/orphan-region
+PASS: ld-elf/orphan
+PASS: ld-elf/orphan2
+PASS: ld-elf/orphan3
+PASS: ld-elf/orphan4
+PASS: ld-elf/overlay
+PASS: ld-elf/pr11304
+PASS: ld-elf/pr349
+PASS: relocatable with script
+PASS: ld-elf/seg
+PASS: ld-elf/stab
+PASS: ld-elf/textaddr1
+PASS: ld-elf/textaddr2
+PASS: ld-elf/textaddr3
+PASS: ld-elf/textaddr4
+PASS: ld-elf/textaddr5
+PASS: ld-elf/textaddr6
+PASS: ld-elf/textaddr7
+PASS: ld-elf/unknown
+PASS: ld-elf/unknown2
+PASS: ld-elf/warn1
+PASS: ld-elf/warn2
+PASS: Weak symbols in dynamic objects 1 (support)
+PASS: Weak symbols in dynamic objects 1 (main test)
+PASS: --gc-sections on tls variable
+PASS: preinit array
+PASS: init array
+PASS: fini array
+XFAIL: static preinit array
+XFAIL: static init array
+XFAIL: static fini array
+Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
+PASS: ld link shared library
+PASS: ld export symbols from archive
+PASS: ld link shared library with --exclude-libs
+PASS: ld exclude symbols from archive - --exclude-libs libexclude
+PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
+PASS: ld exclude symbols from archive - --exclude-libs ALL
+PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
+PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
+PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
+Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
+PASS: read-only .eh_frame section
+PASS: read-only .gcc_except_table section
+Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
+PASS: assignment of ELF sections to segments (same page)
+PASS: assignment of ELF sections to segments (adjacent pages)
+PASS: assignment of ELF sections to segments (disjoint pages)
+Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
+PASS: ld-elf/64ksec-r
+PASS: ld-elf/64ksec
+Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
+PASS: Build libfoo.so
+PASS: Build versioned libfoo.so
+PASS: Build libbar.so
+PASS: Build warn libbar.so
+PASS: Build hidden libbar.so
+PASS: Build protected libbar.so
+PASS: Build libbar.so with libfoo.so
+PASS: Build libar.so with versioned libfoo.so
+PASS: Build hidden libbar.so with libfoo.so
+PASS: Build hidden libar.so with versioned libfoo.so
+PASS: Build protected libbar.so with libfoo.so
+PASS: Build protected libbar.so with versioned libfoo.so
+PASS: Build libdl1.so
+PASS: Build libdl2a.so with --dynamic-list=dl2.list
+PASS: Build libdl2a.so with --dynamic-list=dl2a.list
+PASS: Build libdl2a.so with --dynamic-list-data
+PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
+PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
+PASS: Build libdl4a.so with --dynamic-list=dl4.list
+PASS: Build libdl4b.so with --dynamic-list-data
+PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
+PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
+PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
+PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
+PASS: Build libdl6a.so
+PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
+PASS: Build libdl6c.so with -Bsymbolic
+PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
+PASS: Build libdata1.so
+PASS: Build libcomm1.o
+PASS: Build libfunc1.so
+PASS: Build libpr9676-1.a
+PASS: Build libpr9676-2.a
+PASS: Build libpr9676-3.so
+PASS: Build libpr9676-4.so
+PASS: Build libpr9676-4a.so
+PASS: Build libpr9679.so
+PASS: Build libpr11138-1.so
+PASS: Build libpr11138-2.o
+PASS: Run normal with libfoo.so
+PASS: Run protected with libfoo.so
+PASS: Run hidden with libfoo.so
+PASS: Run normal with versioned libfoo.so
+PASS: Run warn with versioned libfoo.so
+PASS: Run protected with versioned libfoo.so
+PASS: Run hidden with versioned libfoo.so
+PASS: Run normal libbar.so with libfoo.so
+PASS: Run protected libbar.so with libfoo.so
+PASS: Run hidden libbar.so with libfoo.so
+PASS: Run normal libbar.so with versioned libfoo.so
+PASS: Run protected libbar.so with versioned libfoo.so
+PASS: Run hidden libbar.so with versioned libfoo.so
+PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
+PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
+PASS: Run with libdl2a.so
+PASS: Run with libdl2b.so
+PASS: Run with libdl2c.so
+PASS: Run with libdl4a.so
+PASS: Run with libdl4b.so
+PASS: Run with libdl4c.so
+PASS: Run with libdl4d.so
+PASS: Run with libdl4e.so
+PASS: Run with libdl4f.so
+PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
+PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
+PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
+PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
+PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
+PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
+PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
+PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
+PASS: Run dl6b2 with dlopen on libdl6b.so
+PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
+PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
+PASS: Run with libdata1.so
+PASS: Run with libfunc1.so comm1.o
+PASS: Run with comm1.o libfunc1.so
+PASS: Run with pr11138-2.c libpr11138-1.so
+PASS: Run with libpr11138-1.so pr11138-2.c
+PASS: Build libdl3a.so with --dynamic-list=dl3.list
+PASS: Build libdl3b.so with -Bsymbolic
+PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
+PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
+PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
+PASS: Run with libdl3a.so
+PASS: Run with libdl3c.so
+PASS: Run with libnew1a.so
+PASS: Run with libnew1b.so
+Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
+PASS: tls_common
+Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
+PASS: Build libwrap1a.so
+PASS: Build libwrap1b.so
+PASS: Run with libwrap1a.so and libwrap1b.so
+PASS: Run with libwrap1b.so and libwrap1a.so
+Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
+PASS: --sort-common (descending)
+PASS: --sort-common (ascending)
+PASS: size/aligment change of common symbols (warning 1)
+PASS: size/aligment change of common symbols (change 1)
+PASS: size/aligment change of common symbols (warning 2)
+PASS: size/aligment change of common symbols (change 2)
+Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
+PASS: vers1
+PASS: vers2
+PASS: vers3
+PASS: vers4
+PASS: vers4a
+PASS: vers4b
+PASS: vers5
+PASS: vers6
+PASS: vers7a
+PASS: vers7
+PASS: vers8
+PASS: vers9
+PASS: vers10
+PASS: vers11
+PASS: vers12
+PASS: ar with versioned solib
+PASS: vers14
+PASS: vers15
+PASS: vers16a
+PASS: vers16
+PASS: vers17
+PASS: vers18
+PASS: vers19
+PASS: vers20a
+PASS: vers20
+PASS: vers21
+PASS: vers22a
+PASS: vers22b
+PASS: vers22
+PASS: vers23a
+PASS: vers23b
+PASS: vers23c
+PASS: vers23d
+PASS: vers23
+PASS: vers24a
+PASS: vers24b
+PASS: vers24c
+PASS: vers25a
+PASS: vers25b1
+PASS: vers25b2
+PASS: vers26a
+PASS: vers26b1
+PASS: vers26b2
+PASS: vers26b3
+PASS: vers27a
+PASS: vers27b
+PASS: vers27c1
+PASS: vers27c2
+PASS: vers27d1
+PASS: vers27d2
+PASS: vers27d3
+PASS: vers27d4
+PASS: vers27d5
+PASS: vers28a
+PASS: vers28b
+PASS: vers28c
+PASS: vers29
+PASS: vers30
+PASS: vers31
+PASS: vers32a
+PASS: vers32b
+Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
+PASS: ld-elfvsb/hidden0
+PASS: ld-elfvsb/hidden1
+PASS: ld-elfvsb/hidden2
+PASS: ld-elfvsb/internal0
+PASS: ld-elfvsb/internal1
+PASS: ld-elfvsb/protected0
+PASS: ld-elfvsb/protected1
+PASS: visibility (hidden) (non PIC)
+PASS: visibility (hidden) (non PIC, load offset)
+PASS: visibility (hidden)
+PASS: visibility (hidden) (PIC main, non PIC so)
+PASS: visibility (hidden) (PIC main)
+PASS: visibility (hidden_normal) (non PIC)
+PASS: visibility (hidden_normal) (non PIC, load offset)
+PASS: visibility (hidden_normal)
+PASS: visibility (hidden_normal) (PIC main, non PIC so)
+PASS: visibility (hidden_normal) (PIC main)
+PASS: visibility (hidden_undef) (non PIC)
+PASS: visibility (hidden_undef) (non PIC, load offset)
+PASS: visibility (hidden_undef)
+PASS: visibility (hidden_undef) (PIC main, non PIC so)
+PASS: visibility (hidden_undef) (PIC main)
+PASS: visibility (hidden_undef_def) (non PIC)
+PASS: visibility (hidden_undef_def) (non PIC, load offset)
+PASS: visibility (hidden_undef_def)
+PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
+PASS: visibility (hidden_undef_def) (PIC main)
+PASS: visibility (hidden_weak) (non PIC)
+PASS: visibility (hidden_weak) (non PIC, load offset)
+PASS: visibility (hidden_weak)
+PASS: visibility (hidden_weak) (PIC main, non PIC so)
+PASS: visibility (hidden_weak) (PIC main)
+PASS: visibility (protected) (non PIC)
+PASS: visibility (protected) (non PIC, load offset)
+PASS: visibility (protected)
+PASS: visibility (protected) (PIC main, non PIC so)
+PASS: visibility (protected) (PIC main)
+PASS: visibility (protected_undef) (non PIC)
+PASS: visibility (protected_undef) (non PIC, load offset)
+PASS: visibility (protected_undef)
+PASS: visibility (protected_undef) (PIC main, non PIC so)
+PASS: visibility (protected_undef) (PIC main)
+PASS: visibility (protected_undef_def) (non PIC)
+PASS: visibility (protected_undef_def) (non PIC, load offset)
+PASS: visibility (protected_undef_def)
+PASS: visibility (protected_undef_def) (PIC main, non PIC so)
+PASS: visibility (protected_undef_def) (PIC main)
+PASS: visibility (protected_weak) (non PIC)
+PASS: visibility (protected_weak) (non PIC, load offset)
+PASS: visibility (protected_weak)
+PASS: visibility (protected_weak) (PIC main, non PIC so)
+PASS: visibility (protected_weak) (PIC main)
+PASS: visibility (normal) (non PIC)
+PASS: visibility (normal) (non PIC, load offset)
+PASS: visibility (normal)
+PASS: visibility (normal) (PIC main, non PIC so)
+PASS: visibility (normal) (PIC main)
+PASS: common hidden symbol
+PASS: weak hidden symbol DSO last
+PASS: weak hidden symbol DSO first
+Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
+PASS: ELF DSO weak func first
+PASS: ELF DSO weak func last
+PASS: ELF DSO weak func first DSO
+PASS: ELF DSO weak func last DSO
+PASS: ELF weak func first
+PASS: ELF weak func last
+XFAIL: ELF weak func first DSO
+XFAIL: ELF weak func last DSO
+PASS: ELF DSO weak data first
+PASS: ELF DSO weak data last
+PASS: ELF DSO weak data first DSO
+PASS: ELF DSO weak data last DSO
+PASS: ELF DSO weak data first DSO common
+PASS: ELF DSO weak data last DSO common
+PASS: ELF weak data first
+PASS: ELF weak data last
+PASS: ELF weak data first common
+PASS: ELF weak data last common
+XFAIL: ELF weak data first DSO
+XFAIL: ELF weak data last DSO
+XFAIL: ELF weak data first DSO common
+XFAIL: ELF weak data last DSO common
+PASS: ELF DSO small bar (size)
+PASS: ELF DSO foo with small bar (size)
+PASS: ELF DSO big bar (size)
+PASS: ELF weak size
+PASS: ld-elfweak/size2
+Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/tls.exp ...
+Running [...]/hurd/ld/testsuite/ld-gc/gc.exp ...
+PASS: Check --gc-section
+PASS: Check --gc-section/-q
+PASS: Check --gc-section/-r/-e
+PASS: Check --gc-section/-r/-u
+PASS: --gc-sections -r without -e
+PASS: --gc-sections with note section
+PASS: --gc-sections with __start_
+PASS: --gc-sections with shared library
+Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
+Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
+PASS: TLS -fpic -shared transitions
+PASS: TLS descriptor -fpic -shared transitions
+PASS: Helper shared library
+PASS: TLS -fpic and -fno-pic exec transitions
+PASS: TLS descriptor -fpic and -fno-pic exec transitions
+PASS: TLS -fno-pic -shared
+PASS: TLS with global dynamic and descriptors
+PASS: TLS in debug sections
+PASS: TLS @indntpoff with %eax
+PASS: Reloc section order
+PASS: Basic --emit-relocs support
+PASS: -z combreloc relocation sections
+PASS: TLS GD->LE transition
+PASS: TLS LD->LE transition
+PASS: TLS IE->LE transition
+PASS: Absolute non-overflowing relocs
+PASS: PCREL8 overflow
+PASS: PCREL16 overflow
+PASS: PCREL16 absolute reloc
+PASS: Invalid allocated section
+PASS: --warn-shared-textrel --fatal-warnings
+PASS: TLS GD->LE transition check
+PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
+PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
+PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
+PASS: TLS IE->LE transition check (R_386_TLS_IE)
+PASS: ld-i386/hidden1
+PASS: ld-i386/hidden2
+PASS: ld-i386/hidden3
+PASS: ld-i386/protected1
+PASS: ld-i386/protected2
+PASS: ld-i386/protected3
+PASS: TLS with PIE
+PASS: ld-i386/nogot1
+PASS: ld-i386/nogot2
+PASS: ld-i386/discarded1
+PASS: undefined symbol with compressed debug sections
+Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
+Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
+Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
+PASS: strip (ifunc-4-x86)
+PASS: objcopy (ifunc-4-x86)
+PASS: strip (ifunc-4-local-x86)
+PASS: objcopy (ifunc-4-local-x86)
+Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
+PASS: Building ifunc binaries
+PASS: Checking ifunc binaries
+PASS: ld-ifunc/ifunc-1-local-x86
+PASS: ld-ifunc/ifunc-1-x86
+PASS: ld-ifunc/ifunc-10-i386
+PASS: ld-ifunc/ifunc-11-i386
+PASS: ld-ifunc/ifunc-2-i386
+PASS: ld-ifunc/ifunc-2-local-i386
+PASS: ld-ifunc/ifunc-3a-x86
+PASS: ld-ifunc/ifunc-3b-x86
+PASS: ld-ifunc/ifunc-4-local-x86
+PASS: ld-ifunc/ifunc-4-x86
+PASS: ld-ifunc/ifunc-4a-x86
+PASS: ld-ifunc/ifunc-5a-i386
+PASS: ld-ifunc/ifunc-5a-local-i386
+PASS: ld-ifunc/ifunc-5b-i386
+PASS: ld-ifunc/ifunc-5b-local-i386
+PASS: ld-ifunc/ifunc-5r-local-i386
+PASS: ld-ifunc/ifunc-6a-i386
+PASS: ld-ifunc/ifunc-6b-i386
+PASS: ld-ifunc/ifunc-7a-i386
+PASS: ld-ifunc/ifunc-7b-i386
+PASS: ld-ifunc/ifunc-8-i386
+PASS: ld-ifunc/ifunc-9-x86
+Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
+PASS: -l: test (preparation)
+PASS: -l: test
+Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
+PASS: ld-linkonce/zeroehl32
+Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
+Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
+Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
+Running [...]/hurd/ld/testsuite/ld-mep/mep.exp ...
+Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
+Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-mmix/mmix.exp ...
+Running [...]/hurd/ld/testsuite/ld-mn10300/mn10300.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-compile.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-run.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
+Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
+PASS: weak undefined
+PASS: weak undefined data
+PASS: missing entry symbol
+Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
+PASS: plugin API enabled
+PASS: load plugin
+PASS: fail plugin onload
+PASS: fail plugin allsymbolsread
+PASS: fail plugin cleanup
+PASS: plugin all hooks
+PASS: plugin claimfile lost symbol
+PASS: plugin claimfile replace symbol
+PASS: plugin claimfile resolve symbol
+PASS: plugin claimfile replace file
+PASS: plugin set symbol visibility
+PASS: plugin ignore lib
+PASS: plugin claimfile replace lib
+Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
+Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
+Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/align.exp ...
+PASS: align1
+PASS: ld-scripts/align2a
+PASS: ld-scripts/align2b
+PASS: ld-scripts/align2c
+Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
+PASS: ALIGNOF
+Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
+PASS: ASSERT
+Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
+PASS: NOCROSSREFS 1
+PASS: NOCROSSREFS 2
+PASS: NOCROSSREFS 3
+Running [...]/hurd/ld/testsuite/ld-scripts/data.exp ...
+PASS: ld-scripts/data
+Running [...]/hurd/ld/testsuite/ld-scripts/default-script.exp ...
+PASS: ld-scripts/default-script1
+PASS: ld-scripts/default-script2
+PASS: ld-scripts/default-script3
+PASS: ld-scripts/default-script4
+Running [...]/hurd/ld/testsuite/ld-scripts/defined.exp ...
+PASS: DEFINED (PRMS 5699)
+PASS: ld-scripts/defined2
+PASS: ld-scripts/defined3
+Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
+PASS: dynamic sections
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
+PASS: ld-scripts/empty-address-1
+PASS: ld-scripts/empty-address-2a
+PASS: ld-scripts/empty-address-2b
+PASS: ld-scripts/empty-address-3a
+PASS: ld-scripts/empty-address-3b
+PASS: ld-scripts/empty-address-3c
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
+PASS: ld-scripts/empty-aligned
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
+PASS: ld-scripts/empty-orphan
+Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
+PASS: ld-scripts/expr1
+Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
+PASS: EXTERN
+Running [...]/hurd/ld/testsuite/ld-scripts/include.exp ...
+PASS: include-1
+Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
+PASS: map addresses
+Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
+PASS: overlay size
+PASS: overlay size (map check)
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
+PASS: PHDRS
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
+PASS: PHDRS2
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
+PASS: PHDRS headers
+PASS: PHDRS headers 3a
+Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
+PASS: ld-scripts/provide-1
+PASS: ld-scripts/provide-2
+XFAIL: ld-scripts/provide-3
+Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
+PASS: rgn-at1
+PASS: rgn-at2
+PASS: rgn-at3
+PASS: rgn-at4
+PASS: rgn-at5
+Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
+PASS: rgn-over1
+PASS: rgn-over1 (map check)
+PASS: rgn-over2
+PASS: rgn-over2 (map check)
+PASS: rgn-over3
+PASS: rgn-over3 (map check)
+PASS: rgn-over4
+PASS: rgn-over4 (map check)
+PASS: rgn-over5
+PASS: rgn-over5 (map check)
+PASS: rgn-over6
+PASS: rgn-over6 (map check)
+PASS: rgn-over7
+PASS: rgn-over7 (map check)
+PASS: rgn-over8
+Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
+PASS: script
+PASS: MRI script
+PASS: MEMORY
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
+Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
+PASS: ld-scripts/section-match-1
+Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
+PASS: ld-scripts/size-1
+PASS: ld-scripts/size-2
+Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
+PASS: SIZEOF
+Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
+PASS: --sort-section alignment
+PASS: SORT_BY_ALIGNMENT
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
+PASS: --sort-section name
+PASS: SORT_BY_NAME
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_NAME(SORT_BY_NAME())
+PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
+PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
+PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
+PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
+Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
+PASS: weak symbols
+Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
+PASS: Preserve default . = 0
+PASS: Preserve explicit . = 0
+Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
+PASS: selective1
+PASS: selective2
+PASS: selective3
+XFAIL: selective4
+XFAIL: selective5
+XFAIL: selective6
+Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/relax.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
+Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
+PASS: shared (non PIC)
+PASS: shared (non PIC, load offset)
+PASS: shared
+PASS: shared -Bsymbolic
+PASS: shared (PIC main, non PIC so)
+PASS: shared (PIC main)
+Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
+Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
+Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
+PASS: S-records
+PASS: S-records with constructors
+Running [...]/hurd/ld/testsuite/ld-tic6x/tic6x.exp ...
+Running [...]/hurd/ld/testsuite/ld-undefined/entry.exp ...
+PASS: Build libentry.a
+PASS: --entry foo archive
+PASS: --entry foo -u foo archive
+PASS: -shared --entry foo archive
+PASS: -shared --entry foo -u foo archive
+PASS: --entry foo
+PASS: --entry foo -u foo
+PASS: --entry 0x0
+Running [...]/hurd/ld/testsuite/ld-undefined/undefined.exp ...
+PASS: undefined
+PASS: undefined function
+PASS: undefined line
+Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
+PASS: weak undefined symbols
+Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
+Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
+Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/line.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/x86-64.exp ...
+Running [...]/hurd/ld/testsuite/ld-xc16x/xc16x.exp ...
+Running [...]/hurd/ld/testsuite/ld-xstormy16/xstormy16.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/coalesce.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/lcall.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
+
+ === ld Summary ===
+
+# of expected passes 607
+# of expected failures 17
+# of untested testcases 6
+/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
+
+Test Run By tschwinge on Sun Nov 7 21:05:14 2010
+Native configuration is i686-unknown-gnu0.3
+
+ === gas tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/gas/testsuite/gas/all/gas.exp ...
+PASS: pcrel values in assignment
+PASS: simplifiable double subtraction
+PASS: simplifiable double subtraction (-a)
+PASS: simple FP constants
+PASS: difference of two undefined symbols
+PASS: .equiv for symbol already set to another one
+PASS: .equiv for symbol already set to an expression
+PASS: .equ for symbol already set
+PASS: .equ for symbol already set through .eqv
+PASS: .eqv support
+PASS: .eqv for symbol already set
+PASS: == assignment support
+PASS: == assignment for symbol already set
+PASS: forward references
+PASS: forward expression
+PASS: .equ redefinitions
+PASS: .equ redefinitions (2)
+PASS: .equ redefinitions (3)
+PASS: .set for symbol already used as label
+PASS: .set for symbol already defined through .comm
+PASS: comment.s: comments in listings
+PASS: general info section in listings
+PASS: difference between forward references
+PASS: struct
+PASS: align
+PASS: align2
+PASS: alternate macro syntax
+PASS: alternate macro syntax (escape)
+PASS: evaluation of simple expressions
+PASS: conditional listings
+PASS: incbin
+PASS: assignment tests
+PASS: .sleb128 tests
+PASS: relax .uleb128
+PASS: bad byte directive
+PASS: .quad tests
+PASS: octa bignum
+PASS: weakref tests, relocations
+PASS: weakref tests, global syms
+PASS: weakref tests, local syms
+PASS: weakref tests, strong undefined syms
+PASS: weakref tests, weak undefined syms
+PASS: e: would close weakref loop: e => a => b => c => d => e
+PASS: a: would close weakref loop: a => b => c => d => e => a
+PASS: is already defined
+PASS: .strings tests
+PASS: gas/all/err-1.s (test for errors, line 3)
+PASS: gas/all/err-1.s (test for errors, line 4)
+PASS: gas/all/err-1.s (test for errors, line 5)
+PASS: gas/all/err-1.s (test for errors, line 6)
+PASS: gas/all/err-1.s (test for errors, line 7)
+PASS: gas/all/err-1.s (test for excess errors)
+PASS: gas/all/warn-1.s (test for warnings, line 3)
+PASS: gas/all/warn-1.s (test for errors, line 4)
+PASS: gas/all/warn-1.s (test for warnings, line 5)
+PASS: gas/all/warn-1.s (test for warnings, line 6)
+PASS: gas/all/warn-1.s (test for warnings, line 7)
+PASS: gas/all/warn-1.s (test for excess errors)
+Running [...]/hurd/gas/testsuite/gas/alpha/alpha.exp ...
+Running [...]/hurd/gas/testsuite/gas/arc/arc.exp ...
+Running [...]/hurd/gas/testsuite/gas/arc/warn.exp ...
+Running [...]/hurd/gas/testsuite/gas/arm/arm.exp ...
+Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
+Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
+Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
+PASS: CFI on i386
+PASS: cfi cfi-diag-1
+PASS: CFI common 1
+PASS: CFI common 2
+PASS: CFI common 3
+PASS: CFI common 4
+PASS: CFI common 5
+PASS: CFI common 7
+PASS: CFI common 6
+Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
+Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
+Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
+Running [...]/hurd/gas/testsuite/gas/crx/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/d10v/d10v.exp ...
+Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
+Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
+Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
+PASS: elf ehopt0
+PASS: .file file names
+PASS: group section
+PASS: group section
+PASS: group section name
+PASS: group section with multiple sections of same name
+PASS: group section with multiple sections of same name
+PASS: automatic section group a
+PASS: automatic section group b
+PASS: .equ redefinitions (ELF)
+PASS: elf equate relocs
+PASS: Ill-formed directives
+PASS: elf section0
+PASS: elf section1
+PASS: elf section2 list
+PASS: note section
+PASS: label arithmetic with multiple same-name sections
+PASS: elf section5 list
+PASS: ELF struct
+PASS: .set with expression
+PASS: ELF symbol versioning
+PASS: .set with IFUNC
+PASS: elf type list
+PASS: elf section6
+PASS: elf section7
+PASS: section flags
+PASS: DWARF2 1
+PASS: DWARF2 2
+PASS: DWARF2 3
+PASS: Check bad section flag
+Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
+Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300-coff.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300-elf.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t01_mov.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t02_mova.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t03_add.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t04_sub.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t05_cmp.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t06_ari2.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t07_ari3.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t08_or.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t09_xor.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t10_and.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t11_logs.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t12_bit.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t13_otr.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/basic/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/parse/parse.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/reloc/reloc.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
+Running [...]/hurd/gas/testsuite/gas/i386/i386.exp ...
+PASS: i386 float
+PASS: i386 general
+PASS: i386 inval
+PASS: i386 segment
+PASS: i386 inval-seg
+PASS: i386 inval-reg
+PASS: i386 modrm
+PASS: i386 naked reg
+PASS: i386 opcodes
+PASS: i386 opcodes (Intel disassembly)
+PASS: i386 opcodes (w/ suffix)
+PASS: i386 intel
+PASS: i386 intel16
+PASS: i386 intelbad
+PASS: i386 intel-ok
+PASS: i386 prefix
+PASS: i386 amd
+PASS: i386 katmai
+PASS: i386 jump
+PASS: i386 relax 1
+PASS: i386 relax 2
+PASS: i386 ssemmx2
+PASS: i386 sse2
+PASS: i386 sub
+PASS: i386 SSE3
+PASS: i386 SIB
+PASS: i386 SIB (Intel mode)
+PASS: i386 displacement
+PASS: i386 displacement (Intel mode)
+PASS: i386 32bit displacement
+PASS: i386 VMX
+PASS: i386 SMX
+PASS: i386 suffix
+PASS: i386 immed
+PASS: i386 equates
+PASS: i386 divide
+PASS: i386 padlock
+PASS: i386 cr8+
+PASS: i386 cr-err
+PASS: 32-bit SVME
+PASS: i386 amdfam10
+PASS: i386 SSSE3
+PASS: i386 rep prefix
+PASS: i386 rep prefix (with suffixes)
+PASS: i386 lockable insns
+PASS: i386 lockable insns (Intel disassembly)
+PASS: i386 lockbad-1
+PASS: i386 long insns
+PASS: i386 long insns (Intel disassembly)
+PASS: i386 fp
+PASS: i386 nops
+PASS: i386 nops 16bit 1
+PASS: i386 nops 1
+PASS: i386 -mtune=i386 nops 1
+PASS: i386 nops -march=i386 -mtune=i686 1
+PASS: i386 -mtune=i686 nops 1
+PASS: i386 -mtune=k8 nops 1
+PASS: i386 -mtune=core2 nops 1
+PASS: i386 -mtune=bdver1 nops 1
+PASS: i386 nops 2
+PASS: i386 nops -mtune=i386 2
+PASS: i386 -march=i386 -mtune=core2 nops 2
+PASS: i386 nops 3
+PASS: i386 nops -mtune=i386 3
+PASS: i386 -mtune=i686 nops 3
+PASS: i386 nops 4
+PASS: i386 nops -mtune=i386 4
+PASS: i386 -mtune=i686 nops 4
+PASS: i386 nops 5
+PASS: i386 -march=i686 nops 5
+PASS: i386 16-bit addressing in 32-bit mode.
+PASS: i386 32-bit addressing in 16-bit mode.
+PASS: i386 SSE4.1
+PASS: i386 SSE4.1 (Intel disassembly)
+PASS: i386 SSE4.2
+PASS: i386 SSE4.2 (Intel disassembly)
+PASS: i386 crc32
+PASS: i386 crc32 (Intel disassembly)
+PASS: i386 inval-crc32
+PASS: i386 SIMD
+PASS: i386 SIMD (Intel mode)
+PASS: i386 SIMD (with suffixes)
+PASS: i386 mem
+PASS: i386 mem (Intel mode)
+PASS: i386 reg
+PASS: i386 reg (Intel mode)
+PASS: i386
+PASS: i386 float AT&T mnemonic
+PASS: i386 float Intel mnemonic
+PASS: i386 arch 1
+PASS: i386 arch 2
+PASS: i386 arch 3
+PASS: i386 arch 4
+PASS: i386 arch 5
+PASS: i386 arch 6
+PASS: i386 arch 7
+PASS: i386 arch 9
+PASS: i386 arch 10
+PASS: i386 arch-10-1
+PASS: i386 arch-10-2
+PASS: i386 arch-10-3
+PASS: i386 arch-10-4
+PASS: i386 arch 11
+PASS: i386 arch 12
+PASS: i386 8087
+PASS: i386 287
+PASS: i386 387 (cmdline)
+PASS: i386 no87
+PASS: i386 no87-2
+PASS: i386 xsave
+PASS: i386 xsave (Intel mode)
+PASS: i386 AES
+PASS: i386 AES (Intel mode)
+PASS: i386 PCLMUL
+PASS: i386 PCLMUL (Intel mode)
+PASS: i386 AVX
+PASS: i386 AVX (Intel disassembly)
+PASS: i386 AVX scalar insns
+PASS: i386 AVX scalar insns (Intel disassembly)
+PASS: i386 SSE with AVX encoding
+PASS: i386 inval-avx
+PASS: i386 SSE check (none)
+PASS: i386 SSE check (.sse_check none)
+PASS: i386 SSE check (warning)
+PASS: i386 sse-check-error
+PASS: i386 SSE without AVX equivalent
+PASS: i386 movbe
+PASS: i386 movbe (Intel disassembly)
+PASS: i386 inval-movbe
+PASS: i386 EPT
+PASS: i386 EPT (Intel disassembly)
+PASS: i386 inval-ept
+PASS: i386 arch avx 1
+PASS: i386 arch-avx-1-1
+PASS: i386 arch-avx-1-2
+PASS: i386 arch-avx-1-3
+PASS: i386 arch-avx-1-4
+PASS: i386 arch-avx-1-5
+PASS: i386 arch-avx-1-6
+PASS: encoding option
+PASS: encoding option (Intel mode)
+PASS: encoding option with -msse2avx
+PASS: encoding option with -msse2avx (Intel mode)
+PASS: i386 FMA
+PASS: i386 FMA (Intel disassembly)
+PASS: i386 FMA scalar insns
+PASS: i386 FMA scalar insns (Intel disassembly)
+PASS: i386 FMA4
+PASS: i386 LWP
+PASS: i386 XOP
+PASS: i386 F16C
+PASS: i386 F16C (Intel disassembly)
+PASS: i386 FSGSBase
+PASS: i386 FSGSBase (Intel disassembly)
+PASS: i386 RdRnd
+PASS: i386 RdRnd (Intel disassembly)
+PASS: i386 reloc
+PASS: i386 jump16
+PASS: i386 white
+PASS: i386 pcrel reloc
+PASS: i386 abs reloc
+PASS: i386 intelpic
+PASS: i386 relax
+PASS: i386 gotpc
+PASS: i386 dynamic tls
+PASS: i386 pic tls
+PASS: i386 non-pic tls
+PASS: i386 .bss
+PASS: i386 relocs
+PASS: i386 reloc32
+PASS: x86 mixed mode relocs (32-bit object)
+PASS: i386 AT&T register names
+PASS: i386 intel-got
+PASS: i386 Intel register names
+PASS: i386 inval-equ-1
+PASS: i386 inval-equ-2
+PASS: i386 ifunc
+PASS: i386 l1om-inval
+PASS: i386 local PIC
+PASS: DWARF2 debugging information 1
+PASS: DWARF2 debugging information 2
+PASS: x86 Intel expressions
+PASS: string insn operands
+PASS: i386 string-bad
+PASS: i386 space1
+PASS: i386 list-1
+PASS: i386 list-2
+PASS: i386 list-3
+PASS: DWARF2 debugging information 1
+Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
+Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
+Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/load-hazards.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/odd-ldw.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/odd-sdw.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
+Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
+PASS: lns lns-diag-1
+PASS: lns-duplicate
+PASS: lns-common-1
+Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32r2.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32rx.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/pic.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/rel32.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68hc11/m68hc11.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68k-coff/gas.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68k/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/macros/macros.exp ...
+PASS: macro test 1
+PASS: macro test 2
+PASS: macro test 3
+PASS: macro irp
+PASS: macro rept
+PASS: nested irp/irpc/rept
+PASS: macro vararg
+PASS: macro infinite recursion
+PASS: logical and in macro definition
+PASS: semi
+PASS: strings
+PASS: APP with macro without NO_APP
+PASS: APP with macro then NO_APP
+PASS: APP with macro then NO_APP then more code
+PASS: included file with .if 0 wrapped in APP/NO_APP, no final NO_APP, macro in main file
+PASS: macros badarg
+PASS: macros dot
+PASS: macros end
+PASS: macros purge
+PASS: macros redef
+PASS: gas/macros/paren
+PASS: .exitm outside of a macro
+Running [...]/hurd/gas/testsuite/gas/mcore/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/mep/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/mep/complex-relocs.exp ...
+Running [...]/hurd/gas/testsuite/gas/mips/mips.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix-err.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix-list.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix.exp ...
+Running [...]/hurd/gas/testsuite/gas/mn10200/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/mn10300/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/mri/mri.exp ...
+Running [...]/hurd/gas/testsuite/gas/msp430/msp430.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/errors.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/mt.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/relocs.exp ...
+Running [...]/hurd/gas/testsuite/gas/openrisc/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/pdp11/pdp11.exp ...
+Running [...]/hurd/gas/testsuite/gas/pe/pe.exp ...
+Running [...]/hurd/gas/testsuite/gas/pj/pj.exp ...
+Running [...]/hurd/gas/testsuite/gas/ppc/aix.exp ...
+Running [...]/hurd/gas/testsuite/gas/ppc/ppc.exp ...
+Running [...]/hurd/gas/testsuite/gas/rx/rx.exp ...
+Running [...]/hurd/gas/testsuite/gas/s390/s390.exp ...
+Running [...]/hurd/gas/testsuite/gas/score/relax.exp ...
+Running [...]/hurd/gas/testsuite/gas/score/relax_32.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/arch/arch.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/err.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/sh64/err.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/sh64/sh64.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc-solaris/addend.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc-solaris/gas.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc/mismatch.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
+Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
+Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
+PASS: symver symver0
+PASS: symver symver1
+PASS: symver symver2
+PASS: symver symver3
+PASS: symver symver6
+Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
+Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
+Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
+Running [...]/hurd/gas/testsuite/gas/v850/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/vax/vax.exp ...
+Running [...]/hurd/gas/testsuite/gas/xc16x/xc16x.exp ...
+Running [...]/hurd/gas/testsuite/gas/xstormy16/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/xtensa/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/xtensa/xtensa-err.exp ...
+Running [...]/hurd/gas/testsuite/gas/z80/z80.exp ...
+Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
+
+ === gas Summary ===
+
+# of expected passes 316
+../as-new 2.21.51.20101107
+
diff --git a/open_issues/binutils/testsuite/sum_linux b/open_issues/binutils/testsuite/sum_linux
new file mode 100644
index 00000000..da645ba0
--- /dev/null
+++ b/open_issues/binutils/testsuite/sum_linux
@@ -0,0 +1,1316 @@
+Test Run By thomas on Sun Nov 7 20:20:33 2010
+Native configuration is i686-pc-linux-gnu
+
+ === binutils tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/binutils/testsuite/binutils-all/ar.exp ...
+PASS: ar long file names
+PASS: ar symbol table
+PASS: ar thin archive
+PASS: ar thin archive with nested archive
+PASS: ar argument parsing
+PASS: ar deterministic archive
+PASS: ar unique symbol in archive
+Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/compress.exp ...
+PASS: objcopy (objcopy compress debug sections)
+PASS: objcopy (objcopy decompress compressed debug sections)
+PASS: objcopy decompress debug sections in archive
+PASS: objcopy compress debug sections in archive
+Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
+UNSUPPORTED: Update ELF header 1
+PASS: Update ELF header 2
+PASS: Update ELF header 3
+Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
+PASS: objcopy on compressed debug sections
+PASS: strip on uncompressed debug sections
+PASS: strip on compressed debug sections
+Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
+PASS: nm (no arguments)
+PASS: nm -g
+PASS: nm -P
+Running [...]/hurd/binutils/testsuite/binutils-all/objcopy.exp ...
+PASS: objcopy (simple copy)
+PASS: objcopy --reverse-bytes
+PASS: objcopy -i --interleave-width
+PASS: objcopy -O srec
+PASS: objcopy --set-start
+PASS: objcopy --adjust-start
+PASS: objcopy --adjust-vma
+PASS: objcopy --adjust-section-vma +
+PASS: objcopy --adjust-section-vma =
+PASS: strip
+PASS: strip with saving a symbol
+PASS: simple objcopy of executable
+PASS: run objcopy of executable
+PASS: run stripped executable
+PASS: run stripped executable with saving a symbol
+PASS: keep only debug data
+PASS: simple objcopy of debug data
+PASS: objcopy (ELF unknown section type)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: copy removing group member
+PASS: copy with setting section flags 1
+PASS: add notes section
+PASS: copy with setting section flags 2
+PASS: copy with setting section flags 3
+PASS: strip --strip-unneeded on common symbol
+PASS: strip with section group 1
+PASS: strip with section group 2
+PASS: strip empty file
+PASS: strip with section group 4
+PASS: strip with section group 5
+PASS: strip with section group 6
+PASS: strip with section group 7
+PASS: strip with section group 8
+PASS: strip with section group 9
+PASS: strip on STB_GNU_UNIQUE
+PASS: objcopy keeps symbols needed by relocs
+PASS: --localize-hidden test 1
+PASS: unordered .debug_info references to .debug_ranges
+UNSUPPORTED: unordered .debug_info references to .debug_ranges
+PASS: objcopy add-section
+PASS: objcopy add-empty-section
+PASS: objcopy on sections with SHF_EXCLUDE
+PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
+PASS: --localize-hidden test 2
+Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
+PASS: objdump -i
+PASS: objdump -f
+PASS: objdump -h
+PASS: objdump -t
+PASS: objdump -r
+PASS: objdump -s
+PASS: objdump -s -j .zdebug_abbrev
+PASS: objdump -W
+Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
+PASS: finding out ELF size with readelf -h
+PASS: readelf -h
+PASS: readelf -S
+PASS: readelf -s
+PASS: readelf -r
+PASS: readelf -wi
+PASS: readelf -wa (compressed)
+PASS: readelf -p
+Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
+PASS: size (no arguments)
+PASS: size -A
+Running [...]/hurd/binutils/testsuite/binutils-all/vax/objdump.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/windres/windres.exp ...
+Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
+
+ === binutils Summary ===
+
+# of expected passes 83
+# of unsupported tests 2
+Test Run By thomas on Sun Nov 7 20:20:55 2010
+Native configuration is i686-pc-linux-gnu
+
+ === ld tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/ld/testsuite/ld-alpha/alpha.exp ...
+Running [...]/hurd/ld/testsuite/ld-arm/arm-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-auto-import/auto-import.exp ...
+Running [...]/hurd/ld/testsuite/ld-bootstrap/bootstrap.exp ...
+UNTESTED: bootstrap
+UNTESTED: bootstrap with strip
+UNTESTED: bootstrap with --static
+UNTESTED: bootstrap with --traditional-format
+UNTESTED: bootstrap with --no-keep-memory
+UNTESTED: bootstrap with --relax
+Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
+PASS: cdtest
+PASS: cdtest with -Ur
+Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
+PASS: check sections 1
+PASS: check sections 2
+Running [...]/hurd/ld/testsuite/ld-cris/cris.exp ...
+Running [...]/hurd/ld/testsuite/ld-crx/crx.exp ...
+Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
+Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
+Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
+PASS: ld-discard/extern
+PASS: ld-discard/start
+PASS: ld-discard/static
+PASS: ld-discard/zero-range
+PASS: ld-discard/zero-rel
+Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
+PASS: Run with -paudit.so
+PASS: Run with -Paudit.so
+PASS: Run with --depaudit=audit.so
+PASS: Run with shared with --audit
+PASS: Run with shared with --audit
+PASS: Run with -lusesaudit
+PASS: Run with -lusesaudit -lusesaudit2
+Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
+PASS: strip -z max-page-size=0x200000 (maxpage1)
+PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
+PASS: strip -z max-page-size=0x100000 (maxpage1)
+PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
+PASS: strip (maxpage1)
+PASS: strip -shared (maxpage1)
+PASS: objcopy (maxpage1)
+PASS: objcopy -shared (maxpage1)
+PASS: strip -z relro (relro1)
+PASS: strip -z relro -shared (relro1)
+PASS: objcopy -z relro (relro1)
+PASS: objcopy -z relro -shared (relro1)
+PASS: strip -z relro -shared (relro2)
+PASS: objcopy -z relro -shared (relro2)
+PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
+PASS: objcopy (tbss1)
+PASS: objcopy -z relro (tbss1)
+PASS: objcopy -shared (tbss1)
+PASS: objcopy -shared -z relro (tbss1)
+PASS: objcopy -z max-page-size=0x100000 (tbss1)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
+PASS: objcopy (tdata1)
+PASS: objcopy -z relro (tdata1)
+PASS: objcopy -shared (tdata1)
+PASS: objcopy -shared -z relro (tdata1)
+PASS: objcopy -z max-page-size=0x100000 (tdata1)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
+PASS: objcopy (tbss2)
+PASS: objcopy -z relro (tbss2)
+PASS: objcopy -shared (tbss2)
+PASS: objcopy -shared -z relro (tbss2)
+PASS: objcopy -z max-page-size=0x100000 (tbss2)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
+PASS: objcopy (tdata2)
+PASS: objcopy -z relro (tdata2)
+PASS: objcopy -shared (tdata2)
+PASS: objcopy -shared -z relro (tdata2)
+PASS: objcopy -z max-page-size=0x100000 (tdata2)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
+Running [...]/hurd/ld/testsuite/ld-elf/compress.exp ...
+PASS: Build libfoo.so with compressed debug sections
+PASS: Build libbar.so with compressed debug sections
+PASS: Run normal with libfoo.so with compressed debug sections
+Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
+PASS: Build libdwarf1.so
+PASS: Run with libdwarf1.so first
+PASS: Run with libdwarf1.so last
+PASS: Strip -s libdwarf1c.so
+Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
+PASS: Guess the target size from eh-group1size.o
+PASS: Build eh-group1.o
+PASS: Link eh-group.o to eh-group
+Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
+PASS: ld-elf/commonpage1
+PASS: ld-elf/compress1a
+PASS: ld-elf/compress1b
+PASS: ld-elf/compress1c
+PASS: ld-elf/discard1
+PASS: ld-elf/discard2
+PASS: ld-elf/discard3
+PASS: ld-elf/dynsym1
+PASS: ld-elf/eh-frame-hdr
+PASS: ld-elf/eh5
+PASS: ld-elf/eh6
+PASS: ld-elf/empty
+PASS: ld-elf/empty2
+PASS: ld-elf/exclude3a
+PASS: ld-elf/exclude3b
+PASS: ld-elf/exclude3c
+PASS: ld-elf/expr1
+PASS: --extract-symbol test 1 (sections)
+PASS: --extract-symbol test 1 (symbols)
+PASS: --set-section-flags test 1 (sections)
+PASS: ld-elf/group1
+PASS: ld-elf/group10
+PASS: ld-elf/group2
+PASS: ld-elf/group3a
+PASS: ld-elf/group3b
+PASS: ld-elf/group4
+PASS: ld-elf/group5
+PASS: ld-elf/group6
+PASS: ld-elf/group7
+PASS: ld-elf/group8a
+PASS: ld-elf/group8b
+PASS: ld-elf/group9a
+PASS: ld-elf/group9b
+PASS: ld-elf/hash
+PASS: ld-elf/header
+PASS: ld-elf/init-fini-arrays
+PASS: ld-elf/linkonce1
+PASS: ld-elf/linkonce2
+PASS: ld-elf/linkoncerdiff
+PASS: ld-elf/loadaddr1
+PASS: ld-elf/loadaddr2
+PASS: ld-elf/loadaddr3a
+PASS: ld-elf/loadaddr3b
+PASS: ld-elf/local1
+PASS: ld-elf/maxpage1
+PASS: ld-elf/maxpage2
+PASS: ld-elf/maxpage3a
+PASS: ld-elf/merge
+PASS: ld-elf/merge2
+PASS: ld-elf/multibss1
+PASS: ld-elf/nobits-1
+PASS: ld-elf/noload-1
+PASS: ld-elf/noload-2
+PASS: ld-elf/noload-3
+PASS: ld-elf/note-1
+PASS: ld-elf/note-2
+PASS: ld-elf/orphan-region
+PASS: ld-elf/orphan
+PASS: ld-elf/orphan2
+PASS: ld-elf/orphan3
+PASS: ld-elf/orphan4
+PASS: ld-elf/overlay
+PASS: ld-elf/pr11304
+PASS: ld-elf/pr349
+PASS: relocatable with script
+PASS: ld-elf/seg
+PASS: ld-elf/stab
+PASS: ld-elf/textaddr1
+PASS: ld-elf/textaddr2
+PASS: ld-elf/textaddr3
+PASS: ld-elf/textaddr4
+PASS: ld-elf/textaddr5
+PASS: ld-elf/textaddr6
+PASS: ld-elf/textaddr7
+PASS: ld-elf/unknown
+PASS: ld-elf/unknown2
+PASS: ld-elf/warn1
+PASS: ld-elf/warn2
+PASS: Weak symbols in dynamic objects 1 (support)
+PASS: Weak symbols in dynamic objects 1 (main test)
+PASS: --gc-sections on tls variable
+PASS: preinit array
+PASS: init array
+PASS: fini array
+PASS: static preinit array
+PASS: static init array
+PASS: static fini array
+Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
+PASS: ld link shared library
+PASS: ld export symbols from archive
+PASS: ld link shared library with --exclude-libs
+PASS: ld exclude symbols from archive - --exclude-libs libexclude
+PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
+PASS: ld exclude symbols from archive - --exclude-libs ALL
+PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
+PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
+PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
+Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
+PASS: read-only .eh_frame section
+PASS: read-only .gcc_except_table section
+Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
+PASS: assignment of ELF sections to segments (same page)
+PASS: assignment of ELF sections to segments (adjacent pages)
+PASS: assignment of ELF sections to segments (disjoint pages)
+Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
+PASS: ld-elf/64ksec-r
+PASS: ld-elf/64ksec
+Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
+PASS: Build libfoo.so
+PASS: Build versioned libfoo.so
+PASS: Build libbar.so
+PASS: Build warn libbar.so
+PASS: Build hidden libbar.so
+PASS: Build protected libbar.so
+PASS: Build libbar.so with libfoo.so
+PASS: Build libar.so with versioned libfoo.so
+PASS: Build hidden libbar.so with libfoo.so
+PASS: Build hidden libar.so with versioned libfoo.so
+PASS: Build protected libbar.so with libfoo.so
+PASS: Build protected libbar.so with versioned libfoo.so
+PASS: Build libdl1.so
+PASS: Build libdl2a.so with --dynamic-list=dl2.list
+PASS: Build libdl2a.so with --dynamic-list=dl2a.list
+PASS: Build libdl2a.so with --dynamic-list-data
+PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
+PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
+PASS: Build libdl4a.so with --dynamic-list=dl4.list
+PASS: Build libdl4b.so with --dynamic-list-data
+PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
+PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
+PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
+PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
+PASS: Build libdl6a.so
+PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
+PASS: Build libdl6c.so with -Bsymbolic
+PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
+PASS: Build libdata1.so
+PASS: Build libcomm1.o
+PASS: Build libfunc1.so
+PASS: Build libpr9676-1.a
+PASS: Build libpr9676-2.a
+PASS: Build libpr9676-3.so
+PASS: Build libpr9676-4.so
+PASS: Build libpr9676-4a.so
+PASS: Build libpr9679.so
+PASS: Build libpr11138-1.so
+PASS: Build libpr11138-2.o
+PASS: Run normal with libfoo.so
+PASS: Run protected with libfoo.so
+PASS: Run hidden with libfoo.so
+PASS: Run normal with versioned libfoo.so
+PASS: Run warn with versioned libfoo.so
+PASS: Run protected with versioned libfoo.so
+PASS: Run hidden with versioned libfoo.so
+PASS: Run normal libbar.so with libfoo.so
+PASS: Run protected libbar.so with libfoo.so
+PASS: Run hidden libbar.so with libfoo.so
+PASS: Run normal libbar.so with versioned libfoo.so
+PASS: Run protected libbar.so with versioned libfoo.so
+PASS: Run hidden libbar.so with versioned libfoo.so
+PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
+PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
+PASS: Run with libdl2a.so
+PASS: Run with libdl2b.so
+PASS: Run with libdl2c.so
+PASS: Run with libdl4a.so
+PASS: Run with libdl4b.so
+PASS: Run with libdl4c.so
+PASS: Run with libdl4d.so
+PASS: Run with libdl4e.so
+PASS: Run with libdl4f.so
+PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
+PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
+PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
+PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
+PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
+PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
+PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
+PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
+PASS: Run dl6b2 with dlopen on libdl6b.so
+PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
+PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
+PASS: Run with libdata1.so
+PASS: Run with libfunc1.so comm1.o
+PASS: Run with comm1.o libfunc1.so
+PASS: Run with pr11138-2.c libpr11138-1.so
+PASS: Run with libpr11138-1.so pr11138-2.c
+PASS: Build libdl3a.so with --dynamic-list=dl3.list
+PASS: Build libdl3b.so with -Bsymbolic
+PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
+PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
+PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
+PASS: Run with libdl3a.so
+PASS: Run with libdl3c.so
+PASS: Run with libnew1a.so
+PASS: Run with libnew1b.so
+Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
+PASS: tls_common
+Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
+PASS: Build libwrap1a.so
+PASS: Build libwrap1b.so
+PASS: Run with libwrap1a.so and libwrap1b.so
+PASS: Run with libwrap1b.so and libwrap1a.so
+Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
+PASS: --sort-common (descending)
+PASS: --sort-common (ascending)
+PASS: size/aligment change of common symbols (warning 1)
+PASS: size/aligment change of common symbols (change 1)
+PASS: size/aligment change of common symbols (warning 2)
+PASS: size/aligment change of common symbols (change 2)
+Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
+PASS: vers1
+PASS: vers2
+PASS: vers3
+PASS: vers4
+PASS: vers4a
+PASS: vers4b
+PASS: vers5
+PASS: vers6
+PASS: vers7a
+PASS: vers7
+PASS: vers8
+PASS: vers9
+PASS: vers10
+PASS: vers11
+PASS: vers12
+PASS: ar with versioned solib
+PASS: vers14
+PASS: vers15
+PASS: vers16a
+PASS: vers16
+PASS: vers17
+PASS: vers18
+PASS: vers19
+PASS: vers20a
+PASS: vers20
+PASS: vers21
+PASS: vers22a
+PASS: vers22b
+PASS: vers22
+PASS: vers23a
+PASS: vers23b
+PASS: vers23c
+PASS: vers23d
+PASS: vers23
+PASS: vers24a
+PASS: vers24b
+PASS: vers24c
+PASS: vers25a
+PASS: vers25b1
+PASS: vers25b2
+PASS: vers26a
+PASS: vers26b1
+PASS: vers26b2
+PASS: vers26b3
+PASS: vers27a
+PASS: vers27b
+PASS: vers27c1
+PASS: vers27c2
+PASS: vers27d1
+PASS: vers27d2
+PASS: vers27d3
+PASS: vers27d4
+PASS: vers27d5
+PASS: vers28a
+PASS: vers28b
+PASS: vers28c
+PASS: vers29
+PASS: vers30
+PASS: vers31
+PASS: vers32a
+PASS: vers32b
+Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
+PASS: ld-elfvsb/hidden0
+PASS: ld-elfvsb/hidden1
+PASS: ld-elfvsb/hidden2
+PASS: ld-elfvsb/internal0
+PASS: ld-elfvsb/internal1
+PASS: ld-elfvsb/protected0
+PASS: ld-elfvsb/protected1
+PASS: visibility (hidden) (non PIC)
+PASS: visibility (hidden) (non PIC, load offset)
+PASS: visibility (hidden)
+PASS: visibility (hidden) (PIC main, non PIC so)
+PASS: visibility (hidden) (PIC main)
+PASS: visibility (hidden_normal) (non PIC)
+PASS: visibility (hidden_normal) (non PIC, load offset)
+PASS: visibility (hidden_normal)
+PASS: visibility (hidden_normal) (PIC main, non PIC so)
+PASS: visibility (hidden_normal) (PIC main)
+PASS: visibility (hidden_undef) (non PIC)
+PASS: visibility (hidden_undef) (non PIC, load offset)
+PASS: visibility (hidden_undef)
+PASS: visibility (hidden_undef) (PIC main, non PIC so)
+PASS: visibility (hidden_undef) (PIC main)
+PASS: visibility (hidden_undef_def) (non PIC)
+PASS: visibility (hidden_undef_def) (non PIC, load offset)
+PASS: visibility (hidden_undef_def)
+PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
+PASS: visibility (hidden_undef_def) (PIC main)
+PASS: visibility (hidden_weak) (non PIC)
+PASS: visibility (hidden_weak) (non PIC, load offset)
+PASS: visibility (hidden_weak)
+PASS: visibility (hidden_weak) (PIC main, non PIC so)
+PASS: visibility (hidden_weak) (PIC main)
+PASS: visibility (protected) (non PIC)
+PASS: visibility (protected) (non PIC, load offset)
+PASS: visibility (protected)
+PASS: visibility (protected) (PIC main, non PIC so)
+PASS: visibility (protected) (PIC main)
+PASS: visibility (protected_undef) (non PIC)
+PASS: visibility (protected_undef) (non PIC, load offset)
+PASS: visibility (protected_undef)
+PASS: visibility (protected_undef) (PIC main, non PIC so)
+PASS: visibility (protected_undef) (PIC main)
+PASS: visibility (protected_undef_def) (non PIC)
+PASS: visibility (protected_undef_def) (non PIC, load offset)
+PASS: visibility (protected_undef_def)
+PASS: visibility (protected_undef_def) (PIC main, non PIC so)
+PASS: visibility (protected_undef_def) (PIC main)
+PASS: visibility (protected_weak) (non PIC)
+PASS: visibility (protected_weak) (non PIC, load offset)
+PASS: visibility (protected_weak)
+PASS: visibility (protected_weak) (PIC main, non PIC so)
+PASS: visibility (protected_weak) (PIC main)
+PASS: visibility (normal) (non PIC)
+PASS: visibility (normal) (non PIC, load offset)
+PASS: visibility (normal)
+PASS: visibility (normal) (PIC main, non PIC so)
+PASS: visibility (normal) (PIC main)
+PASS: common hidden symbol
+PASS: weak hidden symbol DSO last
+PASS: weak hidden symbol DSO first
+Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
+PASS: ELF DSO weak func first
+PASS: ELF DSO weak func last
+PASS: ELF DSO weak func first DSO
+PASS: ELF DSO weak func last DSO
+PASS: ELF weak func first
+PASS: ELF weak func last
+PASS: ELF weak func first DSO
+PASS: ELF weak func last DSO
+PASS: ELF DSO weak data first
+PASS: ELF DSO weak data last
+PASS: ELF DSO weak data first DSO
+PASS: ELF DSO weak data last DSO
+PASS: ELF DSO weak data first DSO common
+PASS: ELF DSO weak data last DSO common
+PASS: ELF weak data first
+PASS: ELF weak data last
+PASS: ELF weak data first common
+PASS: ELF weak data last common
+PASS: ELF weak data first DSO
+PASS: ELF weak data last DSO
+PASS: ELF weak data first DSO common
+PASS: ELF weak data last DSO common
+PASS: ELF DSO small bar (size)
+PASS: ELF DSO foo with small bar (size)
+PASS: ELF DSO big bar (size)
+PASS: ELF weak size
+PASS: ld-elfweak/size2
+Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-frv/tls.exp ...
+Running [...]/hurd/ld/testsuite/ld-gc/gc.exp ...
+PASS: Check --gc-section
+PASS: Check --gc-section/-q
+PASS: Check --gc-section/-r/-e
+PASS: Check --gc-section/-r/-u
+PASS: --gc-sections -r without -e
+PASS: --gc-sections with note section
+PASS: --gc-sections with __start_
+PASS: --gc-sections with shared library
+Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
+Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
+PASS: TLS -fpic -shared transitions
+PASS: TLS descriptor -fpic -shared transitions
+PASS: Helper shared library
+PASS: TLS -fpic and -fno-pic exec transitions
+PASS: TLS descriptor -fpic and -fno-pic exec transitions
+PASS: TLS -fno-pic -shared
+PASS: TLS with global dynamic and descriptors
+PASS: TLS in debug sections
+PASS: TLS @indntpoff with %eax
+PASS: Reloc section order
+PASS: Basic --emit-relocs support
+PASS: -z combreloc relocation sections
+PASS: TLS GD->LE transition
+PASS: TLS LD->LE transition
+PASS: TLS IE->LE transition
+PASS: Absolute non-overflowing relocs
+PASS: PCREL8 overflow
+PASS: PCREL16 overflow
+PASS: PCREL16 absolute reloc
+PASS: Invalid allocated section
+PASS: --warn-shared-textrel --fatal-warnings
+PASS: TLS GD->LE transition check
+PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
+PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
+PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
+PASS: TLS IE->LE transition check (R_386_TLS_IE)
+PASS: ld-i386/hidden1
+PASS: ld-i386/hidden2
+PASS: ld-i386/hidden3
+PASS: ld-i386/protected1
+PASS: ld-i386/protected2
+PASS: ld-i386/protected3
+PASS: TLS with PIE
+PASS: ld-i386/nogot1
+PASS: ld-i386/nogot2
+PASS: ld-i386/discarded1
+PASS: undefined symbol with compressed debug sections
+Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
+Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
+Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
+PASS: strip (ifunc-4-x86)
+PASS: objcopy (ifunc-4-x86)
+PASS: strip (ifunc-4-local-x86)
+PASS: objcopy (ifunc-4-local-x86)
+Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
+PASS: Building ifunc binaries
+PASS: Checking ifunc binaries
+PASS: ld-ifunc/ifunc-1-local-x86
+PASS: ld-ifunc/ifunc-1-x86
+PASS: ld-ifunc/ifunc-10-i386
+PASS: ld-ifunc/ifunc-11-i386
+PASS: ld-ifunc/ifunc-2-i386
+PASS: ld-ifunc/ifunc-2-local-i386
+PASS: ld-ifunc/ifunc-3a-x86
+PASS: ld-ifunc/ifunc-3b-x86
+PASS: ld-ifunc/ifunc-4-local-x86
+PASS: ld-ifunc/ifunc-4-x86
+PASS: ld-ifunc/ifunc-4a-x86
+PASS: ld-ifunc/ifunc-5a-i386
+PASS: ld-ifunc/ifunc-5a-local-i386
+PASS: ld-ifunc/ifunc-5b-i386
+PASS: ld-ifunc/ifunc-5b-local-i386
+PASS: ld-ifunc/ifunc-5r-local-i386
+PASS: ld-ifunc/ifunc-6a-i386
+PASS: ld-ifunc/ifunc-6b-i386
+PASS: ld-ifunc/ifunc-7a-i386
+PASS: ld-ifunc/ifunc-7b-i386
+PASS: ld-ifunc/ifunc-8-i386
+PASS: ld-ifunc/ifunc-9-x86
+Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
+PASS: -l: test (preparation)
+PASS: -l: test
+Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
+PASS: ld-linkonce/zeroehl32
+Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
+Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
+Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
+Running [...]/hurd/ld/testsuite/ld-mep/mep.exp ...
+Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
+Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf.exp ...
+Running [...]/hurd/ld/testsuite/ld-mmix/mmix.exp ...
+Running [...]/hurd/ld/testsuite/ld-mn10300/mn10300.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-compile.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-run.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
+Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
+Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
+PASS: weak undefined
+PASS: weak undefined data
+PASS: missing entry symbol
+Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
+PASS: plugin API enabled
+PASS: load plugin
+PASS: fail plugin onload
+PASS: fail plugin allsymbolsread
+PASS: fail plugin cleanup
+PASS: plugin all hooks
+PASS: plugin claimfile lost symbol
+PASS: plugin claimfile replace symbol
+PASS: plugin claimfile resolve symbol
+PASS: plugin claimfile replace file
+PASS: plugin set symbol visibility
+PASS: plugin ignore lib
+PASS: plugin claimfile replace lib
+Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
+Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
+Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
+Running [...]/hurd/ld/testsuite/ld-scripts/align.exp ...
+PASS: align1
+PASS: ld-scripts/align2a
+PASS: ld-scripts/align2b
+PASS: ld-scripts/align2c
+Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
+PASS: ALIGNOF
+Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
+PASS: ASSERT
+Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
+PASS: NOCROSSREFS 1
+PASS: NOCROSSREFS 2
+PASS: NOCROSSREFS 3
+Running [...]/hurd/ld/testsuite/ld-scripts/data.exp ...
+PASS: ld-scripts/data
+Running [...]/hurd/ld/testsuite/ld-scripts/default-script.exp ...
+PASS: ld-scripts/default-script1
+PASS: ld-scripts/default-script2
+PASS: ld-scripts/default-script3
+PASS: ld-scripts/default-script4
+Running [...]/hurd/ld/testsuite/ld-scripts/defined.exp ...
+PASS: DEFINED (PRMS 5699)
+PASS: ld-scripts/defined2
+PASS: ld-scripts/defined3
+Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
+PASS: dynamic sections
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
+PASS: ld-scripts/empty-address-1
+PASS: ld-scripts/empty-address-2a
+PASS: ld-scripts/empty-address-2b
+PASS: ld-scripts/empty-address-3a
+PASS: ld-scripts/empty-address-3b
+PASS: ld-scripts/empty-address-3c
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
+PASS: ld-scripts/empty-aligned
+Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
+PASS: ld-scripts/empty-orphan
+Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
+PASS: ld-scripts/expr1
+Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
+PASS: EXTERN
+Running [...]/hurd/ld/testsuite/ld-scripts/include.exp ...
+PASS: include-1
+Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
+PASS: map addresses
+Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
+PASS: overlay size
+PASS: overlay size (map check)
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
+PASS: PHDRS
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
+PASS: PHDRS2
+Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
+PASS: PHDRS headers
+PASS: PHDRS headers 3a
+Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
+PASS: ld-scripts/provide-1
+PASS: ld-scripts/provide-2
+XFAIL: ld-scripts/provide-3
+Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
+PASS: rgn-at1
+PASS: rgn-at2
+PASS: rgn-at3
+PASS: rgn-at4
+PASS: rgn-at5
+Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
+PASS: rgn-over1
+PASS: rgn-over1 (map check)
+PASS: rgn-over2
+PASS: rgn-over2 (map check)
+PASS: rgn-over3
+PASS: rgn-over3 (map check)
+PASS: rgn-over4
+PASS: rgn-over4 (map check)
+PASS: rgn-over5
+PASS: rgn-over5 (map check)
+PASS: rgn-over6
+PASS: rgn-over6 (map check)
+PASS: rgn-over7
+PASS: rgn-over7 (map check)
+PASS: rgn-over8
+Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
+PASS: script
+PASS: MRI script
+PASS: MEMORY
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
+XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
+Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
+PASS: ld-scripts/section-match-1
+Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
+PASS: ld-scripts/size-1
+PASS: ld-scripts/size-2
+Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
+PASS: SIZEOF
+Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
+PASS: --sort-section alignment
+PASS: SORT_BY_ALIGNMENT
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
+PASS: --sort-section name
+PASS: SORT_BY_NAME
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_NAME(SORT_BY_NAME())
+PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
+PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
+PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
+PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
+Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
+PASS: weak symbols
+Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
+PASS: Preserve default . = 0
+PASS: Preserve explicit . = 0
+Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
+PASS: selective1
+PASS: selective2
+PASS: selective3
+XFAIL: selective4
+XFAIL: selective5
+XFAIL: selective6
+Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/relax.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
+Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
+Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
+PASS: shared (non PIC)
+PASS: shared (non PIC, load offset)
+PASS: shared
+PASS: shared -Bsymbolic
+PASS: shared (PIC main, non PIC so)
+PASS: shared (PIC main)
+Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
+Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
+Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
+PASS: S-records
+PASS: S-records with constructors
+Running [...]/hurd/ld/testsuite/ld-tic6x/tic6x.exp ...
+Running [...]/hurd/ld/testsuite/ld-undefined/entry.exp ...
+PASS: Build libentry.a
+PASS: --entry foo archive
+PASS: --entry foo -u foo archive
+PASS: -shared --entry foo archive
+PASS: -shared --entry foo -u foo archive
+PASS: --entry foo
+PASS: --entry foo -u foo
+PASS: --entry 0x0
+Running [...]/hurd/ld/testsuite/ld-undefined/undefined.exp ...
+PASS: undefined
+PASS: undefined function
+PASS: undefined line
+Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
+PASS: weak undefined symbols
+Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
+Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
+Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/line.exp ...
+Running [...]/hurd/ld/testsuite/ld-x86-64/x86-64.exp ...
+Running [...]/hurd/ld/testsuite/ld-xc16x/xc16x.exp ...
+Running [...]/hurd/ld/testsuite/ld-xstormy16/xstormy16.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/coalesce.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/lcall.exp ...
+Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
+
+ === ld Summary ===
+
+# of expected passes 616
+# of expected failures 8
+# of untested testcases 6
+/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
+
+Test Run By thomas on Sun Nov 7 20:20:38 2010
+Native configuration is i686-pc-linux-gnu
+
+ === gas tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/gas/testsuite/gas/all/gas.exp ...
+PASS: pcrel values in assignment
+PASS: simplifiable double subtraction
+PASS: simplifiable double subtraction (-a)
+PASS: simple FP constants
+PASS: difference of two undefined symbols
+PASS: .equiv for symbol already set to another one
+PASS: .equiv for symbol already set to an expression
+PASS: .equ for symbol already set
+PASS: .equ for symbol already set through .eqv
+PASS: .eqv support
+PASS: .eqv for symbol already set
+PASS: == assignment support
+PASS: == assignment for symbol already set
+PASS: forward references
+PASS: forward expression
+PASS: .equ redefinitions
+PASS: .equ redefinitions (2)
+PASS: .equ redefinitions (3)
+PASS: .set for symbol already used as label
+PASS: .set for symbol already defined through .comm
+PASS: comment.s: comments in listings
+PASS: general info section in listings
+PASS: difference between forward references
+PASS: struct
+PASS: align
+PASS: align2
+PASS: alternate macro syntax
+PASS: alternate macro syntax (escape)
+PASS: evaluation of simple expressions
+PASS: conditional listings
+PASS: incbin
+PASS: assignment tests
+PASS: .sleb128 tests
+PASS: relax .uleb128
+PASS: bad byte directive
+PASS: .quad tests
+PASS: octa bignum
+PASS: weakref tests, relocations
+PASS: weakref tests, global syms
+PASS: weakref tests, local syms
+PASS: weakref tests, strong undefined syms
+PASS: weakref tests, weak undefined syms
+PASS: e: would close weakref loop: e => a => b => c => d => e
+PASS: a: would close weakref loop: a => b => c => d => e => a
+PASS: is already defined
+PASS: .strings tests
+PASS: gas/all/err-1.s (test for errors, line 3)
+PASS: gas/all/err-1.s (test for errors, line 4)
+PASS: gas/all/err-1.s (test for errors, line 5)
+PASS: gas/all/err-1.s (test for errors, line 6)
+PASS: gas/all/err-1.s (test for errors, line 7)
+PASS: gas/all/err-1.s (test for excess errors)
+PASS: gas/all/warn-1.s (test for warnings, line 3)
+PASS: gas/all/warn-1.s (test for errors, line 4)
+PASS: gas/all/warn-1.s (test for warnings, line 5)
+PASS: gas/all/warn-1.s (test for warnings, line 6)
+PASS: gas/all/warn-1.s (test for warnings, line 7)
+PASS: gas/all/warn-1.s (test for excess errors)
+Running [...]/hurd/gas/testsuite/gas/alpha/alpha.exp ...
+Running [...]/hurd/gas/testsuite/gas/arc/arc.exp ...
+Running [...]/hurd/gas/testsuite/gas/arc/warn.exp ...
+Running [...]/hurd/gas/testsuite/gas/arm/arm.exp ...
+Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
+Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
+Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
+PASS: CFI on i386
+PASS: cfi cfi-diag-1
+PASS: CFI common 1
+PASS: CFI common 2
+PASS: CFI common 3
+PASS: CFI common 4
+PASS: CFI common 5
+PASS: CFI common 7
+PASS: CFI common 6
+Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
+Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
+Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
+Running [...]/hurd/gas/testsuite/gas/crx/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/d10v/d10v.exp ...
+Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
+Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
+Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
+PASS: elf ehopt0
+PASS: .file file names
+PASS: group section
+PASS: group section
+PASS: group section name
+PASS: group section with multiple sections of same name
+PASS: group section with multiple sections of same name
+PASS: automatic section group a
+PASS: automatic section group b
+PASS: .equ redefinitions (ELF)
+PASS: elf equate relocs
+PASS: Ill-formed directives
+PASS: elf section0
+PASS: elf section1
+PASS: elf section2 list
+PASS: note section
+PASS: label arithmetic with multiple same-name sections
+PASS: elf section5 list
+PASS: ELF struct
+PASS: .set with expression
+PASS: ELF symbol versioning
+PASS: .set with IFUNC
+PASS: elf type list
+PASS: elf section6
+PASS: elf section7
+PASS: section flags
+PASS: DWARF2 1
+PASS: DWARF2 2
+PASS: DWARF2 3
+PASS: Check bad section flag
+Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
+Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300-coff.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300-elf.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/h8300.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t01_mov.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t02_mova.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t03_add.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t04_sub.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t05_cmp.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t06_ari2.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t07_ari3.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t08_or.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t09_xor.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t10_and.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t11_logs.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t12_bit.exp ...
+Running [...]/hurd/gas/testsuite/gas/h8300/t13_otr.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/basic/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/parse/parse.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/reloc/reloc.exp ...
+Running [...]/hurd/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
+Running [...]/hurd/gas/testsuite/gas/i386/i386.exp ...
+PASS: i386 float
+PASS: i386 general
+PASS: i386 inval
+PASS: i386 segment
+PASS: i386 inval-seg
+PASS: i386 inval-reg
+PASS: i386 modrm
+PASS: i386 naked reg
+PASS: i386 opcodes
+PASS: i386 opcodes (Intel disassembly)
+PASS: i386 opcodes (w/ suffix)
+PASS: i386 intel
+PASS: i386 intel16
+PASS: i386 intelbad
+PASS: i386 intel-ok
+PASS: i386 prefix
+PASS: i386 amd
+PASS: i386 katmai
+PASS: i386 jump
+PASS: i386 relax 1
+PASS: i386 relax 2
+PASS: i386 ssemmx2
+PASS: i386 sse2
+PASS: i386 sub
+PASS: i386 SSE3
+PASS: i386 SIB
+PASS: i386 SIB (Intel mode)
+PASS: i386 displacement
+PASS: i386 displacement (Intel mode)
+PASS: i386 32bit displacement
+PASS: i386 VMX
+PASS: i386 SMX
+PASS: i386 suffix
+PASS: i386 immed
+PASS: i386 equates
+PASS: i386 divide
+PASS: i386 padlock
+PASS: i386 cr8+
+PASS: i386 cr-err
+PASS: 32-bit SVME
+PASS: i386 amdfam10
+PASS: i386 SSSE3
+PASS: i386 rep prefix
+PASS: i386 rep prefix (with suffixes)
+PASS: i386 lockable insns
+PASS: i386 lockable insns (Intel disassembly)
+PASS: i386 lockbad-1
+PASS: i386 long insns
+PASS: i386 long insns (Intel disassembly)
+PASS: i386 fp
+PASS: i386 nops
+PASS: i386 nops 16bit 1
+PASS: i386 nops 1
+PASS: i386 -mtune=i386 nops 1
+PASS: i386 nops -march=i386 -mtune=i686 1
+PASS: i386 -mtune=i686 nops 1
+PASS: i386 -mtune=k8 nops 1
+PASS: i386 -mtune=core2 nops 1
+PASS: i386 -mtune=bdver1 nops 1
+PASS: i386 nops 2
+PASS: i386 nops -mtune=i386 2
+PASS: i386 -march=i386 -mtune=core2 nops 2
+PASS: i386 nops 3
+PASS: i386 nops -mtune=i386 3
+PASS: i386 -mtune=i686 nops 3
+PASS: i386 nops 4
+PASS: i386 nops -mtune=i386 4
+PASS: i386 -mtune=i686 nops 4
+PASS: i386 nops 5
+PASS: i386 -march=i686 nops 5
+PASS: i386 16-bit addressing in 32-bit mode.
+PASS: i386 32-bit addressing in 16-bit mode.
+PASS: i386 SSE4.1
+PASS: i386 SSE4.1 (Intel disassembly)
+PASS: i386 SSE4.2
+PASS: i386 SSE4.2 (Intel disassembly)
+PASS: i386 crc32
+PASS: i386 crc32 (Intel disassembly)
+PASS: i386 inval-crc32
+PASS: i386 SIMD
+PASS: i386 SIMD (Intel mode)
+PASS: i386 SIMD (with suffixes)
+PASS: i386 mem
+PASS: i386 mem (Intel mode)
+PASS: i386 reg
+PASS: i386 reg (Intel mode)
+PASS: i386
+PASS: i386 float AT&T mnemonic
+PASS: i386 float Intel mnemonic
+PASS: i386 arch 1
+PASS: i386 arch 2
+PASS: i386 arch 3
+PASS: i386 arch 4
+PASS: i386 arch 5
+PASS: i386 arch 6
+PASS: i386 arch 7
+PASS: i386 arch 9
+PASS: i386 arch 10
+PASS: i386 arch-10-1
+PASS: i386 arch-10-2
+PASS: i386 arch-10-3
+PASS: i386 arch-10-4
+PASS: i386 arch 11
+PASS: i386 arch 12
+PASS: i386 8087
+PASS: i386 287
+PASS: i386 387 (cmdline)
+PASS: i386 no87
+PASS: i386 no87-2
+PASS: i386 xsave
+PASS: i386 xsave (Intel mode)
+PASS: i386 AES
+PASS: i386 AES (Intel mode)
+PASS: i386 PCLMUL
+PASS: i386 PCLMUL (Intel mode)
+PASS: i386 AVX
+PASS: i386 AVX (Intel disassembly)
+PASS: i386 AVX scalar insns
+PASS: i386 AVX scalar insns (Intel disassembly)
+PASS: i386 SSE with AVX encoding
+PASS: i386 inval-avx
+PASS: i386 SSE check (none)
+PASS: i386 SSE check (.sse_check none)
+PASS: i386 SSE check (warning)
+PASS: i386 sse-check-error
+PASS: i386 SSE without AVX equivalent
+PASS: i386 movbe
+PASS: i386 movbe (Intel disassembly)
+PASS: i386 inval-movbe
+PASS: i386 EPT
+PASS: i386 EPT (Intel disassembly)
+PASS: i386 inval-ept
+PASS: i386 arch avx 1
+PASS: i386 arch-avx-1-1
+PASS: i386 arch-avx-1-2
+PASS: i386 arch-avx-1-3
+PASS: i386 arch-avx-1-4
+PASS: i386 arch-avx-1-5
+PASS: i386 arch-avx-1-6
+PASS: encoding option
+PASS: encoding option (Intel mode)
+PASS: encoding option with -msse2avx
+PASS: encoding option with -msse2avx (Intel mode)
+PASS: i386 FMA
+PASS: i386 FMA (Intel disassembly)
+PASS: i386 FMA scalar insns
+PASS: i386 FMA scalar insns (Intel disassembly)
+PASS: i386 FMA4
+PASS: i386 LWP
+PASS: i386 XOP
+PASS: i386 F16C
+PASS: i386 F16C (Intel disassembly)
+PASS: i386 FSGSBase
+PASS: i386 FSGSBase (Intel disassembly)
+PASS: i386 RdRnd
+PASS: i386 RdRnd (Intel disassembly)
+PASS: i386 reloc
+PASS: i386 jump16
+PASS: i386 white
+PASS: i386 pcrel reloc
+PASS: i386 abs reloc
+PASS: i386 intelpic
+PASS: i386 relax
+PASS: i386 gotpc
+PASS: i386 dynamic tls
+PASS: i386 pic tls
+PASS: i386 non-pic tls
+PASS: i386 .bss
+PASS: i386 relocs
+PASS: i386 reloc32
+PASS: x86 mixed mode relocs (32-bit object)
+PASS: i386 AT&T register names
+PASS: i386 intel-got
+PASS: i386 Intel register names
+PASS: i386 inval-equ-1
+PASS: i386 inval-equ-2
+PASS: i386 ifunc
+PASS: i386 l1om-inval
+PASS: i386 local PIC
+PASS: DWARF2 debugging information 1
+PASS: DWARF2 debugging information 2
+PASS: x86 Intel expressions
+PASS: string insn operands
+PASS: i386 string-bad
+PASS: i386 space1
+PASS: i386 list-1
+PASS: i386 list-2
+PASS: i386 list-3
+PASS: DWARF2 debugging information 1
+Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
+Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
+Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/load-hazards.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/odd-ldw.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/odd-sdw.exp ...
+Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
+Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
+PASS: lns lns-diag-1
+PASS: lns-duplicate
+PASS: lns-common-1
+Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32r2.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/m32rx.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/pic.exp ...
+Running [...]/hurd/gas/testsuite/gas/m32r/rel32.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68hc11/m68hc11.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68k-coff/gas.exp ...
+Running [...]/hurd/gas/testsuite/gas/m68k/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/macros/macros.exp ...
+PASS: macro test 1
+PASS: macro test 2
+PASS: macro test 3
+PASS: macro irp
+PASS: macro rept
+PASS: nested irp/irpc/rept
+PASS: macro vararg
+PASS: macro infinite recursion
+PASS: logical and in macro definition
+PASS: semi
+PASS: strings
+PASS: APP with macro without NO_APP
+PASS: APP with macro then NO_APP
+PASS: APP with macro then NO_APP then more code
+PASS: included file with .if 0 wrapped in APP/NO_APP, no final NO_APP, macro in main file
+PASS: macros badarg
+PASS: macros dot
+PASS: macros end
+PASS: macros purge
+PASS: macros redef
+PASS: gas/macros/paren
+PASS: .exitm outside of a macro
+Running [...]/hurd/gas/testsuite/gas/mcore/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/mep/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/mep/complex-relocs.exp ...
+Running [...]/hurd/gas/testsuite/gas/mips/mips.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix-err.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix-list.exp ...
+Running [...]/hurd/gas/testsuite/gas/mmix/mmix.exp ...
+Running [...]/hurd/gas/testsuite/gas/mn10200/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/mn10300/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/mri/mri.exp ...
+Running [...]/hurd/gas/testsuite/gas/msp430/msp430.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/errors.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/mt.exp ...
+Running [...]/hurd/gas/testsuite/gas/mt/relocs.exp ...
+Running [...]/hurd/gas/testsuite/gas/openrisc/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/pdp11/pdp11.exp ...
+Running [...]/hurd/gas/testsuite/gas/pe/pe.exp ...
+Running [...]/hurd/gas/testsuite/gas/pj/pj.exp ...
+Running [...]/hurd/gas/testsuite/gas/ppc/aix.exp ...
+Running [...]/hurd/gas/testsuite/gas/ppc/ppc.exp ...
+Running [...]/hurd/gas/testsuite/gas/rx/rx.exp ...
+Running [...]/hurd/gas/testsuite/gas/s390/s390.exp ...
+Running [...]/hurd/gas/testsuite/gas/score/relax.exp ...
+Running [...]/hurd/gas/testsuite/gas/score/relax_32.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/arch/arch.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/err.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/sh64/err.exp ...
+Running [...]/hurd/gas/testsuite/gas/sh/sh64/sh64.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc-solaris/addend.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc-solaris/gas.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc/mismatch.exp ...
+Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
+Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
+Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
+PASS: symver symver0
+PASS: symver symver1
+PASS: symver symver2
+PASS: symver symver3
+PASS: symver symver6
+Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
+Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
+Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
+Running [...]/hurd/gas/testsuite/gas/v850/basic.exp ...
+Running [...]/hurd/gas/testsuite/gas/vax/vax.exp ...
+Running [...]/hurd/gas/testsuite/gas/xc16x/xc16x.exp ...
+Running [...]/hurd/gas/testsuite/gas/xstormy16/allinsn.exp ...
+Running [...]/hurd/gas/testsuite/gas/xtensa/all.exp ...
+Running [...]/hurd/gas/testsuite/gas/xtensa/xtensa-err.exp ...
+Running [...]/hurd/gas/testsuite/gas/z80/z80.exp ...
+Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
+
+ === gas Summary ===
+
+# of expected passes 316
+../as-new 2.21.51.20101107
+
diff --git a/open_issues/binutils_testsuite.mdwn b/open_issues/binutils_testsuite.mdwn
deleted file mode 100644
index 0985d32d..00000000
--- a/open_issues/binutils_testsuite.mdwn
+++ /dev/null
@@ -1,147 +0,0 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-[[!tag open_issue_binutils]]
-
-Here's a log of a binutils build and testsuite run; this is from
-a0fc8b2145396563ff60761d8b4ff1d3d3a92c41 (2010-11-07)
-[[sources|source_repositories/binutils]], run on kepler.SCHWINGE and grubber.
-
- $ export LC_ALL=C
- $ ../hurd/configure --prefix="$PWD".install 2>&1 | tee log_build
- [...]
- $ make SHELL=/bin/bash 2>&1 | tee log_build_
- [...]
-
-(kepler.SCHWINGE defaults to using /bin/sh for libtool, grubber to /bin/bash;
-thus harmonized.)
-
-On grubber, this takes roughly 50 minutes.
-
-x86 GNU/Linux and GNU/Hurd's configurations are [[slightly
-different|binutils]], thus mask out most of the differences that are due to
-GNU/Linux defining `-DTRAD_CORE`, `-DHAVE_i386linux_vec`
-(`-DSELECT_VECS='[...],&i386linux_vec[...]`), `-DHAVE_i386pei_vec`
-(`-DSELECT_VECS='[...],&i386pei_vec[...]`).
-
- $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/binutils/hurd.build/ && cat log_build* | sed -e "s%${PWD}%[...]%g" -e s%-DTRAD_CORE%% -e s%-DHAVE_i386linux_vec%% -e s%-DHAVE_i386pei_vec%% -e s%-DSELECT_VECS=\\\('\\\''\\\?\\\)\&bfd_elf32_i386_vec,\&i386linux_vec,\&i386pei_vec,\&bfd_elf32_little_generic_vec,\&bfd_elf32_big_generic_vec'\\\''\\\?%-DSELECT_VECS=\\\1\\\&bfd_elf32_i386_vec,\\\&bfd_elf32_little_generic_vec,\\\&bfd_elf32_big_generic_vec\\\1%') <(ssh grubber 'cd tmp/binutils/hurd.build/ && cat log_build* | sed "s%${PWD}%[...]%g"') > open_issues/binutils_testsuite/log_build-diff
-
-[[log_build-diff]].
-
- $ make -k check
- [...]
-
-On grubber, this takes roughly 45 minutes.
-
- $ ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils_testsuite/sum_linux
- $ ssh grubber 'cd tmp/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils_testsuite/sum_hurd
-
-Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
-
- $ diff -u -F ^Running open_issues/binutils_testsuite/sum_linux open_issues/binutils_testsuite/sum_hurd
- --- open_issues/binutils_testsuite/sum_linux 2010-11-08 06:45:04.000000000 +0100
- +++ open_issues/binutils_testsuite/sum_hurd 2010-11-08 06:45:18.000000000 +0100
- @@ -1,5 +1,5 @@
- -Test Run By thomas on Sun Nov 7 20:20:33 2010
- -Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sun Nov 7 21:03:30 2010
- +Native configuration is i686-unknown-gnu0.3
-
- === binutils tests ===
-
- @@ -114,8 +114,8 @@ Running [...]/hurd/binutils/testsuite/bi
-
- # of expected passes 83
- # of unsupported tests 2
- -Test Run By thomas on Sun Nov 7 20:20:55 2010
- -Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sun Nov 7 21:10:31 2010
- +Native configuration is i686-unknown-gnu0.3
-
- === ld tests ===
-
- @@ -295,9 +295,9 @@ Running [...]/hurd/ld/testsuite/ld-elf/e
- PASS: preinit array
- PASS: init array
- PASS: fini array
- -PASS: static preinit array
- -PASS: static init array
- -PASS: static fini array
- +XFAIL: static preinit array
- +XFAIL: static init array
- +XFAIL: static fini array
- Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
- PASS: ld link shared library
- PASS: ld export symbols from archive
- @@ -551,8 +551,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
- PASS: ELF DSO weak func last DSO
- PASS: ELF weak func first
- PASS: ELF weak func last
- -PASS: ELF weak func first DSO
- -PASS: ELF weak func last DSO
- +XFAIL: ELF weak func first DSO
- +XFAIL: ELF weak func last DSO
- PASS: ELF DSO weak data first
- PASS: ELF DSO weak data last
- PASS: ELF DSO weak data first DSO
- @@ -563,10 +563,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
- PASS: ELF weak data last
- PASS: ELF weak data first common
- PASS: ELF weak data last common
- -PASS: ELF weak data first DSO
- -PASS: ELF weak data last DSO
- -PASS: ELF weak data first DSO common
- -PASS: ELF weak data last DSO common
- +XFAIL: ELF weak data first DSO
- +XFAIL: ELF weak data last DSO
- +XFAIL: ELF weak data first DSO common
- +XFAIL: ELF weak data last DSO common
- PASS: ELF DSO small bar (size)
- PASS: ELF DSO foo with small bar (size)
- PASS: ELF DSO big bar (size)
- @@ -871,13 +871,13 @@ Running [...]/hurd/ld/testsuite/ld-xtens
-
- === ld Summary ===
-
- -# of expected passes 616
- -# of expected failures 8
- +# of expected passes 607
- +# of expected failures 17
- # of untested testcases 6
- /media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
-
- -Test Run By thomas on Sun Nov 7 20:20:38 2010
- -Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sun Nov 7 21:05:14 2010
- +Native configuration is i686-unknown-gnu0.3
-
- === gas tests ===
-
-
-# Analysis
-
-## `FAIL: static [...]`
-
-The testsuite isn't prepared for using `crt0.o` instead of `crt1.o` depending
-on whether a static or dynamic executable is created. Documented in
-`ld/configure.host`. Perhaps we should finally rewrite this messy code in
-glibc to avoid this difference...
-
-## `FAIL: ld-elf/64ksec`
-
-On the idle grubber, this one takes a few minutes wall time to complete
-successfully ([[I/O system weakness|io_system_binutils_ld_64ksec]], so assuming
-some system load variation, the testsuite's timeout may trigger.
-
-## `FAIL: ELF weak [...]`
-
-[[I|tschwinge]] suppose this is due to us having an override w.r.t. weak symbol
-handling in glibc, needed for our external [[libpthread]]. TODO: document
-properly.
diff --git a/open_issues/binutils_testsuite/log_build-diff b/open_issues/binutils_testsuite/log_build-diff
deleted file mode 100644
index 461dd9bd..00000000
--- a/open_issues/binutils_testsuite/log_build-diff
+++ /dev/null
@@ -1,616 +0,0 @@
---- /dev/fd/63 2010-11-08 06:42:49.315023002 +0100
-+++ /dev/fd/62 2010-11-08 06:42:49.315023002 +0100
-@@ -1,6 +1,6 @@
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether ln works... yes
- checking whether ln -s works... yes
-@@ -96,7 +96,7 @@
- checking for gmsgfmt... /usr/bin/msgfmt
- checking for xgettext... /usr/bin/xgettext
- checking for msgmerge... /usr/bin/msgmerge
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -105,9 +105,9 @@
- checking whether we are using the GNU C compiler... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to accept ISO C89... none needed
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking for library containing strerror... none required
- checking how to run the C preprocessor... gcc -E
- checking for grep that handles long lines and -e... /bin/grep
-@@ -214,11 +214,11 @@
- checking whether to enable maintainer-specific portions of Makefiles... no
- checking for makeinfo... makeinfo --split-size=5000000
- checking for perl... perl
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-ranlib... ranlib
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -273,7 +273,7 @@
- checking for sys/sysinfo.h... yes
- checking for machine/hal_sysinfo.h... no
- checking for sys/table.h... no
--checking for sys/sysctl.h... yes
-+checking for sys/sysctl.h... no
- checking for sys/systemcfg.h... no
- checking for stdint.h... (cached) yes
- checking for stdio_ext.h... yes
-@@ -347,13 +347,13 @@
- checking for working fork... yes
- checking for working vfork... (cached) yes
- checking for _doprnt... no
--checking for sys_errlist... yes
--checking for sys_nerr... yes
-+checking for sys_errlist... no
-+checking for sys_nerr... no
- checking for sys_siglist... yes
- checking for external symbol _system_configuration... no
- checking for __fsetlocking... yes
- checking for canonicalize_file_name... yes
--checking for dup3... yes
-+checking for dup3... no
- checking for getrusage... yes
- checking for getsysinfo... no
- checking for gettimeofday... (cached) yes
-@@ -368,7 +368,7 @@
- checking for strerror... yes
- checking for strsignal... yes
- checking for sysconf... yes
--checking for sysctl... yes
-+checking for sysctl... no
- checking for sysmp... no
- checking for table... no
- checking for times... yes
-@@ -402,10 +402,10 @@
- mkdir -p -- ./bfd
- Configuring in ./bfd
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -422,9 +422,9 @@
- checking whether make sets $(MAKE)... yes
- checking for style of include used by make... GNU
- checking dependency style of gcc... gcc3
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-ranlib... ranlib
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -453,34 +453,34 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... (cached) ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... (cached) ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
-+checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for shl_load... no
- checking for shl_load in -ldld... no
- checking for dlopen... no
- checking for dlopen in -ldl... yes
- checking whether a program can dlopen itself... yes
--checking whether a statically linked program can dlopen itself... no
-+checking whether a statically linked program can dlopen itself... yes
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... no
-@@ -563,22 +563,22 @@
- checking sys/procfs.h usability... yes
- checking sys/procfs.h presence... yes
- checking for sys/procfs.h... yes
--checking for prstatus_t in sys/procfs.h... yes
-+checking for prstatus_t in sys/procfs.h... no
- checking for prstatus32_t in sys/procfs.h... no
- checking for prstatus_t.pr_who in sys/procfs.h... no
- checking for prstatus32_t.pr_who in sys/procfs.h... no
--checking for pstatus_t in sys/procfs.h... no
-+checking for pstatus_t in sys/procfs.h... yes
- checking for pxstatus_t in sys/procfs.h... no
- checking for pstatus32_t in sys/procfs.h... no
--checking for prpsinfo_t in sys/procfs.h... yes
-+checking for prpsinfo_t in sys/procfs.h... no
- checking for prpsinfo32_t in sys/procfs.h... no
--checking for psinfo_t in sys/procfs.h... no
-+checking for psinfo_t in sys/procfs.h... yes
- checking for psinfo32_t in sys/procfs.h... no
--checking for lwpstatus_t in sys/procfs.h... no
-+checking for lwpstatus_t in sys/procfs.h... yes
- checking for lwpxstatus_t in sys/procfs.h... no
- checking for lwpstatus_t.pr_context in sys/procfs.h... no
--checking for lwpstatus_t.pr_reg in sys/procfs.h... no
--checking for lwpstatus_t.pr_fpreg in sys/procfs.h... no
-+checking for lwpstatus_t.pr_reg in sys/procfs.h... yes
-+checking for lwpstatus_t.pr_fpreg in sys/procfs.h... yes
- checking for win32_pstatus_t in sys/procfs.h... no
- checking linker --as-needed support... yes
- checking for cos in -lm... yes
-@@ -593,7 +593,7 @@
- checking for unistd.h... (cached) yes
- checking for getpagesize... (cached) yes
- checking for working mmap... yes
--checking for madvise... yes
-+checking for madvise... no
- checking for mprotect... yes
- configure: updating cache ./config.cache
- configure: creating ./config.status
-@@ -1211,36 +1211,15 @@
- /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../hurd/bfd/dwarf1.c
- libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../hurd/bfd/dwarf1.c -o dwarf1.o
- mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c -o i386linux.lo ../../hurd/bfd/i386linux.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c ../../hurd/bfd/i386linux.c -o i386linux.o
--mv -f .deps/i386linux.Tpo .deps/i386linux.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c -o aout32.lo ../../hurd/bfd/aout32.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c ../../hurd/bfd/aout32.c -o aout32.o
--mv -f .deps/aout32.Tpo .deps/aout32.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c -o pei-i386.lo ../../hurd/bfd/pei-i386.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c ../../hurd/bfd/pei-i386.c -o pei-i386.o
--mv -f .deps/pei-i386.Tpo .deps/pei-i386.Plo
--rm -f peigen.c
--sed -e s/XX/pe/g < ../../hurd/bfd/peXXigen.c > peigen.new
--mv -f peigen.new peigen.c
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c -o peigen.lo peigen.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c peigen.c -o peigen.o
--mv -f .deps/peigen.Tpo .deps/peigen.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c -o cofflink.lo ../../hurd/bfd/cofflink.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c ../../hurd/bfd/cofflink.c -o cofflink.o
--mv -f .deps/cofflink.Tpo .deps/cofflink.Plo
- /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c -o elf32-gen.lo ../../hurd/bfd/elf32-gen.c
- libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c ../../hurd/bfd/elf32-gen.c -o elf32-gen.o
- mv -f .deps/elf32-gen.Tpo .deps/elf32-gen.Plo
- /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c -o cpu-i386.lo ../../hurd/bfd/cpu-i386.c
- libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c ../../hurd/bfd/cpu-i386.c -o cpu-i386.o
- mv -f .deps/cpu-i386.Tpo .deps/cpu-i386.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c -o trad-core.lo ../../hurd/bfd/trad-core.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c ../../hurd/bfd/trad-core.c -o trad-core.o
--mv -f .deps/trad-core.Tpo .deps/trad-core.Plo
- rm -f tofiles
- f=""; \
-- for i in elf32-i386.lo elf-ifunc.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo i386linux.lo aout32.lo pei-i386.lo peigen.lo cofflink.lo elf32-gen.lo cpu-i386.lo trad-core.lo ; do \
-+ for i in elf32-i386.lo elf-ifunc.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo elf32-gen.lo cpu-i386.lo ; do \
- case " $f " in \
- *" $i "*) ;; \
- *) f="$f $i" ;; \
-@@ -1250,7 +1229,7 @@
- /bin/bash ../../hurd/bfd/../move-if-change tofiles ofiles
- touch stamp-ofiles
- /bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -release `cat libtool-soversion` -o libbfd.la -rpath [...].install/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles` -lz
--libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o i386linux.o aout32.o pei-i386.o peigen.o cofflink.o elf32-gen.o cpu-i386.o trad-core.o
-+libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o elf32-gen.o cpu-i386.o
- libtool: link: ranlib .libs/libbfd.a
- libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
- libtooldir=`/bin/bash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
-@@ -1266,10 +1245,10 @@
- mkdir -p -- ./opcodes
- Configuring in ./opcodes
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -1286,7 +1265,7 @@
- checking whether make sets $(MAKE)... yes
- checking for style of include used by make... GNU
- checking dependency style of gcc... gcc3
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1307,8 +1286,8 @@
- checking minix/config.h presence... no
- checking for minix/config.h... no
- checking whether it is safe to define __EXTENSIONS__... yes
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking how to print strings... printf
- checking for a sed that does not truncate output... /bin/sed
- checking for fgrep... /bin/grep -F
-@@ -1317,27 +1296,27 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... (cached) ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... (cached) ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
-+checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -1441,10 +1420,10 @@
- mkdir -p -- ./binutils
- Configuring in ./binutils
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -1461,7 +1440,7 @@
- checking whether make sets $(MAKE)... yes
- checking for style of include used by make... GNU
- checking dependency style of gcc... gcc3
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1492,28 +1471,28 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -1533,7 +1512,7 @@
- checking for xgettext... /usr/bin/xgettext
- checking for msgmerge... /usr/bin/msgmerge
- checking whether to enable maintainer-specific portions of Makefiles... no
--checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
-+checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
- checking for string.h... (cached) yes
- checking for strings.h... (cached) yes
- checking for stdlib.h... (cached) yes
-@@ -1906,10 +1885,10 @@
- mkdir -p -- ./gas
- Configuring in ./gas
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -1926,7 +1905,7 @@
- checking whether make sets $(MAKE)... yes
- checking for style of include used by make... GNU
- checking dependency style of gcc... gcc3
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1957,28 +1936,28 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -2158,10 +2137,10 @@
- mkdir -p -- ./gprof
- Configuring in ./gprof
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -2178,7 +2157,7 @@
- checking whether make sets $(MAKE)... yes
- checking for style of include used by make... GNU
- checking dependency style of gcc... gcc3
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -2209,28 +2188,28 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -2389,10 +2368,10 @@
- mkdir -p -- ./ld
- Configuring in ./ld
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -2414,7 +2393,7 @@
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -2442,28 +2421,28 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -2546,13 +2525,13 @@
- /bin/bash ../../hurd/ld/../ylwrap ../../hurd/ld/ldgram.y y.tab.c ldgram.c y.tab.h ldgram.h y.output ldgram.output -- bison -y -d
- updating ldgram.h
- (echo "/* This file is automatically generated. DO NOT EDIT! */";\
-- for f in `echo " " eelf_i386.o ei386linux.o "" \
-+ for f in `echo " " eelf_i386.o "" \
- | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
- echo "extern ld_emulation_xfer_type ld_${f}_emulation;"; \
- done;\
- echo "";\
- echo "#define EMULATION_LIST \\";\
-- for f in `echo " " eelf_i386.o ei386linux.o "" \
-+ for f in `echo " " eelf_i386.o "" \
- | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
- echo " &ld_${f}_emulation, \\"; \
- done;\
-@@ -2639,8 +2618,8 @@
- mv -f .deps/ldctor.Tpo .deps/ldctor.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
- -DDEFAULT_EMULATION='"elf_i386"' \
-- -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-pc-linux-gnu/bin"' \
-- -DTARGET='"i686-pc-linux-gnu"' -DTARGET_SYSTEM_ROOT=\"\" \
-+ -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-unknown-gnu0.3/bin"' \
-+ -DTARGET='"i686-unknown-gnu0.3"' -DTARGET_SYSTEM_ROOT=\"\" \
- ../../hurd/ld/ldmain.c
- mv -f .deps/ldmain.Tpo .deps/ldmain.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldwrite.o -MD -MP -MF .deps/ldwrite.Tpo -c -o ldwrite.o ../../hurd/ld/ldwrite.c
-@@ -2654,7 +2633,7 @@
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmisc.o -MD -MP -MF .deps/ldmisc.Tpo -c -o ldmisc.o ../../hurd/ld/ldmisc.c
- mv -f .deps/ldmisc.Tpo .deps/ldmisc.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
-- -DSCRIPTDIR='"[...].install/i686-pc-linux-gnu/lib"' -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-pc-linux-gnu/bin"' \
-+ -DSCRIPTDIR='"[...].install/i686-unknown-gnu0.3/lib"' -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-unknown-gnu0.3/bin"' \
- ../../hurd/ld/ldfile.c
- mv -f .deps/ldfile.Tpo .deps/ldfile.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldcref.o -MD -MP -MF .deps/ldcref.Tpo -c -o ldcref.o ../../hurd/ld/ldcref.c
-@@ -2662,14 +2641,11 @@
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../hurd/ld/plugin.c
- mv -f .deps/plugin.Tpo .deps/plugin.Po
- cp ../../hurd/ld/emultempl/astring.sed stringify.sed
--LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-pc-linux-gnu"
-+LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-unknown-gnu0.3 i686-unknown-gnu0.3 i686-unknown-gnu0.3 "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-unknown-gnu0.3"
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT eelf_i386.o -MD -MP -MF .deps/eelf_i386.Tpo -c -o eelf_i386.o eelf_i386.c
- mv -f .deps/eelf_i386.Tpo .deps/eelf_i386.Po
--LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no i386linux "i686-pc-linux-gnuaout"
--gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ei386linux.o -MD -MP -MF .deps/ei386linux.Tpo -c -o ei386linux.o ei386linux.c
--mv -f .deps/ei386linux.Tpo .deps/ei386linux.Po
--/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
--libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
-+/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
-+libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
- touch ld.1
- perl ../../hurd/ld/../etc/texi2pod.pl -I ../../hurd/ld -I ../../hurd/ld/../bfd/doc -I ../bfd/doc -I ../../hurd/ld/../libiberty -Dman < ../../hurd/ld/ld.texinfo > ld.pod
- (pod2man --center="GNU Development Tools" --release="binutils-2.21.51" --section=1 ld.pod | \
diff --git a/open_issues/binutils_testsuite/sum_hurd b/open_issues/binutils_testsuite/sum_hurd
deleted file mode 100644
index d1373e39..00000000
--- a/open_issues/binutils_testsuite/sum_hurd
+++ /dev/null
@@ -1,1316 +0,0 @@
-Test Run By tschwinge on Sun Nov 7 21:03:30 2010
-Native configuration is i686-unknown-gnu0.3
-
- === binutils tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/binutils/testsuite/binutils-all/ar.exp ...
-PASS: ar long file names
-PASS: ar symbol table
-PASS: ar thin archive
-PASS: ar thin archive with nested archive
-PASS: ar argument parsing
-PASS: ar deterministic archive
-PASS: ar unique symbol in archive
-Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/compress.exp ...
-PASS: objcopy (objcopy compress debug sections)
-PASS: objcopy (objcopy decompress compressed debug sections)
-PASS: objcopy decompress debug sections in archive
-PASS: objcopy compress debug sections in archive
-Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
-UNSUPPORTED: Update ELF header 1
-PASS: Update ELF header 2
-PASS: Update ELF header 3
-Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
-PASS: objcopy on compressed debug sections
-PASS: strip on uncompressed debug sections
-PASS: strip on compressed debug sections
-Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
-PASS: nm (no arguments)
-PASS: nm -g
-PASS: nm -P
-Running [...]/hurd/binutils/testsuite/binutils-all/objcopy.exp ...
-PASS: objcopy (simple copy)
-PASS: objcopy --reverse-bytes
-PASS: objcopy -i --interleave-width
-PASS: objcopy -O srec
-PASS: objcopy --set-start
-PASS: objcopy --adjust-start
-PASS: objcopy --adjust-vma
-PASS: objcopy --adjust-section-vma +
-PASS: objcopy --adjust-section-vma =
-PASS: strip
-PASS: strip with saving a symbol
-PASS: simple objcopy of executable
-PASS: run objcopy of executable
-PASS: run stripped executable
-PASS: run stripped executable with saving a symbol
-PASS: keep only debug data
-PASS: simple objcopy of debug data
-PASS: objcopy (ELF unknown section type)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: copy removing group member
-PASS: copy with setting section flags 1
-PASS: add notes section
-PASS: copy with setting section flags 2
-PASS: copy with setting section flags 3
-PASS: strip --strip-unneeded on common symbol
-PASS: strip with section group 1
-PASS: strip with section group 2
-PASS: strip empty file
-PASS: strip with section group 4
-PASS: strip with section group 5
-PASS: strip with section group 6
-PASS: strip with section group 7
-PASS: strip with section group 8
-PASS: strip with section group 9
-PASS: strip on STB_GNU_UNIQUE
-PASS: objcopy keeps symbols needed by relocs
-PASS: --localize-hidden test 1
-PASS: unordered .debug_info references to .debug_ranges
-UNSUPPORTED: unordered .debug_info references to .debug_ranges
-PASS: objcopy add-section
-PASS: objcopy add-empty-section
-PASS: objcopy on sections with SHF_EXCLUDE
-PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
-PASS: --localize-hidden test 2
-Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
-PASS: objdump -i
-PASS: objdump -f
-PASS: objdump -h
-PASS: objdump -t
-PASS: objdump -r
-PASS: objdump -s
-PASS: objdump -s -j .zdebug_abbrev
-PASS: objdump -W
-Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
-PASS: finding out ELF size with readelf -h
-PASS: readelf -h
-PASS: readelf -S
-PASS: readelf -s
-PASS: readelf -r
-PASS: readelf -wi
-PASS: readelf -wa (compressed)
-PASS: readelf -p
-Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
-PASS: size (no arguments)
-PASS: size -A
-Running [...]/hurd/binutils/testsuite/binutils-all/vax/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/windres/windres.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
-
- === binutils Summary ===
-
-# of expected passes 83
-# of unsupported tests 2
-Test Run By tschwinge on Sun Nov 7 21:10:31 2010
-Native configuration is i686-unknown-gnu0.3
-
- === ld tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/ld/testsuite/ld-alpha/alpha.exp ...
-Running [...]/hurd/ld/testsuite/ld-arm/arm-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-auto-import/auto-import.exp ...
-Running [...]/hurd/ld/testsuite/ld-bootstrap/bootstrap.exp ...
-UNTESTED: bootstrap
-UNTESTED: bootstrap with strip
-UNTESTED: bootstrap with --static
-UNTESTED: bootstrap with --traditional-format
-UNTESTED: bootstrap with --no-keep-memory
-UNTESTED: bootstrap with --relax
-Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
-PASS: cdtest
-PASS: cdtest with -Ur
-Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
-PASS: check sections 1
-PASS: check sections 2
-Running [...]/hurd/ld/testsuite/ld-cris/cris.exp ...
-Running [...]/hurd/ld/testsuite/ld-crx/crx.exp ...
-Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
-Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
-Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
-PASS: ld-discard/extern
-PASS: ld-discard/start
-PASS: ld-discard/static
-PASS: ld-discard/zero-range
-PASS: ld-discard/zero-rel
-Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
-PASS: Run with -paudit.so
-PASS: Run with -Paudit.so
-PASS: Run with --depaudit=audit.so
-PASS: Run with shared with --audit
-PASS: Run with shared with --audit
-PASS: Run with -lusesaudit
-PASS: Run with -lusesaudit -lusesaudit2
-Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
-PASS: strip -z max-page-size=0x200000 (maxpage1)
-PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
-PASS: strip -z max-page-size=0x100000 (maxpage1)
-PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
-PASS: strip (maxpage1)
-PASS: strip -shared (maxpage1)
-PASS: objcopy (maxpage1)
-PASS: objcopy -shared (maxpage1)
-PASS: strip -z relro (relro1)
-PASS: strip -z relro -shared (relro1)
-PASS: objcopy -z relro (relro1)
-PASS: objcopy -z relro -shared (relro1)
-PASS: strip -z relro -shared (relro2)
-PASS: objcopy -z relro -shared (relro2)
-PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
-PASS: objcopy (tbss1)
-PASS: objcopy -z relro (tbss1)
-PASS: objcopy -shared (tbss1)
-PASS: objcopy -shared -z relro (tbss1)
-PASS: objcopy -z max-page-size=0x100000 (tbss1)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
-PASS: objcopy (tdata1)
-PASS: objcopy -z relro (tdata1)
-PASS: objcopy -shared (tdata1)
-PASS: objcopy -shared -z relro (tdata1)
-PASS: objcopy -z max-page-size=0x100000 (tdata1)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
-PASS: objcopy (tbss2)
-PASS: objcopy -z relro (tbss2)
-PASS: objcopy -shared (tbss2)
-PASS: objcopy -shared -z relro (tbss2)
-PASS: objcopy -z max-page-size=0x100000 (tbss2)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
-PASS: objcopy (tdata2)
-PASS: objcopy -z relro (tdata2)
-PASS: objcopy -shared (tdata2)
-PASS: objcopy -shared -z relro (tdata2)
-PASS: objcopy -z max-page-size=0x100000 (tdata2)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
-Running [...]/hurd/ld/testsuite/ld-elf/compress.exp ...
-PASS: Build libfoo.so with compressed debug sections
-PASS: Build libbar.so with compressed debug sections
-PASS: Run normal with libfoo.so with compressed debug sections
-Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
-PASS: Build libdwarf1.so
-PASS: Run with libdwarf1.so first
-PASS: Run with libdwarf1.so last
-PASS: Strip -s libdwarf1c.so
-Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
-PASS: Guess the target size from eh-group1size.o
-PASS: Build eh-group1.o
-PASS: Link eh-group.o to eh-group
-Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
-PASS: ld-elf/commonpage1
-PASS: ld-elf/compress1a
-PASS: ld-elf/compress1b
-PASS: ld-elf/compress1c
-PASS: ld-elf/discard1
-PASS: ld-elf/discard2
-PASS: ld-elf/discard3
-PASS: ld-elf/dynsym1
-PASS: ld-elf/eh-frame-hdr
-PASS: ld-elf/eh5
-PASS: ld-elf/eh6
-PASS: ld-elf/empty
-PASS: ld-elf/empty2
-PASS: ld-elf/exclude3a
-PASS: ld-elf/exclude3b
-PASS: ld-elf/exclude3c
-PASS: ld-elf/expr1
-PASS: --extract-symbol test 1 (sections)
-PASS: --extract-symbol test 1 (symbols)
-PASS: --set-section-flags test 1 (sections)
-PASS: ld-elf/group1
-PASS: ld-elf/group10
-PASS: ld-elf/group2
-PASS: ld-elf/group3a
-PASS: ld-elf/group3b
-PASS: ld-elf/group4
-PASS: ld-elf/group5
-PASS: ld-elf/group6
-PASS: ld-elf/group7
-PASS: ld-elf/group8a
-PASS: ld-elf/group8b
-PASS: ld-elf/group9a
-PASS: ld-elf/group9b
-PASS: ld-elf/hash
-PASS: ld-elf/header
-PASS: ld-elf/init-fini-arrays
-PASS: ld-elf/linkonce1
-PASS: ld-elf/linkonce2
-PASS: ld-elf/linkoncerdiff
-PASS: ld-elf/loadaddr1
-PASS: ld-elf/loadaddr2
-PASS: ld-elf/loadaddr3a
-PASS: ld-elf/loadaddr3b
-PASS: ld-elf/local1
-PASS: ld-elf/maxpage1
-PASS: ld-elf/maxpage2
-PASS: ld-elf/maxpage3a
-PASS: ld-elf/merge
-PASS: ld-elf/merge2
-PASS: ld-elf/multibss1
-PASS: ld-elf/nobits-1
-PASS: ld-elf/noload-1
-PASS: ld-elf/noload-2
-PASS: ld-elf/noload-3
-PASS: ld-elf/note-1
-PASS: ld-elf/note-2
-PASS: ld-elf/orphan-region
-PASS: ld-elf/orphan
-PASS: ld-elf/orphan2
-PASS: ld-elf/orphan3
-PASS: ld-elf/orphan4
-PASS: ld-elf/overlay
-PASS: ld-elf/pr11304
-PASS: ld-elf/pr349
-PASS: relocatable with script
-PASS: ld-elf/seg
-PASS: ld-elf/stab
-PASS: ld-elf/textaddr1
-PASS: ld-elf/textaddr2
-PASS: ld-elf/textaddr3
-PASS: ld-elf/textaddr4
-PASS: ld-elf/textaddr5
-PASS: ld-elf/textaddr6
-PASS: ld-elf/textaddr7
-PASS: ld-elf/unknown
-PASS: ld-elf/unknown2
-PASS: ld-elf/warn1
-PASS: ld-elf/warn2
-PASS: Weak symbols in dynamic objects 1 (support)
-PASS: Weak symbols in dynamic objects 1 (main test)
-PASS: --gc-sections on tls variable
-PASS: preinit array
-PASS: init array
-PASS: fini array
-XFAIL: static preinit array
-XFAIL: static init array
-XFAIL: static fini array
-Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
-PASS: ld link shared library
-PASS: ld export symbols from archive
-PASS: ld link shared library with --exclude-libs
-PASS: ld exclude symbols from archive - --exclude-libs libexclude
-PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
-PASS: ld exclude symbols from archive - --exclude-libs ALL
-PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
-PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
-PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
-Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
-PASS: read-only .eh_frame section
-PASS: read-only .gcc_except_table section
-Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
-PASS: assignment of ELF sections to segments (same page)
-PASS: assignment of ELF sections to segments (adjacent pages)
-PASS: assignment of ELF sections to segments (disjoint pages)
-Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
-PASS: ld-elf/64ksec-r
-PASS: ld-elf/64ksec
-Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
-PASS: Build libfoo.so
-PASS: Build versioned libfoo.so
-PASS: Build libbar.so
-PASS: Build warn libbar.so
-PASS: Build hidden libbar.so
-PASS: Build protected libbar.so
-PASS: Build libbar.so with libfoo.so
-PASS: Build libar.so with versioned libfoo.so
-PASS: Build hidden libbar.so with libfoo.so
-PASS: Build hidden libar.so with versioned libfoo.so
-PASS: Build protected libbar.so with libfoo.so
-PASS: Build protected libbar.so with versioned libfoo.so
-PASS: Build libdl1.so
-PASS: Build libdl2a.so with --dynamic-list=dl2.list
-PASS: Build libdl2a.so with --dynamic-list=dl2a.list
-PASS: Build libdl2a.so with --dynamic-list-data
-PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
-PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
-PASS: Build libdl4a.so with --dynamic-list=dl4.list
-PASS: Build libdl4b.so with --dynamic-list-data
-PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
-PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
-PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
-PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
-PASS: Build libdl6a.so
-PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
-PASS: Build libdl6c.so with -Bsymbolic
-PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
-PASS: Build libdata1.so
-PASS: Build libcomm1.o
-PASS: Build libfunc1.so
-PASS: Build libpr9676-1.a
-PASS: Build libpr9676-2.a
-PASS: Build libpr9676-3.so
-PASS: Build libpr9676-4.so
-PASS: Build libpr9676-4a.so
-PASS: Build libpr9679.so
-PASS: Build libpr11138-1.so
-PASS: Build libpr11138-2.o
-PASS: Run normal with libfoo.so
-PASS: Run protected with libfoo.so
-PASS: Run hidden with libfoo.so
-PASS: Run normal with versioned libfoo.so
-PASS: Run warn with versioned libfoo.so
-PASS: Run protected with versioned libfoo.so
-PASS: Run hidden with versioned libfoo.so
-PASS: Run normal libbar.so with libfoo.so
-PASS: Run protected libbar.so with libfoo.so
-PASS: Run hidden libbar.so with libfoo.so
-PASS: Run normal libbar.so with versioned libfoo.so
-PASS: Run protected libbar.so with versioned libfoo.so
-PASS: Run hidden libbar.so with versioned libfoo.so
-PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
-PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
-PASS: Run with libdl2a.so
-PASS: Run with libdl2b.so
-PASS: Run with libdl2c.so
-PASS: Run with libdl4a.so
-PASS: Run with libdl4b.so
-PASS: Run with libdl4c.so
-PASS: Run with libdl4d.so
-PASS: Run with libdl4e.so
-PASS: Run with libdl4f.so
-PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
-PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
-PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
-PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
-PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
-PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
-PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
-PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
-PASS: Run dl6b2 with dlopen on libdl6b.so
-PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
-PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
-PASS: Run with libdata1.so
-PASS: Run with libfunc1.so comm1.o
-PASS: Run with comm1.o libfunc1.so
-PASS: Run with pr11138-2.c libpr11138-1.so
-PASS: Run with libpr11138-1.so pr11138-2.c
-PASS: Build libdl3a.so with --dynamic-list=dl3.list
-PASS: Build libdl3b.so with -Bsymbolic
-PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
-PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
-PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
-PASS: Run with libdl3a.so
-PASS: Run with libdl3c.so
-PASS: Run with libnew1a.so
-PASS: Run with libnew1b.so
-Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
-PASS: tls_common
-Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
-PASS: Build libwrap1a.so
-PASS: Build libwrap1b.so
-PASS: Run with libwrap1a.so and libwrap1b.so
-PASS: Run with libwrap1b.so and libwrap1a.so
-Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
-PASS: --sort-common (descending)
-PASS: --sort-common (ascending)
-PASS: size/aligment change of common symbols (warning 1)
-PASS: size/aligment change of common symbols (change 1)
-PASS: size/aligment change of common symbols (warning 2)
-PASS: size/aligment change of common symbols (change 2)
-Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
-PASS: vers1
-PASS: vers2
-PASS: vers3
-PASS: vers4
-PASS: vers4a
-PASS: vers4b
-PASS: vers5
-PASS: vers6
-PASS: vers7a
-PASS: vers7
-PASS: vers8
-PASS: vers9
-PASS: vers10
-PASS: vers11
-PASS: vers12
-PASS: ar with versioned solib
-PASS: vers14
-PASS: vers15
-PASS: vers16a
-PASS: vers16
-PASS: vers17
-PASS: vers18
-PASS: vers19
-PASS: vers20a
-PASS: vers20
-PASS: vers21
-PASS: vers22a
-PASS: vers22b
-PASS: vers22
-PASS: vers23a
-PASS: vers23b
-PASS: vers23c
-PASS: vers23d
-PASS: vers23
-PASS: vers24a
-PASS: vers24b
-PASS: vers24c
-PASS: vers25a
-PASS: vers25b1
-PASS: vers25b2
-PASS: vers26a
-PASS: vers26b1
-PASS: vers26b2
-PASS: vers26b3
-PASS: vers27a
-PASS: vers27b
-PASS: vers27c1
-PASS: vers27c2
-PASS: vers27d1
-PASS: vers27d2
-PASS: vers27d3
-PASS: vers27d4
-PASS: vers27d5
-PASS: vers28a
-PASS: vers28b
-PASS: vers28c
-PASS: vers29
-PASS: vers30
-PASS: vers31
-PASS: vers32a
-PASS: vers32b
-Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
-PASS: ld-elfvsb/hidden0
-PASS: ld-elfvsb/hidden1
-PASS: ld-elfvsb/hidden2
-PASS: ld-elfvsb/internal0
-PASS: ld-elfvsb/internal1
-PASS: ld-elfvsb/protected0
-PASS: ld-elfvsb/protected1
-PASS: visibility (hidden) (non PIC)
-PASS: visibility (hidden) (non PIC, load offset)
-PASS: visibility (hidden)
-PASS: visibility (hidden) (PIC main, non PIC so)
-PASS: visibility (hidden) (PIC main)
-PASS: visibility (hidden_normal) (non PIC)
-PASS: visibility (hidden_normal) (non PIC, load offset)
-PASS: visibility (hidden_normal)
-PASS: visibility (hidden_normal) (PIC main, non PIC so)
-PASS: visibility (hidden_normal) (PIC main)
-PASS: visibility (hidden_undef) (non PIC)
-PASS: visibility (hidden_undef) (non PIC, load offset)
-PASS: visibility (hidden_undef)
-PASS: visibility (hidden_undef) (PIC main, non PIC so)
-PASS: visibility (hidden_undef) (PIC main)
-PASS: visibility (hidden_undef_def) (non PIC)
-PASS: visibility (hidden_undef_def) (non PIC, load offset)
-PASS: visibility (hidden_undef_def)
-PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
-PASS: visibility (hidden_undef_def) (PIC main)
-PASS: visibility (hidden_weak) (non PIC)
-PASS: visibility (hidden_weak) (non PIC, load offset)
-PASS: visibility (hidden_weak)
-PASS: visibility (hidden_weak) (PIC main, non PIC so)
-PASS: visibility (hidden_weak) (PIC main)
-PASS: visibility (protected) (non PIC)
-PASS: visibility (protected) (non PIC, load offset)
-PASS: visibility (protected)
-PASS: visibility (protected) (PIC main, non PIC so)
-PASS: visibility (protected) (PIC main)
-PASS: visibility (protected_undef) (non PIC)
-PASS: visibility (protected_undef) (non PIC, load offset)
-PASS: visibility (protected_undef)
-PASS: visibility (protected_undef) (PIC main, non PIC so)
-PASS: visibility (protected_undef) (PIC main)
-PASS: visibility (protected_undef_def) (non PIC)
-PASS: visibility (protected_undef_def) (non PIC, load offset)
-PASS: visibility (protected_undef_def)
-PASS: visibility (protected_undef_def) (PIC main, non PIC so)
-PASS: visibility (protected_undef_def) (PIC main)
-PASS: visibility (protected_weak) (non PIC)
-PASS: visibility (protected_weak) (non PIC, load offset)
-PASS: visibility (protected_weak)
-PASS: visibility (protected_weak) (PIC main, non PIC so)
-PASS: visibility (protected_weak) (PIC main)
-PASS: visibility (normal) (non PIC)
-PASS: visibility (normal) (non PIC, load offset)
-PASS: visibility (normal)
-PASS: visibility (normal) (PIC main, non PIC so)
-PASS: visibility (normal) (PIC main)
-PASS: common hidden symbol
-PASS: weak hidden symbol DSO last
-PASS: weak hidden symbol DSO first
-Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
-PASS: ELF DSO weak func first
-PASS: ELF DSO weak func last
-PASS: ELF DSO weak func first DSO
-PASS: ELF DSO weak func last DSO
-PASS: ELF weak func first
-PASS: ELF weak func last
-XFAIL: ELF weak func first DSO
-XFAIL: ELF weak func last DSO
-PASS: ELF DSO weak data first
-PASS: ELF DSO weak data last
-PASS: ELF DSO weak data first DSO
-PASS: ELF DSO weak data last DSO
-PASS: ELF DSO weak data first DSO common
-PASS: ELF DSO weak data last DSO common
-PASS: ELF weak data first
-PASS: ELF weak data last
-PASS: ELF weak data first common
-PASS: ELF weak data last common
-XFAIL: ELF weak data first DSO
-XFAIL: ELF weak data last DSO
-XFAIL: ELF weak data first DSO common
-XFAIL: ELF weak data last DSO common
-PASS: ELF DSO small bar (size)
-PASS: ELF DSO foo with small bar (size)
-PASS: ELF DSO big bar (size)
-PASS: ELF weak size
-PASS: ld-elfweak/size2
-Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/tls.exp ...
-Running [...]/hurd/ld/testsuite/ld-gc/gc.exp ...
-PASS: Check --gc-section
-PASS: Check --gc-section/-q
-PASS: Check --gc-section/-r/-e
-PASS: Check --gc-section/-r/-u
-PASS: --gc-sections -r without -e
-PASS: --gc-sections with note section
-PASS: --gc-sections with __start_
-PASS: --gc-sections with shared library
-Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
-Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
-PASS: TLS -fpic -shared transitions
-PASS: TLS descriptor -fpic -shared transitions
-PASS: Helper shared library
-PASS: TLS -fpic and -fno-pic exec transitions
-PASS: TLS descriptor -fpic and -fno-pic exec transitions
-PASS: TLS -fno-pic -shared
-PASS: TLS with global dynamic and descriptors
-PASS: TLS in debug sections
-PASS: TLS @indntpoff with %eax
-PASS: Reloc section order
-PASS: Basic --emit-relocs support
-PASS: -z combreloc relocation sections
-PASS: TLS GD->LE transition
-PASS: TLS LD->LE transition
-PASS: TLS IE->LE transition
-PASS: Absolute non-overflowing relocs
-PASS: PCREL8 overflow
-PASS: PCREL16 overflow
-PASS: PCREL16 absolute reloc
-PASS: Invalid allocated section
-PASS: --warn-shared-textrel --fatal-warnings
-PASS: TLS GD->LE transition check
-PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
-PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
-PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
-PASS: TLS IE->LE transition check (R_386_TLS_IE)
-PASS: ld-i386/hidden1
-PASS: ld-i386/hidden2
-PASS: ld-i386/hidden3
-PASS: ld-i386/protected1
-PASS: ld-i386/protected2
-PASS: ld-i386/protected3
-PASS: TLS with PIE
-PASS: ld-i386/nogot1
-PASS: ld-i386/nogot2
-PASS: ld-i386/discarded1
-PASS: undefined symbol with compressed debug sections
-Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
-Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
-Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
-PASS: strip (ifunc-4-x86)
-PASS: objcopy (ifunc-4-x86)
-PASS: strip (ifunc-4-local-x86)
-PASS: objcopy (ifunc-4-local-x86)
-Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
-PASS: Building ifunc binaries
-PASS: Checking ifunc binaries
-PASS: ld-ifunc/ifunc-1-local-x86
-PASS: ld-ifunc/ifunc-1-x86
-PASS: ld-ifunc/ifunc-10-i386
-PASS: ld-ifunc/ifunc-11-i386
-PASS: ld-ifunc/ifunc-2-i386
-PASS: ld-ifunc/ifunc-2-local-i386
-PASS: ld-ifunc/ifunc-3a-x86
-PASS: ld-ifunc/ifunc-3b-x86
-PASS: ld-ifunc/ifunc-4-local-x86
-PASS: ld-ifunc/ifunc-4-x86
-PASS: ld-ifunc/ifunc-4a-x86
-PASS: ld-ifunc/ifunc-5a-i386
-PASS: ld-ifunc/ifunc-5a-local-i386
-PASS: ld-ifunc/ifunc-5b-i386
-PASS: ld-ifunc/ifunc-5b-local-i386
-PASS: ld-ifunc/ifunc-5r-local-i386
-PASS: ld-ifunc/ifunc-6a-i386
-PASS: ld-ifunc/ifunc-6b-i386
-PASS: ld-ifunc/ifunc-7a-i386
-PASS: ld-ifunc/ifunc-7b-i386
-PASS: ld-ifunc/ifunc-8-i386
-PASS: ld-ifunc/ifunc-9-x86
-Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
-PASS: -l: test (preparation)
-PASS: -l: test
-Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
-PASS: ld-linkonce/zeroehl32
-Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
-Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
-Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
-Running [...]/hurd/ld/testsuite/ld-mep/mep.exp ...
-Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
-Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-mmix/mmix.exp ...
-Running [...]/hurd/ld/testsuite/ld-mn10300/mn10300.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-compile.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-run.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
-Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
-PASS: weak undefined
-PASS: weak undefined data
-PASS: missing entry symbol
-Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
-PASS: plugin API enabled
-PASS: load plugin
-PASS: fail plugin onload
-PASS: fail plugin allsymbolsread
-PASS: fail plugin cleanup
-PASS: plugin all hooks
-PASS: plugin claimfile lost symbol
-PASS: plugin claimfile replace symbol
-PASS: plugin claimfile resolve symbol
-PASS: plugin claimfile replace file
-PASS: plugin set symbol visibility
-PASS: plugin ignore lib
-PASS: plugin claimfile replace lib
-Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
-Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
-Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
-Running [...]/hurd/ld/testsuite/ld-scripts/align.exp ...
-PASS: align1
-PASS: ld-scripts/align2a
-PASS: ld-scripts/align2b
-PASS: ld-scripts/align2c
-Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
-PASS: ALIGNOF
-Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
-PASS: ASSERT
-Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
-PASS: NOCROSSREFS 1
-PASS: NOCROSSREFS 2
-PASS: NOCROSSREFS 3
-Running [...]/hurd/ld/testsuite/ld-scripts/data.exp ...
-PASS: ld-scripts/data
-Running [...]/hurd/ld/testsuite/ld-scripts/default-script.exp ...
-PASS: ld-scripts/default-script1
-PASS: ld-scripts/default-script2
-PASS: ld-scripts/default-script3
-PASS: ld-scripts/default-script4
-Running [...]/hurd/ld/testsuite/ld-scripts/defined.exp ...
-PASS: DEFINED (PRMS 5699)
-PASS: ld-scripts/defined2
-PASS: ld-scripts/defined3
-Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
-PASS: dynamic sections
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
-PASS: ld-scripts/empty-address-1
-PASS: ld-scripts/empty-address-2a
-PASS: ld-scripts/empty-address-2b
-PASS: ld-scripts/empty-address-3a
-PASS: ld-scripts/empty-address-3b
-PASS: ld-scripts/empty-address-3c
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
-PASS: ld-scripts/empty-aligned
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
-PASS: ld-scripts/empty-orphan
-Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
-PASS: ld-scripts/expr1
-Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
-PASS: EXTERN
-Running [...]/hurd/ld/testsuite/ld-scripts/include.exp ...
-PASS: include-1
-Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
-PASS: map addresses
-Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
-PASS: overlay size
-PASS: overlay size (map check)
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
-PASS: PHDRS
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
-PASS: PHDRS2
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
-PASS: PHDRS headers
-PASS: PHDRS headers 3a
-Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
-PASS: ld-scripts/provide-1
-PASS: ld-scripts/provide-2
-XFAIL: ld-scripts/provide-3
-Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
-PASS: rgn-at1
-PASS: rgn-at2
-PASS: rgn-at3
-PASS: rgn-at4
-PASS: rgn-at5
-Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
-PASS: rgn-over1
-PASS: rgn-over1 (map check)
-PASS: rgn-over2
-PASS: rgn-over2 (map check)
-PASS: rgn-over3
-PASS: rgn-over3 (map check)
-PASS: rgn-over4
-PASS: rgn-over4 (map check)
-PASS: rgn-over5
-PASS: rgn-over5 (map check)
-PASS: rgn-over6
-PASS: rgn-over6 (map check)
-PASS: rgn-over7
-PASS: rgn-over7 (map check)
-PASS: rgn-over8
-Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
-PASS: script
-PASS: MRI script
-PASS: MEMORY
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
-Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
-PASS: ld-scripts/section-match-1
-Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
-PASS: ld-scripts/size-1
-PASS: ld-scripts/size-2
-Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
-PASS: SIZEOF
-Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
-PASS: --sort-section alignment
-PASS: SORT_BY_ALIGNMENT
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
-PASS: --sort-section name
-PASS: SORT_BY_NAME
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_NAME(SORT_BY_NAME())
-PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
-PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
-PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
-PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
-Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
-PASS: weak symbols
-Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
-PASS: Preserve default . = 0
-PASS: Preserve explicit . = 0
-Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
-PASS: selective1
-PASS: selective2
-PASS: selective3
-XFAIL: selective4
-XFAIL: selective5
-XFAIL: selective6
-Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/relax.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
-Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
-PASS: shared (non PIC)
-PASS: shared (non PIC, load offset)
-PASS: shared
-PASS: shared -Bsymbolic
-PASS: shared (PIC main, non PIC so)
-PASS: shared (PIC main)
-Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
-Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
-Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
-PASS: S-records
-PASS: S-records with constructors
-Running [...]/hurd/ld/testsuite/ld-tic6x/tic6x.exp ...
-Running [...]/hurd/ld/testsuite/ld-undefined/entry.exp ...
-PASS: Build libentry.a
-PASS: --entry foo archive
-PASS: --entry foo -u foo archive
-PASS: -shared --entry foo archive
-PASS: -shared --entry foo -u foo archive
-PASS: --entry foo
-PASS: --entry foo -u foo
-PASS: --entry 0x0
-Running [...]/hurd/ld/testsuite/ld-undefined/undefined.exp ...
-PASS: undefined
-PASS: undefined function
-PASS: undefined line
-Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
-PASS: weak undefined symbols
-Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
-Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
-Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/line.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/x86-64.exp ...
-Running [...]/hurd/ld/testsuite/ld-xc16x/xc16x.exp ...
-Running [...]/hurd/ld/testsuite/ld-xstormy16/xstormy16.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/coalesce.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/lcall.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
-
- === ld Summary ===
-
-# of expected passes 607
-# of expected failures 17
-# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
-
-Test Run By tschwinge on Sun Nov 7 21:05:14 2010
-Native configuration is i686-unknown-gnu0.3
-
- === gas tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/gas/testsuite/gas/all/gas.exp ...
-PASS: pcrel values in assignment
-PASS: simplifiable double subtraction
-PASS: simplifiable double subtraction (-a)
-PASS: simple FP constants
-PASS: difference of two undefined symbols
-PASS: .equiv for symbol already set to another one
-PASS: .equiv for symbol already set to an expression
-PASS: .equ for symbol already set
-PASS: .equ for symbol already set through .eqv
-PASS: .eqv support
-PASS: .eqv for symbol already set
-PASS: == assignment support
-PASS: == assignment for symbol already set
-PASS: forward references
-PASS: forward expression
-PASS: .equ redefinitions
-PASS: .equ redefinitions (2)
-PASS: .equ redefinitions (3)
-PASS: .set for symbol already used as label
-PASS: .set for symbol already defined through .comm
-PASS: comment.s: comments in listings
-PASS: general info section in listings
-PASS: difference between forward references
-PASS: struct
-PASS: align
-PASS: align2
-PASS: alternate macro syntax
-PASS: alternate macro syntax (escape)
-PASS: evaluation of simple expressions
-PASS: conditional listings
-PASS: incbin
-PASS: assignment tests
-PASS: .sleb128 tests
-PASS: relax .uleb128
-PASS: bad byte directive
-PASS: .quad tests
-PASS: octa bignum
-PASS: weakref tests, relocations
-PASS: weakref tests, global syms
-PASS: weakref tests, local syms
-PASS: weakref tests, strong undefined syms
-PASS: weakref tests, weak undefined syms
-PASS: e: would close weakref loop: e => a => b => c => d => e
-PASS: a: would close weakref loop: a => b => c => d => e => a
-PASS: is already defined
-PASS: .strings tests
-PASS: gas/all/err-1.s (test for errors, line 3)
-PASS: gas/all/err-1.s (test for errors, line 4)
-PASS: gas/all/err-1.s (test for errors, line 5)
-PASS: gas/all/err-1.s (test for errors, line 6)
-PASS: gas/all/err-1.s (test for errors, line 7)
-PASS: gas/all/err-1.s (test for excess errors)
-PASS: gas/all/warn-1.s (test for warnings, line 3)
-PASS: gas/all/warn-1.s (test for errors, line 4)
-PASS: gas/all/warn-1.s (test for warnings, line 5)
-PASS: gas/all/warn-1.s (test for warnings, line 6)
-PASS: gas/all/warn-1.s (test for warnings, line 7)
-PASS: gas/all/warn-1.s (test for excess errors)
-Running [...]/hurd/gas/testsuite/gas/alpha/alpha.exp ...
-Running [...]/hurd/gas/testsuite/gas/arc/arc.exp ...
-Running [...]/hurd/gas/testsuite/gas/arc/warn.exp ...
-Running [...]/hurd/gas/testsuite/gas/arm/arm.exp ...
-Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
-Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
-Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
-PASS: CFI on i386
-PASS: cfi cfi-diag-1
-PASS: CFI common 1
-PASS: CFI common 2
-PASS: CFI common 3
-PASS: CFI common 4
-PASS: CFI common 5
-PASS: CFI common 7
-PASS: CFI common 6
-Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
-Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
-Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
-Running [...]/hurd/gas/testsuite/gas/crx/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/d10v/d10v.exp ...
-Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
-Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
-Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
-PASS: elf ehopt0
-PASS: .file file names
-PASS: group section
-PASS: group section
-PASS: group section name
-PASS: group section with multiple sections of same name
-PASS: group section with multiple sections of same name
-PASS: automatic section group a
-PASS: automatic section group b
-PASS: .equ redefinitions (ELF)
-PASS: elf equate relocs
-PASS: Ill-formed directives
-PASS: elf section0
-PASS: elf section1
-PASS: elf section2 list
-PASS: note section
-PASS: label arithmetic with multiple same-name sections
-PASS: elf section5 list
-PASS: ELF struct
-PASS: .set with expression
-PASS: ELF symbol versioning
-PASS: .set with IFUNC
-PASS: elf type list
-PASS: elf section6
-PASS: elf section7
-PASS: section flags
-PASS: DWARF2 1
-PASS: DWARF2 2
-PASS: DWARF2 3
-PASS: Check bad section flag
-Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
-Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300-coff.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300-elf.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t01_mov.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t02_mova.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t03_add.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t04_sub.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t05_cmp.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t06_ari2.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t07_ari3.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t08_or.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t09_xor.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t10_and.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t11_logs.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t12_bit.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t13_otr.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/basic/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/parse/parse.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/reloc/reloc.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
-Running [...]/hurd/gas/testsuite/gas/i386/i386.exp ...
-PASS: i386 float
-PASS: i386 general
-PASS: i386 inval
-PASS: i386 segment
-PASS: i386 inval-seg
-PASS: i386 inval-reg
-PASS: i386 modrm
-PASS: i386 naked reg
-PASS: i386 opcodes
-PASS: i386 opcodes (Intel disassembly)
-PASS: i386 opcodes (w/ suffix)
-PASS: i386 intel
-PASS: i386 intel16
-PASS: i386 intelbad
-PASS: i386 intel-ok
-PASS: i386 prefix
-PASS: i386 amd
-PASS: i386 katmai
-PASS: i386 jump
-PASS: i386 relax 1
-PASS: i386 relax 2
-PASS: i386 ssemmx2
-PASS: i386 sse2
-PASS: i386 sub
-PASS: i386 SSE3
-PASS: i386 SIB
-PASS: i386 SIB (Intel mode)
-PASS: i386 displacement
-PASS: i386 displacement (Intel mode)
-PASS: i386 32bit displacement
-PASS: i386 VMX
-PASS: i386 SMX
-PASS: i386 suffix
-PASS: i386 immed
-PASS: i386 equates
-PASS: i386 divide
-PASS: i386 padlock
-PASS: i386 cr8+
-PASS: i386 cr-err
-PASS: 32-bit SVME
-PASS: i386 amdfam10
-PASS: i386 SSSE3
-PASS: i386 rep prefix
-PASS: i386 rep prefix (with suffixes)
-PASS: i386 lockable insns
-PASS: i386 lockable insns (Intel disassembly)
-PASS: i386 lockbad-1
-PASS: i386 long insns
-PASS: i386 long insns (Intel disassembly)
-PASS: i386 fp
-PASS: i386 nops
-PASS: i386 nops 16bit 1
-PASS: i386 nops 1
-PASS: i386 -mtune=i386 nops 1
-PASS: i386 nops -march=i386 -mtune=i686 1
-PASS: i386 -mtune=i686 nops 1
-PASS: i386 -mtune=k8 nops 1
-PASS: i386 -mtune=core2 nops 1
-PASS: i386 -mtune=bdver1 nops 1
-PASS: i386 nops 2
-PASS: i386 nops -mtune=i386 2
-PASS: i386 -march=i386 -mtune=core2 nops 2
-PASS: i386 nops 3
-PASS: i386 nops -mtune=i386 3
-PASS: i386 -mtune=i686 nops 3
-PASS: i386 nops 4
-PASS: i386 nops -mtune=i386 4
-PASS: i386 -mtune=i686 nops 4
-PASS: i386 nops 5
-PASS: i386 -march=i686 nops 5
-PASS: i386 16-bit addressing in 32-bit mode.
-PASS: i386 32-bit addressing in 16-bit mode.
-PASS: i386 SSE4.1
-PASS: i386 SSE4.1 (Intel disassembly)
-PASS: i386 SSE4.2
-PASS: i386 SSE4.2 (Intel disassembly)
-PASS: i386 crc32
-PASS: i386 crc32 (Intel disassembly)
-PASS: i386 inval-crc32
-PASS: i386 SIMD
-PASS: i386 SIMD (Intel mode)
-PASS: i386 SIMD (with suffixes)
-PASS: i386 mem
-PASS: i386 mem (Intel mode)
-PASS: i386 reg
-PASS: i386 reg (Intel mode)
-PASS: i386
-PASS: i386 float AT&T mnemonic
-PASS: i386 float Intel mnemonic
-PASS: i386 arch 1
-PASS: i386 arch 2
-PASS: i386 arch 3
-PASS: i386 arch 4
-PASS: i386 arch 5
-PASS: i386 arch 6
-PASS: i386 arch 7
-PASS: i386 arch 9
-PASS: i386 arch 10
-PASS: i386 arch-10-1
-PASS: i386 arch-10-2
-PASS: i386 arch-10-3
-PASS: i386 arch-10-4
-PASS: i386 arch 11
-PASS: i386 arch 12
-PASS: i386 8087
-PASS: i386 287
-PASS: i386 387 (cmdline)
-PASS: i386 no87
-PASS: i386 no87-2
-PASS: i386 xsave
-PASS: i386 xsave (Intel mode)
-PASS: i386 AES
-PASS: i386 AES (Intel mode)
-PASS: i386 PCLMUL
-PASS: i386 PCLMUL (Intel mode)
-PASS: i386 AVX
-PASS: i386 AVX (Intel disassembly)
-PASS: i386 AVX scalar insns
-PASS: i386 AVX scalar insns (Intel disassembly)
-PASS: i386 SSE with AVX encoding
-PASS: i386 inval-avx
-PASS: i386 SSE check (none)
-PASS: i386 SSE check (.sse_check none)
-PASS: i386 SSE check (warning)
-PASS: i386 sse-check-error
-PASS: i386 SSE without AVX equivalent
-PASS: i386 movbe
-PASS: i386 movbe (Intel disassembly)
-PASS: i386 inval-movbe
-PASS: i386 EPT
-PASS: i386 EPT (Intel disassembly)
-PASS: i386 inval-ept
-PASS: i386 arch avx 1
-PASS: i386 arch-avx-1-1
-PASS: i386 arch-avx-1-2
-PASS: i386 arch-avx-1-3
-PASS: i386 arch-avx-1-4
-PASS: i386 arch-avx-1-5
-PASS: i386 arch-avx-1-6
-PASS: encoding option
-PASS: encoding option (Intel mode)
-PASS: encoding option with -msse2avx
-PASS: encoding option with -msse2avx (Intel mode)
-PASS: i386 FMA
-PASS: i386 FMA (Intel disassembly)
-PASS: i386 FMA scalar insns
-PASS: i386 FMA scalar insns (Intel disassembly)
-PASS: i386 FMA4
-PASS: i386 LWP
-PASS: i386 XOP
-PASS: i386 F16C
-PASS: i386 F16C (Intel disassembly)
-PASS: i386 FSGSBase
-PASS: i386 FSGSBase (Intel disassembly)
-PASS: i386 RdRnd
-PASS: i386 RdRnd (Intel disassembly)
-PASS: i386 reloc
-PASS: i386 jump16
-PASS: i386 white
-PASS: i386 pcrel reloc
-PASS: i386 abs reloc
-PASS: i386 intelpic
-PASS: i386 relax
-PASS: i386 gotpc
-PASS: i386 dynamic tls
-PASS: i386 pic tls
-PASS: i386 non-pic tls
-PASS: i386 .bss
-PASS: i386 relocs
-PASS: i386 reloc32
-PASS: x86 mixed mode relocs (32-bit object)
-PASS: i386 AT&T register names
-PASS: i386 intel-got
-PASS: i386 Intel register names
-PASS: i386 inval-equ-1
-PASS: i386 inval-equ-2
-PASS: i386 ifunc
-PASS: i386 l1om-inval
-PASS: i386 local PIC
-PASS: DWARF2 debugging information 1
-PASS: DWARF2 debugging information 2
-PASS: x86 Intel expressions
-PASS: string insn operands
-PASS: i386 string-bad
-PASS: i386 space1
-PASS: i386 list-1
-PASS: i386 list-2
-PASS: i386 list-3
-PASS: DWARF2 debugging information 1
-Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
-Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
-Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/load-hazards.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/odd-ldw.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/odd-sdw.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
-Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
-PASS: lns lns-diag-1
-PASS: lns-duplicate
-PASS: lns-common-1
-Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32r2.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32rx.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/pic.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/rel32.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68hc11/m68hc11.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68k-coff/gas.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68k/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/macros/macros.exp ...
-PASS: macro test 1
-PASS: macro test 2
-PASS: macro test 3
-PASS: macro irp
-PASS: macro rept
-PASS: nested irp/irpc/rept
-PASS: macro vararg
-PASS: macro infinite recursion
-PASS: logical and in macro definition
-PASS: semi
-PASS: strings
-PASS: APP with macro without NO_APP
-PASS: APP with macro then NO_APP
-PASS: APP with macro then NO_APP then more code
-PASS: included file with .if 0 wrapped in APP/NO_APP, no final NO_APP, macro in main file
-PASS: macros badarg
-PASS: macros dot
-PASS: macros end
-PASS: macros purge
-PASS: macros redef
-PASS: gas/macros/paren
-PASS: .exitm outside of a macro
-Running [...]/hurd/gas/testsuite/gas/mcore/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/mep/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/mep/complex-relocs.exp ...
-Running [...]/hurd/gas/testsuite/gas/mips/mips.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix-err.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix-list.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix.exp ...
-Running [...]/hurd/gas/testsuite/gas/mn10200/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/mn10300/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/mri/mri.exp ...
-Running [...]/hurd/gas/testsuite/gas/msp430/msp430.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/errors.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/mt.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/relocs.exp ...
-Running [...]/hurd/gas/testsuite/gas/openrisc/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/pdp11/pdp11.exp ...
-Running [...]/hurd/gas/testsuite/gas/pe/pe.exp ...
-Running [...]/hurd/gas/testsuite/gas/pj/pj.exp ...
-Running [...]/hurd/gas/testsuite/gas/ppc/aix.exp ...
-Running [...]/hurd/gas/testsuite/gas/ppc/ppc.exp ...
-Running [...]/hurd/gas/testsuite/gas/rx/rx.exp ...
-Running [...]/hurd/gas/testsuite/gas/s390/s390.exp ...
-Running [...]/hurd/gas/testsuite/gas/score/relax.exp ...
-Running [...]/hurd/gas/testsuite/gas/score/relax_32.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/arch/arch.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/err.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/sh64/err.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/sh64/sh64.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc-solaris/addend.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc-solaris/gas.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc/mismatch.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
-Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
-Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
-PASS: symver symver0
-PASS: symver symver1
-PASS: symver symver2
-PASS: symver symver3
-PASS: symver symver6
-Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
-Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
-Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
-Running [...]/hurd/gas/testsuite/gas/v850/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/vax/vax.exp ...
-Running [...]/hurd/gas/testsuite/gas/xc16x/xc16x.exp ...
-Running [...]/hurd/gas/testsuite/gas/xstormy16/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/xtensa/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/xtensa/xtensa-err.exp ...
-Running [...]/hurd/gas/testsuite/gas/z80/z80.exp ...
-Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
-
- === gas Summary ===
-
-# of expected passes 316
-../as-new 2.21.51.20101107
-
diff --git a/open_issues/binutils_testsuite/sum_linux b/open_issues/binutils_testsuite/sum_linux
deleted file mode 100644
index da645ba0..00000000
--- a/open_issues/binutils_testsuite/sum_linux
+++ /dev/null
@@ -1,1316 +0,0 @@
-Test Run By thomas on Sun Nov 7 20:20:33 2010
-Native configuration is i686-pc-linux-gnu
-
- === binutils tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/binutils/testsuite/binutils-all/ar.exp ...
-PASS: ar long file names
-PASS: ar symbol table
-PASS: ar thin archive
-PASS: ar thin archive with nested archive
-PASS: ar argument parsing
-PASS: ar deterministic archive
-PASS: ar unique symbol in archive
-Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/compress.exp ...
-PASS: objcopy (objcopy compress debug sections)
-PASS: objcopy (objcopy decompress compressed debug sections)
-PASS: objcopy decompress debug sections in archive
-PASS: objcopy compress debug sections in archive
-Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
-UNSUPPORTED: Update ELF header 1
-PASS: Update ELF header 2
-PASS: Update ELF header 3
-Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
-PASS: objcopy on compressed debug sections
-PASS: strip on uncompressed debug sections
-PASS: strip on compressed debug sections
-Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
-PASS: nm (no arguments)
-PASS: nm -g
-PASS: nm -P
-Running [...]/hurd/binutils/testsuite/binutils-all/objcopy.exp ...
-PASS: objcopy (simple copy)
-PASS: objcopy --reverse-bytes
-PASS: objcopy -i --interleave-width
-PASS: objcopy -O srec
-PASS: objcopy --set-start
-PASS: objcopy --adjust-start
-PASS: objcopy --adjust-vma
-PASS: objcopy --adjust-section-vma +
-PASS: objcopy --adjust-section-vma =
-PASS: strip
-PASS: strip with saving a symbol
-PASS: simple objcopy of executable
-PASS: run objcopy of executable
-PASS: run stripped executable
-PASS: run stripped executable with saving a symbol
-PASS: keep only debug data
-PASS: simple objcopy of debug data
-PASS: objcopy (ELF unknown section type)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: copy removing group member
-PASS: copy with setting section flags 1
-PASS: add notes section
-PASS: copy with setting section flags 2
-PASS: copy with setting section flags 3
-PASS: strip --strip-unneeded on common symbol
-PASS: strip with section group 1
-PASS: strip with section group 2
-PASS: strip empty file
-PASS: strip with section group 4
-PASS: strip with section group 5
-PASS: strip with section group 6
-PASS: strip with section group 7
-PASS: strip with section group 8
-PASS: strip with section group 9
-PASS: strip on STB_GNU_UNIQUE
-PASS: objcopy keeps symbols needed by relocs
-PASS: --localize-hidden test 1
-PASS: unordered .debug_info references to .debug_ranges
-UNSUPPORTED: unordered .debug_info references to .debug_ranges
-PASS: objcopy add-section
-PASS: objcopy add-empty-section
-PASS: objcopy on sections with SHF_EXCLUDE
-PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
-PASS: --localize-hidden test 2
-Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
-PASS: objdump -i
-PASS: objdump -f
-PASS: objdump -h
-PASS: objdump -t
-PASS: objdump -r
-PASS: objdump -s
-PASS: objdump -s -j .zdebug_abbrev
-PASS: objdump -W
-Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
-PASS: finding out ELF size with readelf -h
-PASS: readelf -h
-PASS: readelf -S
-PASS: readelf -s
-PASS: readelf -r
-PASS: readelf -wi
-PASS: readelf -wa (compressed)
-PASS: readelf -p
-Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
-PASS: size (no arguments)
-PASS: size -A
-Running [...]/hurd/binutils/testsuite/binutils-all/vax/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/windres/windres.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
-
- === binutils Summary ===
-
-# of expected passes 83
-# of unsupported tests 2
-Test Run By thomas on Sun Nov 7 20:20:55 2010
-Native configuration is i686-pc-linux-gnu
-
- === ld tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/ld/testsuite/ld-alpha/alpha.exp ...
-Running [...]/hurd/ld/testsuite/ld-arm/arm-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-auto-import/auto-import.exp ...
-Running [...]/hurd/ld/testsuite/ld-bootstrap/bootstrap.exp ...
-UNTESTED: bootstrap
-UNTESTED: bootstrap with strip
-UNTESTED: bootstrap with --static
-UNTESTED: bootstrap with --traditional-format
-UNTESTED: bootstrap with --no-keep-memory
-UNTESTED: bootstrap with --relax
-Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
-PASS: cdtest
-PASS: cdtest with -Ur
-Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
-PASS: check sections 1
-PASS: check sections 2
-Running [...]/hurd/ld/testsuite/ld-cris/cris.exp ...
-Running [...]/hurd/ld/testsuite/ld-crx/crx.exp ...
-Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
-Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
-Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
-PASS: ld-discard/extern
-PASS: ld-discard/start
-PASS: ld-discard/static
-PASS: ld-discard/zero-range
-PASS: ld-discard/zero-rel
-Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
-PASS: Run with -paudit.so
-PASS: Run with -Paudit.so
-PASS: Run with --depaudit=audit.so
-PASS: Run with shared with --audit
-PASS: Run with shared with --audit
-PASS: Run with -lusesaudit
-PASS: Run with -lusesaudit -lusesaudit2
-Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
-PASS: strip -z max-page-size=0x200000 (maxpage1)
-PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
-PASS: strip -z max-page-size=0x100000 (maxpage1)
-PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
-PASS: strip (maxpage1)
-PASS: strip -shared (maxpage1)
-PASS: objcopy (maxpage1)
-PASS: objcopy -shared (maxpage1)
-PASS: strip -z relro (relro1)
-PASS: strip -z relro -shared (relro1)
-PASS: objcopy -z relro (relro1)
-PASS: objcopy -z relro -shared (relro1)
-PASS: strip -z relro -shared (relro2)
-PASS: objcopy -z relro -shared (relro2)
-PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
-PASS: objcopy (tbss1)
-PASS: objcopy -z relro (tbss1)
-PASS: objcopy -shared (tbss1)
-PASS: objcopy -shared -z relro (tbss1)
-PASS: objcopy -z max-page-size=0x100000 (tbss1)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
-PASS: objcopy (tdata1)
-PASS: objcopy -z relro (tdata1)
-PASS: objcopy -shared (tdata1)
-PASS: objcopy -shared -z relro (tdata1)
-PASS: objcopy -z max-page-size=0x100000 (tdata1)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
-PASS: objcopy (tbss2)
-PASS: objcopy -z relro (tbss2)
-PASS: objcopy -shared (tbss2)
-PASS: objcopy -shared -z relro (tbss2)
-PASS: objcopy -z max-page-size=0x100000 (tbss2)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
-PASS: objcopy (tdata2)
-PASS: objcopy -z relro (tdata2)
-PASS: objcopy -shared (tdata2)
-PASS: objcopy -shared -z relro (tdata2)
-PASS: objcopy -z max-page-size=0x100000 (tdata2)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
-Running [...]/hurd/ld/testsuite/ld-elf/compress.exp ...
-PASS: Build libfoo.so with compressed debug sections
-PASS: Build libbar.so with compressed debug sections
-PASS: Run normal with libfoo.so with compressed debug sections
-Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
-PASS: Build libdwarf1.so
-PASS: Run with libdwarf1.so first
-PASS: Run with libdwarf1.so last
-PASS: Strip -s libdwarf1c.so
-Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
-PASS: Guess the target size from eh-group1size.o
-PASS: Build eh-group1.o
-PASS: Link eh-group.o to eh-group
-Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
-PASS: ld-elf/commonpage1
-PASS: ld-elf/compress1a
-PASS: ld-elf/compress1b
-PASS: ld-elf/compress1c
-PASS: ld-elf/discard1
-PASS: ld-elf/discard2
-PASS: ld-elf/discard3
-PASS: ld-elf/dynsym1
-PASS: ld-elf/eh-frame-hdr
-PASS: ld-elf/eh5
-PASS: ld-elf/eh6
-PASS: ld-elf/empty
-PASS: ld-elf/empty2
-PASS: ld-elf/exclude3a
-PASS: ld-elf/exclude3b
-PASS: ld-elf/exclude3c
-PASS: ld-elf/expr1
-PASS: --extract-symbol test 1 (sections)
-PASS: --extract-symbol test 1 (symbols)
-PASS: --set-section-flags test 1 (sections)
-PASS: ld-elf/group1
-PASS: ld-elf/group10
-PASS: ld-elf/group2
-PASS: ld-elf/group3a
-PASS: ld-elf/group3b
-PASS: ld-elf/group4
-PASS: ld-elf/group5
-PASS: ld-elf/group6
-PASS: ld-elf/group7
-PASS: ld-elf/group8a
-PASS: ld-elf/group8b
-PASS: ld-elf/group9a
-PASS: ld-elf/group9b
-PASS: ld-elf/hash
-PASS: ld-elf/header
-PASS: ld-elf/init-fini-arrays
-PASS: ld-elf/linkonce1
-PASS: ld-elf/linkonce2
-PASS: ld-elf/linkoncerdiff
-PASS: ld-elf/loadaddr1
-PASS: ld-elf/loadaddr2
-PASS: ld-elf/loadaddr3a
-PASS: ld-elf/loadaddr3b
-PASS: ld-elf/local1
-PASS: ld-elf/maxpage1
-PASS: ld-elf/maxpage2
-PASS: ld-elf/maxpage3a
-PASS: ld-elf/merge
-PASS: ld-elf/merge2
-PASS: ld-elf/multibss1
-PASS: ld-elf/nobits-1
-PASS: ld-elf/noload-1
-PASS: ld-elf/noload-2
-PASS: ld-elf/noload-3
-PASS: ld-elf/note-1
-PASS: ld-elf/note-2
-PASS: ld-elf/orphan-region
-PASS: ld-elf/orphan
-PASS: ld-elf/orphan2
-PASS: ld-elf/orphan3
-PASS: ld-elf/orphan4
-PASS: ld-elf/overlay
-PASS: ld-elf/pr11304
-PASS: ld-elf/pr349
-PASS: relocatable with script
-PASS: ld-elf/seg
-PASS: ld-elf/stab
-PASS: ld-elf/textaddr1
-PASS: ld-elf/textaddr2
-PASS: ld-elf/textaddr3
-PASS: ld-elf/textaddr4
-PASS: ld-elf/textaddr5
-PASS: ld-elf/textaddr6
-PASS: ld-elf/textaddr7
-PASS: ld-elf/unknown
-PASS: ld-elf/unknown2
-PASS: ld-elf/warn1
-PASS: ld-elf/warn2
-PASS: Weak symbols in dynamic objects 1 (support)
-PASS: Weak symbols in dynamic objects 1 (main test)
-PASS: --gc-sections on tls variable
-PASS: preinit array
-PASS: init array
-PASS: fini array
-PASS: static preinit array
-PASS: static init array
-PASS: static fini array
-Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
-PASS: ld link shared library
-PASS: ld export symbols from archive
-PASS: ld link shared library with --exclude-libs
-PASS: ld exclude symbols from archive - --exclude-libs libexclude
-PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
-PASS: ld exclude symbols from archive - --exclude-libs ALL
-PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
-PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
-PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
-Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
-PASS: read-only .eh_frame section
-PASS: read-only .gcc_except_table section
-Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
-PASS: assignment of ELF sections to segments (same page)
-PASS: assignment of ELF sections to segments (adjacent pages)
-PASS: assignment of ELF sections to segments (disjoint pages)
-Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
-PASS: ld-elf/64ksec-r
-PASS: ld-elf/64ksec
-Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
-PASS: Build libfoo.so
-PASS: Build versioned libfoo.so
-PASS: Build libbar.so
-PASS: Build warn libbar.so
-PASS: Build hidden libbar.so
-PASS: Build protected libbar.so
-PASS: Build libbar.so with libfoo.so
-PASS: Build libar.so with versioned libfoo.so
-PASS: Build hidden libbar.so with libfoo.so
-PASS: Build hidden libar.so with versioned libfoo.so
-PASS: Build protected libbar.so with libfoo.so
-PASS: Build protected libbar.so with versioned libfoo.so
-PASS: Build libdl1.so
-PASS: Build libdl2a.so with --dynamic-list=dl2.list
-PASS: Build libdl2a.so with --dynamic-list=dl2a.list
-PASS: Build libdl2a.so with --dynamic-list-data
-PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
-PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
-PASS: Build libdl4a.so with --dynamic-list=dl4.list
-PASS: Build libdl4b.so with --dynamic-list-data
-PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
-PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
-PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
-PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
-PASS: Build libdl6a.so
-PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
-PASS: Build libdl6c.so with -Bsymbolic
-PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
-PASS: Build libdata1.so
-PASS: Build libcomm1.o
-PASS: Build libfunc1.so
-PASS: Build libpr9676-1.a
-PASS: Build libpr9676-2.a
-PASS: Build libpr9676-3.so
-PASS: Build libpr9676-4.so
-PASS: Build libpr9676-4a.so
-PASS: Build libpr9679.so
-PASS: Build libpr11138-1.so
-PASS: Build libpr11138-2.o
-PASS: Run normal with libfoo.so
-PASS: Run protected with libfoo.so
-PASS: Run hidden with libfoo.so
-PASS: Run normal with versioned libfoo.so
-PASS: Run warn with versioned libfoo.so
-PASS: Run protected with versioned libfoo.so
-PASS: Run hidden with versioned libfoo.so
-PASS: Run normal libbar.so with libfoo.so
-PASS: Run protected libbar.so with libfoo.so
-PASS: Run hidden libbar.so with libfoo.so
-PASS: Run normal libbar.so with versioned libfoo.so
-PASS: Run protected libbar.so with versioned libfoo.so
-PASS: Run hidden libbar.so with versioned libfoo.so
-PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
-PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
-PASS: Run with libdl2a.so
-PASS: Run with libdl2b.so
-PASS: Run with libdl2c.so
-PASS: Run with libdl4a.so
-PASS: Run with libdl4b.so
-PASS: Run with libdl4c.so
-PASS: Run with libdl4d.so
-PASS: Run with libdl4e.so
-PASS: Run with libdl4f.so
-PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
-PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
-PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
-PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
-PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
-PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
-PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
-PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
-PASS: Run dl6b2 with dlopen on libdl6b.so
-PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
-PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
-PASS: Run with libdata1.so
-PASS: Run with libfunc1.so comm1.o
-PASS: Run with comm1.o libfunc1.so
-PASS: Run with pr11138-2.c libpr11138-1.so
-PASS: Run with libpr11138-1.so pr11138-2.c
-PASS: Build libdl3a.so with --dynamic-list=dl3.list
-PASS: Build libdl3b.so with -Bsymbolic
-PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
-PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
-PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
-PASS: Run with libdl3a.so
-PASS: Run with libdl3c.so
-PASS: Run with libnew1a.so
-PASS: Run with libnew1b.so
-Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
-PASS: tls_common
-Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
-PASS: Build libwrap1a.so
-PASS: Build libwrap1b.so
-PASS: Run with libwrap1a.so and libwrap1b.so
-PASS: Run with libwrap1b.so and libwrap1a.so
-Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
-PASS: --sort-common (descending)
-PASS: --sort-common (ascending)
-PASS: size/aligment change of common symbols (warning 1)
-PASS: size/aligment change of common symbols (change 1)
-PASS: size/aligment change of common symbols (warning 2)
-PASS: size/aligment change of common symbols (change 2)
-Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
-PASS: vers1
-PASS: vers2
-PASS: vers3
-PASS: vers4
-PASS: vers4a
-PASS: vers4b
-PASS: vers5
-PASS: vers6
-PASS: vers7a
-PASS: vers7
-PASS: vers8
-PASS: vers9
-PASS: vers10
-PASS: vers11
-PASS: vers12
-PASS: ar with versioned solib
-PASS: vers14
-PASS: vers15
-PASS: vers16a
-PASS: vers16
-PASS: vers17
-PASS: vers18
-PASS: vers19
-PASS: vers20a
-PASS: vers20
-PASS: vers21
-PASS: vers22a
-PASS: vers22b
-PASS: vers22
-PASS: vers23a
-PASS: vers23b
-PASS: vers23c
-PASS: vers23d
-PASS: vers23
-PASS: vers24a
-PASS: vers24b
-PASS: vers24c
-PASS: vers25a
-PASS: vers25b1
-PASS: vers25b2
-PASS: vers26a
-PASS: vers26b1
-PASS: vers26b2
-PASS: vers26b3
-PASS: vers27a
-PASS: vers27b
-PASS: vers27c1
-PASS: vers27c2
-PASS: vers27d1
-PASS: vers27d2
-PASS: vers27d3
-PASS: vers27d4
-PASS: vers27d5
-PASS: vers28a
-PASS: vers28b
-PASS: vers28c
-PASS: vers29
-PASS: vers30
-PASS: vers31
-PASS: vers32a
-PASS: vers32b
-Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
-PASS: ld-elfvsb/hidden0
-PASS: ld-elfvsb/hidden1
-PASS: ld-elfvsb/hidden2
-PASS: ld-elfvsb/internal0
-PASS: ld-elfvsb/internal1
-PASS: ld-elfvsb/protected0
-PASS: ld-elfvsb/protected1
-PASS: visibility (hidden) (non PIC)
-PASS: visibility (hidden) (non PIC, load offset)
-PASS: visibility (hidden)
-PASS: visibility (hidden) (PIC main, non PIC so)
-PASS: visibility (hidden) (PIC main)
-PASS: visibility (hidden_normal) (non PIC)
-PASS: visibility (hidden_normal) (non PIC, load offset)
-PASS: visibility (hidden_normal)
-PASS: visibility (hidden_normal) (PIC main, non PIC so)
-PASS: visibility (hidden_normal) (PIC main)
-PASS: visibility (hidden_undef) (non PIC)
-PASS: visibility (hidden_undef) (non PIC, load offset)
-PASS: visibility (hidden_undef)
-PASS: visibility (hidden_undef) (PIC main, non PIC so)
-PASS: visibility (hidden_undef) (PIC main)
-PASS: visibility (hidden_undef_def) (non PIC)
-PASS: visibility (hidden_undef_def) (non PIC, load offset)
-PASS: visibility (hidden_undef_def)
-PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
-PASS: visibility (hidden_undef_def) (PIC main)
-PASS: visibility (hidden_weak) (non PIC)
-PASS: visibility (hidden_weak) (non PIC, load offset)
-PASS: visibility (hidden_weak)
-PASS: visibility (hidden_weak) (PIC main, non PIC so)
-PASS: visibility (hidden_weak) (PIC main)
-PASS: visibility (protected) (non PIC)
-PASS: visibility (protected) (non PIC, load offset)
-PASS: visibility (protected)
-PASS: visibility (protected) (PIC main, non PIC so)
-PASS: visibility (protected) (PIC main)
-PASS: visibility (protected_undef) (non PIC)
-PASS: visibility (protected_undef) (non PIC, load offset)
-PASS: visibility (protected_undef)
-PASS: visibility (protected_undef) (PIC main, non PIC so)
-PASS: visibility (protected_undef) (PIC main)
-PASS: visibility (protected_undef_def) (non PIC)
-PASS: visibility (protected_undef_def) (non PIC, load offset)
-PASS: visibility (protected_undef_def)
-PASS: visibility (protected_undef_def) (PIC main, non PIC so)
-PASS: visibility (protected_undef_def) (PIC main)
-PASS: visibility (protected_weak) (non PIC)
-PASS: visibility (protected_weak) (non PIC, load offset)
-PASS: visibility (protected_weak)
-PASS: visibility (protected_weak) (PIC main, non PIC so)
-PASS: visibility (protected_weak) (PIC main)
-PASS: visibility (normal) (non PIC)
-PASS: visibility (normal) (non PIC, load offset)
-PASS: visibility (normal)
-PASS: visibility (normal) (PIC main, non PIC so)
-PASS: visibility (normal) (PIC main)
-PASS: common hidden symbol
-PASS: weak hidden symbol DSO last
-PASS: weak hidden symbol DSO first
-Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
-PASS: ELF DSO weak func first
-PASS: ELF DSO weak func last
-PASS: ELF DSO weak func first DSO
-PASS: ELF DSO weak func last DSO
-PASS: ELF weak func first
-PASS: ELF weak func last
-PASS: ELF weak func first DSO
-PASS: ELF weak func last DSO
-PASS: ELF DSO weak data first
-PASS: ELF DSO weak data last
-PASS: ELF DSO weak data first DSO
-PASS: ELF DSO weak data last DSO
-PASS: ELF DSO weak data first DSO common
-PASS: ELF DSO weak data last DSO common
-PASS: ELF weak data first
-PASS: ELF weak data last
-PASS: ELF weak data first common
-PASS: ELF weak data last common
-PASS: ELF weak data first DSO
-PASS: ELF weak data last DSO
-PASS: ELF weak data first DSO common
-PASS: ELF weak data last DSO common
-PASS: ELF DSO small bar (size)
-PASS: ELF DSO foo with small bar (size)
-PASS: ELF DSO big bar (size)
-PASS: ELF weak size
-PASS: ld-elfweak/size2
-Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/tls.exp ...
-Running [...]/hurd/ld/testsuite/ld-gc/gc.exp ...
-PASS: Check --gc-section
-PASS: Check --gc-section/-q
-PASS: Check --gc-section/-r/-e
-PASS: Check --gc-section/-r/-u
-PASS: --gc-sections -r without -e
-PASS: --gc-sections with note section
-PASS: --gc-sections with __start_
-PASS: --gc-sections with shared library
-Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
-Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
-PASS: TLS -fpic -shared transitions
-PASS: TLS descriptor -fpic -shared transitions
-PASS: Helper shared library
-PASS: TLS -fpic and -fno-pic exec transitions
-PASS: TLS descriptor -fpic and -fno-pic exec transitions
-PASS: TLS -fno-pic -shared
-PASS: TLS with global dynamic and descriptors
-PASS: TLS in debug sections
-PASS: TLS @indntpoff with %eax
-PASS: Reloc section order
-PASS: Basic --emit-relocs support
-PASS: -z combreloc relocation sections
-PASS: TLS GD->LE transition
-PASS: TLS LD->LE transition
-PASS: TLS IE->LE transition
-PASS: Absolute non-overflowing relocs
-PASS: PCREL8 overflow
-PASS: PCREL16 overflow
-PASS: PCREL16 absolute reloc
-PASS: Invalid allocated section
-PASS: --warn-shared-textrel --fatal-warnings
-PASS: TLS GD->LE transition check
-PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
-PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
-PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
-PASS: TLS IE->LE transition check (R_386_TLS_IE)
-PASS: ld-i386/hidden1
-PASS: ld-i386/hidden2
-PASS: ld-i386/hidden3
-PASS: ld-i386/protected1
-PASS: ld-i386/protected2
-PASS: ld-i386/protected3
-PASS: TLS with PIE
-PASS: ld-i386/nogot1
-PASS: ld-i386/nogot2
-PASS: ld-i386/discarded1
-PASS: undefined symbol with compressed debug sections
-Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
-Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
-Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
-PASS: strip (ifunc-4-x86)
-PASS: objcopy (ifunc-4-x86)
-PASS: strip (ifunc-4-local-x86)
-PASS: objcopy (ifunc-4-local-x86)
-Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
-PASS: Building ifunc binaries
-PASS: Checking ifunc binaries
-PASS: ld-ifunc/ifunc-1-local-x86
-PASS: ld-ifunc/ifunc-1-x86
-PASS: ld-ifunc/ifunc-10-i386
-PASS: ld-ifunc/ifunc-11-i386
-PASS: ld-ifunc/ifunc-2-i386
-PASS: ld-ifunc/ifunc-2-local-i386
-PASS: ld-ifunc/ifunc-3a-x86
-PASS: ld-ifunc/ifunc-3b-x86
-PASS: ld-ifunc/ifunc-4-local-x86
-PASS: ld-ifunc/ifunc-4-x86
-PASS: ld-ifunc/ifunc-4a-x86
-PASS: ld-ifunc/ifunc-5a-i386
-PASS: ld-ifunc/ifunc-5a-local-i386
-PASS: ld-ifunc/ifunc-5b-i386
-PASS: ld-ifunc/ifunc-5b-local-i386
-PASS: ld-ifunc/ifunc-5r-local-i386
-PASS: ld-ifunc/ifunc-6a-i386
-PASS: ld-ifunc/ifunc-6b-i386
-PASS: ld-ifunc/ifunc-7a-i386
-PASS: ld-ifunc/ifunc-7b-i386
-PASS: ld-ifunc/ifunc-8-i386
-PASS: ld-ifunc/ifunc-9-x86
-Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
-PASS: -l: test (preparation)
-PASS: -l: test
-Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
-PASS: ld-linkonce/zeroehl32
-Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
-Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
-Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
-Running [...]/hurd/ld/testsuite/ld-mep/mep.exp ...
-Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
-Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-mmix/mmix.exp ...
-Running [...]/hurd/ld/testsuite/ld-mn10300/mn10300.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-compile.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-run.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
-Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
-PASS: weak undefined
-PASS: weak undefined data
-PASS: missing entry symbol
-Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
-PASS: plugin API enabled
-PASS: load plugin
-PASS: fail plugin onload
-PASS: fail plugin allsymbolsread
-PASS: fail plugin cleanup
-PASS: plugin all hooks
-PASS: plugin claimfile lost symbol
-PASS: plugin claimfile replace symbol
-PASS: plugin claimfile resolve symbol
-PASS: plugin claimfile replace file
-PASS: plugin set symbol visibility
-PASS: plugin ignore lib
-PASS: plugin claimfile replace lib
-Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
-Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
-Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
-Running [...]/hurd/ld/testsuite/ld-scripts/align.exp ...
-PASS: align1
-PASS: ld-scripts/align2a
-PASS: ld-scripts/align2b
-PASS: ld-scripts/align2c
-Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
-PASS: ALIGNOF
-Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
-PASS: ASSERT
-Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
-PASS: NOCROSSREFS 1
-PASS: NOCROSSREFS 2
-PASS: NOCROSSREFS 3
-Running [...]/hurd/ld/testsuite/ld-scripts/data.exp ...
-PASS: ld-scripts/data
-Running [...]/hurd/ld/testsuite/ld-scripts/default-script.exp ...
-PASS: ld-scripts/default-script1
-PASS: ld-scripts/default-script2
-PASS: ld-scripts/default-script3
-PASS: ld-scripts/default-script4
-Running [...]/hurd/ld/testsuite/ld-scripts/defined.exp ...
-PASS: DEFINED (PRMS 5699)
-PASS: ld-scripts/defined2
-PASS: ld-scripts/defined3
-Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
-PASS: dynamic sections
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
-PASS: ld-scripts/empty-address-1
-PASS: ld-scripts/empty-address-2a
-PASS: ld-scripts/empty-address-2b
-PASS: ld-scripts/empty-address-3a
-PASS: ld-scripts/empty-address-3b
-PASS: ld-scripts/empty-address-3c
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
-PASS: ld-scripts/empty-aligned
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
-PASS: ld-scripts/empty-orphan
-Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
-PASS: ld-scripts/expr1
-Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
-PASS: EXTERN
-Running [...]/hurd/ld/testsuite/ld-scripts/include.exp ...
-PASS: include-1
-Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
-PASS: map addresses
-Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
-PASS: overlay size
-PASS: overlay size (map check)
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
-PASS: PHDRS
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
-PASS: PHDRS2
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
-PASS: PHDRS headers
-PASS: PHDRS headers 3a
-Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
-PASS: ld-scripts/provide-1
-PASS: ld-scripts/provide-2
-XFAIL: ld-scripts/provide-3
-Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
-PASS: rgn-at1
-PASS: rgn-at2
-PASS: rgn-at3
-PASS: rgn-at4
-PASS: rgn-at5
-Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
-PASS: rgn-over1
-PASS: rgn-over1 (map check)
-PASS: rgn-over2
-PASS: rgn-over2 (map check)
-PASS: rgn-over3
-PASS: rgn-over3 (map check)
-PASS: rgn-over4
-PASS: rgn-over4 (map check)
-PASS: rgn-over5
-PASS: rgn-over5 (map check)
-PASS: rgn-over6
-PASS: rgn-over6 (map check)
-PASS: rgn-over7
-PASS: rgn-over7 (map check)
-PASS: rgn-over8
-Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
-PASS: script
-PASS: MRI script
-PASS: MEMORY
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
-Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
-PASS: ld-scripts/section-match-1
-Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
-PASS: ld-scripts/size-1
-PASS: ld-scripts/size-2
-Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
-PASS: SIZEOF
-Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
-PASS: --sort-section alignment
-PASS: SORT_BY_ALIGNMENT
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
-PASS: --sort-section name
-PASS: SORT_BY_NAME
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_NAME(SORT_BY_NAME())
-PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
-PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
-PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
-PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
-Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
-PASS: weak symbols
-Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
-PASS: Preserve default . = 0
-PASS: Preserve explicit . = 0
-Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
-PASS: selective1
-PASS: selective2
-PASS: selective3
-XFAIL: selective4
-XFAIL: selective5
-XFAIL: selective6
-Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/relax.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
-Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
-PASS: shared (non PIC)
-PASS: shared (non PIC, load offset)
-PASS: shared
-PASS: shared -Bsymbolic
-PASS: shared (PIC main, non PIC so)
-PASS: shared (PIC main)
-Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
-Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
-Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
-PASS: S-records
-PASS: S-records with constructors
-Running [...]/hurd/ld/testsuite/ld-tic6x/tic6x.exp ...
-Running [...]/hurd/ld/testsuite/ld-undefined/entry.exp ...
-PASS: Build libentry.a
-PASS: --entry foo archive
-PASS: --entry foo -u foo archive
-PASS: -shared --entry foo archive
-PASS: -shared --entry foo -u foo archive
-PASS: --entry foo
-PASS: --entry foo -u foo
-PASS: --entry 0x0
-Running [...]/hurd/ld/testsuite/ld-undefined/undefined.exp ...
-PASS: undefined
-PASS: undefined function
-PASS: undefined line
-Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
-PASS: weak undefined symbols
-Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
-Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
-Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/line.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/x86-64.exp ...
-Running [...]/hurd/ld/testsuite/ld-xc16x/xc16x.exp ...
-Running [...]/hurd/ld/testsuite/ld-xstormy16/xstormy16.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/coalesce.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/lcall.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
-
- === ld Summary ===
-
-# of expected passes 616
-# of expected failures 8
-# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
-
-Test Run By thomas on Sun Nov 7 20:20:38 2010
-Native configuration is i686-pc-linux-gnu
-
- === gas tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/gas/testsuite/gas/all/gas.exp ...
-PASS: pcrel values in assignment
-PASS: simplifiable double subtraction
-PASS: simplifiable double subtraction (-a)
-PASS: simple FP constants
-PASS: difference of two undefined symbols
-PASS: .equiv for symbol already set to another one
-PASS: .equiv for symbol already set to an expression
-PASS: .equ for symbol already set
-PASS: .equ for symbol already set through .eqv
-PASS: .eqv support
-PASS: .eqv for symbol already set
-PASS: == assignment support
-PASS: == assignment for symbol already set
-PASS: forward references
-PASS: forward expression
-PASS: .equ redefinitions
-PASS: .equ redefinitions (2)
-PASS: .equ redefinitions (3)
-PASS: .set for symbol already used as label
-PASS: .set for symbol already defined through .comm
-PASS: comment.s: comments in listings
-PASS: general info section in listings
-PASS: difference between forward references
-PASS: struct
-PASS: align
-PASS: align2
-PASS: alternate macro syntax
-PASS: alternate macro syntax (escape)
-PASS: evaluation of simple expressions
-PASS: conditional listings
-PASS: incbin
-PASS: assignment tests
-PASS: .sleb128 tests
-PASS: relax .uleb128
-PASS: bad byte directive
-PASS: .quad tests
-PASS: octa bignum
-PASS: weakref tests, relocations
-PASS: weakref tests, global syms
-PASS: weakref tests, local syms
-PASS: weakref tests, strong undefined syms
-PASS: weakref tests, weak undefined syms
-PASS: e: would close weakref loop: e => a => b => c => d => e
-PASS: a: would close weakref loop: a => b => c => d => e => a
-PASS: is already defined
-PASS: .strings tests
-PASS: gas/all/err-1.s (test for errors, line 3)
-PASS: gas/all/err-1.s (test for errors, line 4)
-PASS: gas/all/err-1.s (test for errors, line 5)
-PASS: gas/all/err-1.s (test for errors, line 6)
-PASS: gas/all/err-1.s (test for errors, line 7)
-PASS: gas/all/err-1.s (test for excess errors)
-PASS: gas/all/warn-1.s (test for warnings, line 3)
-PASS: gas/all/warn-1.s (test for errors, line 4)
-PASS: gas/all/warn-1.s (test for warnings, line 5)
-PASS: gas/all/warn-1.s (test for warnings, line 6)
-PASS: gas/all/warn-1.s (test for warnings, line 7)
-PASS: gas/all/warn-1.s (test for excess errors)
-Running [...]/hurd/gas/testsuite/gas/alpha/alpha.exp ...
-Running [...]/hurd/gas/testsuite/gas/arc/arc.exp ...
-Running [...]/hurd/gas/testsuite/gas/arc/warn.exp ...
-Running [...]/hurd/gas/testsuite/gas/arm/arm.exp ...
-Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
-Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
-Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
-PASS: CFI on i386
-PASS: cfi cfi-diag-1
-PASS: CFI common 1
-PASS: CFI common 2
-PASS: CFI common 3
-PASS: CFI common 4
-PASS: CFI common 5
-PASS: CFI common 7
-PASS: CFI common 6
-Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
-Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
-Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
-Running [...]/hurd/gas/testsuite/gas/crx/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/d10v/d10v.exp ...
-Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
-Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
-Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
-PASS: elf ehopt0
-PASS: .file file names
-PASS: group section
-PASS: group section
-PASS: group section name
-PASS: group section with multiple sections of same name
-PASS: group section with multiple sections of same name
-PASS: automatic section group a
-PASS: automatic section group b
-PASS: .equ redefinitions (ELF)
-PASS: elf equate relocs
-PASS: Ill-formed directives
-PASS: elf section0
-PASS: elf section1
-PASS: elf section2 list
-PASS: note section
-PASS: label arithmetic with multiple same-name sections
-PASS: elf section5 list
-PASS: ELF struct
-PASS: .set with expression
-PASS: ELF symbol versioning
-PASS: .set with IFUNC
-PASS: elf type list
-PASS: elf section6
-PASS: elf section7
-PASS: section flags
-PASS: DWARF2 1
-PASS: DWARF2 2
-PASS: DWARF2 3
-PASS: Check bad section flag
-Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
-Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300-coff.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300-elf.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t01_mov.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t02_mova.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t03_add.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t04_sub.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t05_cmp.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t06_ari2.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t07_ari3.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t08_or.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t09_xor.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t10_and.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t11_logs.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t12_bit.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t13_otr.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/basic/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/parse/parse.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/reloc/reloc.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
-Running [...]/hurd/gas/testsuite/gas/i386/i386.exp ...
-PASS: i386 float
-PASS: i386 general
-PASS: i386 inval
-PASS: i386 segment
-PASS: i386 inval-seg
-PASS: i386 inval-reg
-PASS: i386 modrm
-PASS: i386 naked reg
-PASS: i386 opcodes
-PASS: i386 opcodes (Intel disassembly)
-PASS: i386 opcodes (w/ suffix)
-PASS: i386 intel
-PASS: i386 intel16
-PASS: i386 intelbad
-PASS: i386 intel-ok
-PASS: i386 prefix
-PASS: i386 amd
-PASS: i386 katmai
-PASS: i386 jump
-PASS: i386 relax 1
-PASS: i386 relax 2
-PASS: i386 ssemmx2
-PASS: i386 sse2
-PASS: i386 sub
-PASS: i386 SSE3
-PASS: i386 SIB
-PASS: i386 SIB (Intel mode)
-PASS: i386 displacement
-PASS: i386 displacement (Intel mode)
-PASS: i386 32bit displacement
-PASS: i386 VMX
-PASS: i386 SMX
-PASS: i386 suffix
-PASS: i386 immed
-PASS: i386 equates
-PASS: i386 divide
-PASS: i386 padlock
-PASS: i386 cr8+
-PASS: i386 cr-err
-PASS: 32-bit SVME
-PASS: i386 amdfam10
-PASS: i386 SSSE3
-PASS: i386 rep prefix
-PASS: i386 rep prefix (with suffixes)
-PASS: i386 lockable insns
-PASS: i386 lockable insns (Intel disassembly)
-PASS: i386 lockbad-1
-PASS: i386 long insns
-PASS: i386 long insns (Intel disassembly)
-PASS: i386 fp
-PASS: i386 nops
-PASS: i386 nops 16bit 1
-PASS: i386 nops 1
-PASS: i386 -mtune=i386 nops 1
-PASS: i386 nops -march=i386 -mtune=i686 1
-PASS: i386 -mtune=i686 nops 1
-PASS: i386 -mtune=k8 nops 1
-PASS: i386 -mtune=core2 nops 1
-PASS: i386 -mtune=bdver1 nops 1
-PASS: i386 nops 2
-PASS: i386 nops -mtune=i386 2
-PASS: i386 -march=i386 -mtune=core2 nops 2
-PASS: i386 nops 3
-PASS: i386 nops -mtune=i386 3
-PASS: i386 -mtune=i686 nops 3
-PASS: i386 nops 4
-PASS: i386 nops -mtune=i386 4
-PASS: i386 -mtune=i686 nops 4
-PASS: i386 nops 5
-PASS: i386 -march=i686 nops 5
-PASS: i386 16-bit addressing in 32-bit mode.
-PASS: i386 32-bit addressing in 16-bit mode.
-PASS: i386 SSE4.1
-PASS: i386 SSE4.1 (Intel disassembly)
-PASS: i386 SSE4.2
-PASS: i386 SSE4.2 (Intel disassembly)
-PASS: i386 crc32
-PASS: i386 crc32 (Intel disassembly)
-PASS: i386 inval-crc32
-PASS: i386 SIMD
-PASS: i386 SIMD (Intel mode)
-PASS: i386 SIMD (with suffixes)
-PASS: i386 mem
-PASS: i386 mem (Intel mode)
-PASS: i386 reg
-PASS: i386 reg (Intel mode)
-PASS: i386
-PASS: i386 float AT&T mnemonic
-PASS: i386 float Intel mnemonic
-PASS: i386 arch 1
-PASS: i386 arch 2
-PASS: i386 arch 3
-PASS: i386 arch 4
-PASS: i386 arch 5
-PASS: i386 arch 6
-PASS: i386 arch 7
-PASS: i386 arch 9
-PASS: i386 arch 10
-PASS: i386 arch-10-1
-PASS: i386 arch-10-2
-PASS: i386 arch-10-3
-PASS: i386 arch-10-4
-PASS: i386 arch 11
-PASS: i386 arch 12
-PASS: i386 8087
-PASS: i386 287
-PASS: i386 387 (cmdline)
-PASS: i386 no87
-PASS: i386 no87-2
-PASS: i386 xsave
-PASS: i386 xsave (Intel mode)
-PASS: i386 AES
-PASS: i386 AES (Intel mode)
-PASS: i386 PCLMUL
-PASS: i386 PCLMUL (Intel mode)
-PASS: i386 AVX
-PASS: i386 AVX (Intel disassembly)
-PASS: i386 AVX scalar insns
-PASS: i386 AVX scalar insns (Intel disassembly)
-PASS: i386 SSE with AVX encoding
-PASS: i386 inval-avx
-PASS: i386 SSE check (none)
-PASS: i386 SSE check (.sse_check none)
-PASS: i386 SSE check (warning)
-PASS: i386 sse-check-error
-PASS: i386 SSE without AVX equivalent
-PASS: i386 movbe
-PASS: i386 movbe (Intel disassembly)
-PASS: i386 inval-movbe
-PASS: i386 EPT
-PASS: i386 EPT (Intel disassembly)
-PASS: i386 inval-ept
-PASS: i386 arch avx 1
-PASS: i386 arch-avx-1-1
-PASS: i386 arch-avx-1-2
-PASS: i386 arch-avx-1-3
-PASS: i386 arch-avx-1-4
-PASS: i386 arch-avx-1-5
-PASS: i386 arch-avx-1-6
-PASS: encoding option
-PASS: encoding option (Intel mode)
-PASS: encoding option with -msse2avx
-PASS: encoding option with -msse2avx (Intel mode)
-PASS: i386 FMA
-PASS: i386 FMA (Intel disassembly)
-PASS: i386 FMA scalar insns
-PASS: i386 FMA scalar insns (Intel disassembly)
-PASS: i386 FMA4
-PASS: i386 LWP
-PASS: i386 XOP
-PASS: i386 F16C
-PASS: i386 F16C (Intel disassembly)
-PASS: i386 FSGSBase
-PASS: i386 FSGSBase (Intel disassembly)
-PASS: i386 RdRnd
-PASS: i386 RdRnd (Intel disassembly)
-PASS: i386 reloc
-PASS: i386 jump16
-PASS: i386 white
-PASS: i386 pcrel reloc
-PASS: i386 abs reloc
-PASS: i386 intelpic
-PASS: i386 relax
-PASS: i386 gotpc
-PASS: i386 dynamic tls
-PASS: i386 pic tls
-PASS: i386 non-pic tls
-PASS: i386 .bss
-PASS: i386 relocs
-PASS: i386 reloc32
-PASS: x86 mixed mode relocs (32-bit object)
-PASS: i386 AT&T register names
-PASS: i386 intel-got
-PASS: i386 Intel register names
-PASS: i386 inval-equ-1
-PASS: i386 inval-equ-2
-PASS: i386 ifunc
-PASS: i386 l1om-inval
-PASS: i386 local PIC
-PASS: DWARF2 debugging information 1
-PASS: DWARF2 debugging information 2
-PASS: x86 Intel expressions
-PASS: string insn operands
-PASS: i386 string-bad
-PASS: i386 space1
-PASS: i386 list-1
-PASS: i386 list-2
-PASS: i386 list-3
-PASS: DWARF2 debugging information 1
-Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
-Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
-Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/load-hazards.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/odd-ldw.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/odd-sdw.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
-Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
-PASS: lns lns-diag-1
-PASS: lns-duplicate
-PASS: lns-common-1
-Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32r2.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32rx.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/pic.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/rel32.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68hc11/m68hc11.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68k-coff/gas.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68k/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/macros/macros.exp ...
-PASS: macro test 1
-PASS: macro test 2
-PASS: macro test 3
-PASS: macro irp
-PASS: macro rept
-PASS: nested irp/irpc/rept
-PASS: macro vararg
-PASS: macro infinite recursion
-PASS: logical and in macro definition
-PASS: semi
-PASS: strings
-PASS: APP with macro without NO_APP
-PASS: APP with macro then NO_APP
-PASS: APP with macro then NO_APP then more code
-PASS: included file with .if 0 wrapped in APP/NO_APP, no final NO_APP, macro in main file
-PASS: macros badarg
-PASS: macros dot
-PASS: macros end
-PASS: macros purge
-PASS: macros redef
-PASS: gas/macros/paren
-PASS: .exitm outside of a macro
-Running [...]/hurd/gas/testsuite/gas/mcore/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/mep/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/mep/complex-relocs.exp ...
-Running [...]/hurd/gas/testsuite/gas/mips/mips.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix-err.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix-list.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix.exp ...
-Running [...]/hurd/gas/testsuite/gas/mn10200/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/mn10300/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/mri/mri.exp ...
-Running [...]/hurd/gas/testsuite/gas/msp430/msp430.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/errors.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/mt.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/relocs.exp ...
-Running [...]/hurd/gas/testsuite/gas/openrisc/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/pdp11/pdp11.exp ...
-Running [...]/hurd/gas/testsuite/gas/pe/pe.exp ...
-Running [...]/hurd/gas/testsuite/gas/pj/pj.exp ...
-Running [...]/hurd/gas/testsuite/gas/ppc/aix.exp ...
-Running [...]/hurd/gas/testsuite/gas/ppc/ppc.exp ...
-Running [...]/hurd/gas/testsuite/gas/rx/rx.exp ...
-Running [...]/hurd/gas/testsuite/gas/s390/s390.exp ...
-Running [...]/hurd/gas/testsuite/gas/score/relax.exp ...
-Running [...]/hurd/gas/testsuite/gas/score/relax_32.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/arch/arch.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/err.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/sh64/err.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/sh64/sh64.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc-solaris/addend.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc-solaris/gas.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc/mismatch.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
-Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
-Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
-PASS: symver symver0
-PASS: symver symver1
-PASS: symver symver2
-PASS: symver symver3
-PASS: symver symver6
-Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
-Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
-Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
-Running [...]/hurd/gas/testsuite/gas/v850/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/vax/vax.exp ...
-Running [...]/hurd/gas/testsuite/gas/xc16x/xc16x.exp ...
-Running [...]/hurd/gas/testsuite/gas/xstormy16/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/xtensa/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/xtensa/xtensa-err.exp ...
-Running [...]/hurd/gas/testsuite/gas/z80/z80.exp ...
-Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
-
- === gas Summary ===
-
-# of expected passes 316
-../as-new 2.21.51.20101107
-
diff --git a/open_issues/ifunc.mdwn b/open_issues/ifunc.mdwn
index 0ff1f7b5..04113a2b 100644
--- a/open_issues/ifunc.mdwn
+++ b/open_issues/ifunc.mdwn
@@ -25,7 +25,7 @@ use it from GCC.
Most of the executables that the testsuite generates don't actually
execute. (Though, this is partly due to the [[static
- issue|binutils_testsuite#static]].)
+ issue|binutils/testsuite#static]].)
$ tmpdir/local_prog
ifunc working correctly
diff --git a/open_issues/performance/io_system/binutils_ld_64ksec.mdwn b/open_issues/performance/io_system/binutils_ld_64ksec.mdwn
index 60dca510..86450576 100644
--- a/open_issues/performance/io_system/binutils_ld_64ksec.mdwn
+++ b/open_issues/performance/io_system/binutils_ld_64ksec.mdwn
@@ -12,8 +12,9 @@ License|/fdl]]."]]"""]]
This one may be considered as a testcase for I/O system optimization.
-It is taken from the [[binutils_testsuite]], `ld/ld-elf/sec64k.exp`, where this
-test may occasionally [[trigger a timeout|binutils_testsuite#64ksec]]. It is
+It is taken from the [[binutils testsuite|binutils/testsuite]],
+`ld/ld-elf/sec64k.exp`, where this
+test may occasionally [[trigger a timeout|binutils/testsuite#64ksec]]. It is
extracted from cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24.
$ wget -O - http://www.gnu.org/software/hurd/open_issues/performance/io_system/binutils_ld_64ksec/test.tar.xz | xz -d | tar -x
@@ -26,7 +27,7 @@ On the idle grubber, this one repeatedly takes a few minutes wall time to
complete successfully, contrary to a few seconds on a GNU/Linux system.
While processing the object files, there is heavy interaction with the relevant
-[[hurd/translator/ext2fs]] process . Running [[hurd/debugging/rpctrace]] on
+[[hurd/translator/ext2fs]] process. Running [[hurd/debugging/rpctrace]] on
the testee shows that (primarily) an ever-repeating series of `io_seek` and
`io_read` is being processed. Running the testee on GNU/Linux with strace
shows the equivalent thing (`_llseek`, `read`) -- but Linux' I/O system isn't
diff --git a/open_issues/unit_testing.mdwn b/open_issues/unit_testing.mdwn
index 2d96fceb..15c87abd 100644
--- a/open_issues/unit_testing.mdwn
+++ b/open_issues/unit_testing.mdwn
@@ -19,7 +19,7 @@ abandoned).
[Expect](http://expect.nist.gov/)
* used by the [[GCC_testsuite]], [[GDB_testsuite]],
- [[binutils_testsuite]], etc.
+ [[binutils testsuite|binutils/testsuite]], etc.
* The [[glibc_testsuite]] has a home-grown system (Makefile-based), likewise
does the [[Open_POSIX_Test_Suite]].
--
cgit v1.2.3
From 11ab53a77367dc9ee6ffc70eccd31b17e610154a Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 10 Nov 2010 00:10:10 +0100
Subject: hurd/running/debian/faq/sshd_only_works_for_root_logins: Issue has
been fixed.
---
hurd/running/debian/faq/sshd_only_works_for_root_logins.mdwn | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/hurd/running/debian/faq/sshd_only_works_for_root_logins.mdwn b/hurd/running/debian/faq/sshd_only_works_for_root_logins.mdwn
index 517d59dc..1a3c46e1 100644
--- a/hurd/running/debian/faq/sshd_only_works_for_root_logins.mdwn
+++ b/hurd/running/debian/faq/sshd_only_works_for_root_logins.mdwn
@@ -1,4 +1,5 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -8,6 +9,11 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled
[[GNU Free Documentation License|/fdl]]."]]"""]]
+This isssue has been fixed in the Debian hurd / libc0.3 packages as of 2010-11.
+Retire this item sometime after 2011.
+
+---
+
Privilege seperation does not work with Hurd currently. You need to explicitely
set `PrivilegeSeparation` to `no` in `/etc/ssh/sshd_options`, just commenting out
the entry will not work as it is on by default. Also make sure you have
--
cgit v1.2.3
From 8b24c3e66e3a8ec436849ad08bc4ba0a5b4907e6 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 10 Nov 2010 19:34:07 +0100
Subject: open_issues/boehm-gc: New.
---
open_issues/boehm-gc.mdwn | 262 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 262 insertions(+)
create mode 100644 open_issues/boehm-gc.mdwn
diff --git a/open_issues/boehm-gc.mdwn b/open_issues/boehm-gc.mdwn
new file mode 100644
index 00000000..4979f400
--- /dev/null
+++ b/open_issues/boehm-gc.mdwn
@@ -0,0 +1,262 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+.
+
+`grubber:~tschwinge/tmp/boehm-gc/git/`.
+
+It is used by GCC, for example.
+
+[[tschwinge]] reviewed its GNU/Hurd port / configuration on 2010-11-10,
+based on CVS HEAD sources from 2010-11-04, converted to Git:
+9abb37b2e581b415bb1f482085891a289c2c0be1.
+
+ * `configure.ac`
+
+ * `PARALLEL_MARK` is not enabled; doesn't make sense so far.
+
+ * `*-*-kfreebsd*-gnu` defines `USE_COMPILER_TLS`. What's this, and
+ why does not other config?
+
+ * TODO
+
+ [ if test "$enable_gc_debug" = "yes"; then
+ AC_MSG_WARN("Should define GC_DEBUG and use debug alloc. in clients.")
+ AC_DEFINE([KEEP_BACK_PTRS], 1,
+ [Define to save back-pointers in debugging headers.])
+ keep_back_ptrs=true
+ AC_DEFINE([DBG_HDRS_ALL], 1,
+ [Define to force debug headers on all objects.])
+ AC_DEFINE(MAKE_BACK_GRAPH)
+ AC_MSG_WARN("Client must not use -fomit-frame-pointer.")
+ AC_DEFINE(SAVE_CALL_COUNT, 8)
+ AM_CONDITIONAL([KEEP_BACK_PTRS], [test x"$keep_back_ptrs" = xtrue])
+
+ * `configure.host`
+
+ Nothing.
+
+ * `Makefile.am`, `include/include.am`, `cord/cord.am`, `doc/doc.am`
+
+ Nothing.
+
+ * `tests/tests.am`
+
+ if KEEP_BACK_PTRS
+ TESTS += tracetest$(EXEEXT)
+ check_PROGRAMS += tracetest
+ tracetest_SOURCES = tests/trace_test.c
+ tracetest_LDADD = $(test_ldadd)
+ endif
+
+ if THREADS
+ TESTS += threadleaktest$(EXEEXT)
+ check_PROGRAMS += threadleaktest
+ threadleaktest_SOURCES = tests/thread_leak_test.c
+ threadleaktest_LDADD = $(test_ldadd)
+ endif
+
+ if CPLUSPLUS
+ TESTS += test_cpp$(EXEEXT)
+ check_PROGRAMS += test_cpp
+ test_cpp_SOURCES = tests/test_cpp.cc
+ if AVOID_CPP_LIB
+ test_cpp_LDADD = gc_cpp.o $(test_ldadd)
+ else
+ test_cpp_LDADD = libgccpp.la $(test_ldadd)
+ endif
+ endif
+
+ * `doc/README.macros`
+
+ TODO.
+
+ * `doc/porting.html`
+
+ TODO.
+
+ * `include/gc_config_macros.h`
+
+ Should be OK.
+
+ * `include/private/gcconfig.h`
+
+ Hairy. But should be OK. Search for *HURD*, compare to *LINUX*,
+ *I386* case.
+
+ See `doc/porting.html` and `doc/README.macros` (and others) for
+ documentation.
+
+ *LINUX* has:
+
+ * `#define LINUX_STACKBOTTOM`
+
+ Defined instead of `STACKBOTTOM` to have the value read from `/proc/`.
+
+ * `#define HEAP_START (ptr_t)0x1000`
+
+ May want to define it for us, too?
+
+ * `#ifdef USE_I686_PREFETCH`, `USE_3DNOW_PREFETCH` --- [...]
+
+ Apparently these are optimization that we also could use. Have a
+ look at *LINUX* for *X86_64*, which uses `__builtin_prefetch`
+ (which Linux x86 could use, too?).
+
+ * TODO
+
+ #if defined(LINUX) && defined(USE_MMAP)
+ /* The kernel may do a somewhat better job merging mappings etc. */
+ /* with anonymous mappings. */
+ # define USE_MMAP_ANON
+ #endif
+
+ * TODO
+
+ #if defined(GC_LINUX_THREADS) && defined(REDIRECT_MALLOC)
+ /* Nptl allocates thread stacks with mmap, which is fine. But it */
+ /* keeps a cache of thread stacks. Thread stacks contain the */
+ /* thread control blocks. These in turn contain a pointer to */
+ /* (sizeof (void *) from the beginning of) the dtv for thread-local */
+ /* storage, which is calloc allocated. If we don't scan the cached */
+ /* thread stacks, we appear to lose the dtv. This tends to */
+ /* result in something that looks like a bogus dtv count, which */
+ /* tends to result in a memset call on a block that is way too */
+ /* large. Sometimes we're lucky and the process just dies ... */
+ /* There seems to be a similar issue with some other memory */
+ /* allocated by the dynamic loader. */
+ /* This should be avoidable by either: */
+ /* - Defining USE_PROC_FOR_LIBRARIES here. */
+ /* That performs very poorly, precisely because we end up */
+ /* scanning cached stacks. */
+ /* - Have calloc look at its callers. */
+ /* In spite of the fact that it is gross and disgusting. */
+ /* In fact neither seems to suffice, probably in part because */
+ /* even with USE_PROC_FOR_LIBRARIES, we don't scan parts of stack */
+ /* segments that appear to be out of bounds. Thus we actually */
+ /* do both, which seems to yield the best results. */
+
+ # define USE_PROC_FOR_LIBRARIES
+ #endif
+
+ * TODO
+
+ # if defined(GC_LINUX_THREADS) && defined(REDIRECT_MALLOC) \
+ && !defined(INCLUDE_LINUX_THREAD_DESCR)
+ /* Will not work, since libc and the dynamic loader use thread */
+ /* locals, sometimes as the only reference. */
+ # define INCLUDE_LINUX_THREAD_DESCR
+ # endif
+
+ * TODO
+
+ # if defined(UNIX_LIKE) && defined(THREADS) && !defined(NO_CANCEL_SAFE) \
+ && !defined(PLATFORM_ANDROID)
+ /* Make the code cancellation-safe. This basically means that we */
+ /* ensure that cancellation requests are ignored while we are in */
+ /* the collector. This applies only to Posix deferred cancellation;*/
+ /* we don't handle Posix asynchronous cancellation. */
+ /* Note that this only works if pthread_setcancelstate is */
+ /* async-signal-safe, at least in the absence of asynchronous */
+ /* cancellation. This appears to be true for the glibc version, */
+ /* though it is not documented. Without that assumption, there */
+ /* seems to be no way to safely wait in a signal handler, which */
+ /* we need to do for thread suspension. */
+ /* Also note that little other code appears to be cancellation-safe.*/
+ /* Hence it may make sense to turn this off for performance. */
+ # define CANCEL_SAFE
+ # endif
+
+ * `CAN_SAVE_CALL_ARGS` vs. -fomit-frame-pointer now being on by
+ default for Linux x86 IIRC? (Which is an [[!taglink
+ open_issue_gcc]] for not including us.)
+
+ * TODO
+
+ # if defined(REDIRECT_MALLOC) && defined(THREADS) && !defined(LINUX)
+ # error "REDIRECT_MALLOC with THREADS works at most on Linux."
+ # endif
+
+
+ *HURD* has:
+
+ * `#define STACK_GROWS_DOWN`
+
+ * `#define HEURISTIC2`
+
+ Defined instead of `STACKBOTTOM` to have the value probed.
+
+ Linux also has this:
+
+ #if defined(LINUX_STACKBOTTOM) && defined(NO_PROC_STAT) \
+ && !defined(USE_LIBC_PRIVATES)
+ /* This combination will fail, since we have no way to get */
+ /* the stack base. Use HEURISTIC2 instead. */
+ # undef LINUX_STACKBOTTOM
+ # define HEURISTIC2
+ /* This may still fail on some architectures like IA64. */
+ /* We tried ... */
+ #endif
+
+ Being on [[glibc]], we could perhaps do similar as
+ `USE_LIBC_PRIVATES` instead of `HEURISTIC2`. Pro: avoid
+ `SIGSEGV` (and general fragility) during probing at startup (if
+ I'm understanding this correctly). Con: rely on glibc internals.
+ Or we instead add support to parse `/proc/` (can even use the
+ same as Linux?), or use some other interface.
+
+ * `#define SIG_SUSPEND SIGUSR1`, `#define SIG_THR_RESTART SIGUSR2`
+
+ * We don't `#define MPROTECT_VDB` (WIP comment); but Linux neither.
+
+ * Where does our `GETPAGESIZE` come from? Should we `#include
+ ` like it is done for *LINUX*?
+
+ * `mach_dep.c`
+
+ TODO.
+
+ * `os_dep.c`
+
+ TODO.
+
+ * `dyn_load.c`
+
+ For `DYNAMIC_LOADING`. TODO.
+
+ * `pthread_support.c`, `pthread_stop_world.c`
+
+ TODO.
+
+ * `libatomic_ops/`
+
+ * `configure.ac`
+
+ Nothing.
+
+ * `Makefile`, `src/Makefile`, `src/atomic_ops/Makefile`,
+ `src/atomic_ops/sysdeps/Makefile`, `doc/Makefile`, `tests/Makefile`
+
+ Nothing.
+
+ * `src/atomic_ops/sysdeps/gcc/x86.h`
+
+ Nothing.
+
+---
+
+Other TODOs:
+
+ * [[gcc/boehm_gc]]
+
+ * Port stuff to GCC / test it there.
+
+ * What are other applications to test boehm-gc? Also in combination
+ with [[libpthread]]?
--
cgit v1.2.3
From 5028e035ddcc9c6c58707d42eb161a80f2012c16 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 10 Nov 2010 19:53:09 +0100
Subject: open_issues/gcc: WIP.
---
open_issues/boehm-gc.mdwn | 2 +-
open_issues/gcc.mdwn | 66 ++++++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 66 insertions(+), 2 deletions(-)
diff --git a/open_issues/boehm-gc.mdwn b/open_issues/boehm-gc.mdwn
index 4979f400..64730dc8 100644
--- a/open_issues/boehm-gc.mdwn
+++ b/open_issues/boehm-gc.mdwn
@@ -12,7 +12,7 @@ License|/fdl]]."]]"""]]
`grubber:~tschwinge/tmp/boehm-gc/git/`.
-It is used by GCC, for example.
+It is used by [[GCC]], for example.
[[tschwinge]] reviewed its GNU/Hurd port / configuration on 2010-11-10,
based on CVS HEAD sources from 2010-11-04, converted to Git:
diff --git a/open_issues/gcc.mdwn b/open_issues/gcc.mdwn
index ab51c8c4..6f5d1eac 100644
--- a/open_issues/gcc.mdwn
+++ b/open_issues/gcc.mdwn
@@ -9,7 +9,9 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled
[[GNU Free Documentation License|/fdl]]."]]"""]]
-[[!tag open_issue_porting open_issue_gcc fixed_in_debian]]
+[[!tag open_issue_gcc]]
+
+Includes an older variant of [[boehm-gc]] with own patches, etc.
For GCC trunk:
@@ -52,3 +54,65 @@ Additionally:
* Might [`-fsplit-stack`](http://nickclifton.livejournal.com/6889.html) be
worthwhile w.r.t. our multithreaded libraries?
+
+
+---
+
+
+
+ * `--enable-languages=[...]`
+
+ GNAT is not yet ported / bootstrapped?
+
+ * `--enable-frame-pointer`
+
+ `gcc/configure.ac`: `enable_frame_pointer=no`
+
+ * `--with-dwarf2`?
+
+ * `--enable-werror`
+
+ * `--enable-checking`
+
+ * `--enable-build-with-cxx`
+
+ * `--enable-decimal-float`, `--enable-fixed-point`, `--with-long-double-128`
+
+ `configure: WARNING: decimal float is not supported for this target, ignored`
+
+ * `--enable-linker-build-id`
+
+ * `--enable-gnu-unique-object`
+
+ * `--enable-lto`, `--enable-gold`
+
+ [[binutils_gold]]
+
+ * `--enable-indirect-function`
+
+ [[IFUNC]]
+
+---
+
+Here's a log of a GCC build run; this is from
+f07666e1203a50ae445025050b7e12311db6bbd0 (2010-11-04)
+[[sources|source_repositories/gcc]], run on kepler.SCHWINGE and grubber.
+
+ $ export LC_ALL=C
+ $ ../hurd/configure --prefix="$PWD".install 2>&1 | tee log_build
+ [...]
+ $ make SHELL=/bin/bash 2>&1 | tee log_build_
+ [...]
+
+(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
+harmonized.)
+
+On grubber, this takes roughly TODO minutes.
+
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/hurd.build/ && cat log_build* | sed -e "s%${PWD}%[...]%g"') <(ssh grubber 'cd tmp/gcc/hurd.build/ && cat log_build* | sed "s%${PWD}%[...]%g"') > open_issues/gcc/log_build-diff
+
+[[log_build-diff]].
+
+Build failure in boehm-gc. [[Working on this|boehm-gc]]; will need to backport
+upstream patches / also have a look at Debian patches, and [[boehm_gc]]. Then
+resume here.
--
cgit v1.2.3
From 1aaf9868f2b9c50c3c60cc9040e0b5c94dbe2b87 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 12 Nov 2010 12:09:07 +0100
Subject: open_issues/performance/microbenchmarks: New.
---
open_issues/performance/fork.mdwn | 1 +
open_issues/performance/microbenchmarks.mdwn | 13 +++++++++++++
2 files changed, 14 insertions(+)
create mode 100644 open_issues/performance/microbenchmarks.mdwn
diff --git a/open_issues/performance/fork.mdwn b/open_issues/performance/fork.mdwn
index 250b5277..390f6b99 100644
--- a/open_issues/performance/fork.mdwn
+++ b/open_issues/performance/fork.mdwn
@@ -19,3 +19,4 @@ the shell, for example.
Alternatives: use `posix_spawn`. Others?
To do: hard numbers.
+[[Microbenchmarks]]?
diff --git a/open_issues/performance/microbenchmarks.mdwn b/open_issues/performance/microbenchmarks.mdwn
new file mode 100644
index 00000000..de3a54b7
--- /dev/null
+++ b/open_issues/performance/microbenchmarks.mdwn
@@ -0,0 +1,13 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+Microbenchmarks may give useful hints, or they may not.
+
+
--
cgit v1.2.3
From 512f1951ca41ef1a648a3b55d2ae44da059f5415 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 14 Nov 2010 21:11:45 +0100
Subject: hurd/advantages: Rewritten some bits, and extended.
---
hurd/advantages.mdwn | 99 ++++++++++++++++++++++++++--------------------------
1 file changed, 49 insertions(+), 50 deletions(-)
diff --git a/hurd/advantages.mdwn b/hurd/advantages.mdwn
index ba3a134b..254e33f6 100644
--- a/hurd/advantages.mdwn
+++ b/hurd/advantages.mdwn
@@ -9,60 +9,59 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled
[[GNU Free Documentation License|/fdl]]."]]"""]]
-The Hurd is not the most advanced kernel known to the planet (yet),
-but it does have a number of enticing features:
+The GNU Hurd has a number of enticing features:
+
+It's free software, so anybody can use, modify, and redistribute it under the
+terms of the [[GNU General Public License (GPL)|GPL]].
+
+It's compatible as it provides a familiar programming and user environment.
+For all intents and purposes, the Hurd provides the same facilities as a modern
+Unix-like kernel. The Hurd uses the [[GNU C Library|glibc]], whose development
+closely tracks standards such as ANSI/ISO, BSD, POSIX, Single Unix, SVID, and
+X/Open.
+
+Unlike other popular kernel software, the Hurd has an object-oriented structure
+that allows it to evolve without compromising its design. This structure will
+help the Hurd undergo major redesign and modifications without having to be
+entirely rewritten.
+
+The Hurd is built in a very modular fashion. Other Unix-like kernels (Linux,
+for example) are also modular in that they allow loading (and unloading) some
+components as kernel modules, but the Hurd goes one step further in that most
+of the components that constitute the whole kernel are running as separate
+user-space processes and are thus using different address spaces that are
+isolated from each other. This is a multi-server design based on a
+[[microkernel]]. It is not possible that a faulty memory dereference inside
+the [[TCP/IP stack|translator/pfinet]] can bring down the whole kernel, and
+thus the whole system, which is a real problem in a monolothic Unix kernel
+architecture.
- * **it's free software**
-
- Anybody can use, modify, and redistribute it under the terms of the
- [[GNU_General_Public_License_(GPL)|GPL]]
-
- * **it's compatible**
-
- The Hurd provides a familiar programming and user environment. For all
- intents and purposes, the Hurd is a modern Unix-like kernel. The Hurd uses
- the [[GNU_C_Library|glibc]], whose development closely tracks standards
- such as ANSI/ISO, BSD, POSIX, Single Unix, SVID, and X/Open.
-
- * **it's built to survive**
-
- Unlike other popular kernel software, the Hurd has an object-oriented
- structure that allows it to evolve without compromising its design. This
- structure will help the Hurd undergo major redesign and modifications
- without having to be entirely rewritten.
-
- * **it's scalable**
-
- The Hurd implementation is aggressively multithreaded so that it runs
- efficiently on both single processors and symmetric multiprocessors. The
- Hurd interfaces are designed to allow transparent network clusters
- (*collectives*), although this feature has not yet been implemented.
-
- * **it's extensible**
-
- The Hurd is an attractive platform for learning how to become a kernel
- hacker or for implementing new ideas in kernel technology. Every part of
- the system is designed to be modified and extended.
+One advantage of the Hurd's separation of kernel-like functionality into
+separate components ([[servers|translator]]) is that these can be constructed
+using different programming lanugages -- a feature that is not easily possible
+in a monolithic kernel. Essentially, only an interface from the programming
+environment to the [[RPC]] mechanism is required.
- * **it's stable**
+
- The Hurd is real software that works Right Now. It is not a research
- project or a proposal. You don't have to wait at all before you can start
- using and developing it.
+The Hurd is an attractive platform for learning how to become a kernel hacker
+or for implementing new ideas in kernel technology. Every part of the system
+is designed to be easily modified and extended.
----
+It is possible to develop and test new Hurd kernel components without rebooting
+the machine. Running your own kernel components doesn't interfere with other
+users, and so no special system privileges are required. The mechanism for
+kernel extensions is secure by design: it is impossible to impose your changes
+upon other users unless they authorize them or you are the system
+administrator.
-One advantage of the Hurd's separation of kernel-like functionality into
-separate components ([[servers|translator]]) is that these can be constructed
-using different programming lanugages, a thing that is not easily possible in a
-monolithic kernel. Essentially, only an interface from the programming
-environment to the RPC mechanism is required.
+The Hurd is real software that works right now. It is not a research project
+or a proposal. You don't have to wait at all before you can [[start
+using|running]] and [[developing|contributing]] it.
--
cgit v1.2.3
From 7cb762b6e691e22c0634f530a7054755ceb93e8f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 14 Nov 2010 21:13:22 +0100
Subject: hurd/challenges: New.
---
hurd.mdwn | 2 +-
hurd/challenges.mdwn | 16 ++++++++++++++++
2 files changed, 17 insertions(+), 1 deletion(-)
create mode 100644 hurd/challenges.mdwn
diff --git a/hurd.mdwn b/hurd.mdwn
index 18748229..18987760 100644
--- a/hurd.mdwn
+++ b/hurd.mdwn
@@ -29,7 +29,7 @@ in the *unstable* branch of the Debian archive.
# Introduction
* [[What_Is_the_GNU_Hurd]] - A Brief Description
-* [[Advantages]]
+* [[Advantages]]. And [[challenges]].
* [[History]]
* [[history/Port_to_L4]]
* [[Logo]]
diff --git a/hurd/challenges.mdwn b/hurd/challenges.mdwn
new file mode 100644
index 00000000..640b95c9
--- /dev/null
+++ b/hurd/challenges.mdwn
@@ -0,0 +1,16 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+
+
+The GNU Hurd has a lot of [[advantages]], but there are challenges, too.
+
+There is no successful true multi-server [[microkernel]] system for desktop use
+yet. Though, they are quite popular in the simpler embedded space.
--
cgit v1.2.3
From 3c73e014458f7ce102aed1d219f487e97ee24a08 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 16 Nov 2010 10:21:35 +0100
Subject: open_issues/boehm-gc: Some more.
---
open_issues/boehm-gc.mdwn | 93 +++++++++++++++++++++++------------------------
1 file changed, 45 insertions(+), 48 deletions(-)
diff --git a/open_issues/boehm-gc.mdwn b/open_issues/boehm-gc.mdwn
index 64730dc8..f6896740 100644
--- a/open_issues/boehm-gc.mdwn
+++ b/open_issues/boehm-gc.mdwn
@@ -14,8 +14,11 @@ License|/fdl]]."]]"""]]
It is used by [[GCC]], for example.
-[[tschwinge]] reviewed its GNU/Hurd port / configuration on 2010-11-10,
-based on CVS HEAD sources from 2010-11-04, converted to Git:
+
+# Configuration
+
+[[tschwinge]] reviewed its GNU/Hurd port's configuration on 2010-11-10, based
+on CVS HEAD sources from 2010-11-16, converted to Git:
9abb37b2e581b415bb1f482085891a289c2c0be1.
* `configure.ac`
@@ -34,54 +37,23 @@ based on CVS HEAD sources from 2010-11-04, converted to Git:
keep_back_ptrs=true
AC_DEFINE([DBG_HDRS_ALL], 1,
[Define to force debug headers on all objects.])
+ case $host in
+ x86-*-linux* | i586-*-linux* | i686-*-linux* | x86_64-*-linux* )
AC_DEFINE(MAKE_BACK_GRAPH)
AC_MSG_WARN("Client must not use -fomit-frame-pointer.")
AC_DEFINE(SAVE_CALL_COUNT, 8)
+ ;;
AM_CONDITIONAL([KEEP_BACK_PTRS], [test x"$keep_back_ptrs" = xtrue])
* `configure.host`
Nothing.
- * `Makefile.am`, `include/include.am`, `cord/cord.am`, `doc/doc.am`
+ * `Makefile.am`, `include/include.am`, `cord/cord.am`, `doc/doc.am`,
+ `tests/tests.am`
Nothing.
- * `tests/tests.am`
-
- if KEEP_BACK_PTRS
- TESTS += tracetest$(EXEEXT)
- check_PROGRAMS += tracetest
- tracetest_SOURCES = tests/trace_test.c
- tracetest_LDADD = $(test_ldadd)
- endif
-
- if THREADS
- TESTS += threadleaktest$(EXEEXT)
- check_PROGRAMS += threadleaktest
- threadleaktest_SOURCES = tests/thread_leak_test.c
- threadleaktest_LDADD = $(test_ldadd)
- endif
-
- if CPLUSPLUS
- TESTS += test_cpp$(EXEEXT)
- check_PROGRAMS += test_cpp
- test_cpp_SOURCES = tests/test_cpp.cc
- if AVOID_CPP_LIB
- test_cpp_LDADD = gc_cpp.o $(test_ldadd)
- else
- test_cpp_LDADD = libgccpp.la $(test_ldadd)
- endif
- endif
-
- * `doc/README.macros`
-
- TODO.
-
- * `doc/porting.html`
-
- TODO.
-
* `include/gc_config_macros.h`
Should be OK.
@@ -205,12 +177,12 @@ based on CVS HEAD sources from 2010-11-04, converted to Git:
/* We tried ... */
#endif
- Being on [[glibc]], we could perhaps do similar as
- `USE_LIBC_PRIVATES` instead of `HEURISTIC2`. Pro: avoid
- `SIGSEGV` (and general fragility) during probing at startup (if
- I'm understanding this correctly). Con: rely on glibc internals.
- Or we instead add support to parse `/proc/` (can even use the
- same as Linux?), or use some other interface.
+ Being on [[glibc]], we could perhaps do similar as `USE_LIBC_PRIVATES`
+ instead of `HEURISTIC2`. Pro: avoid `SIGSEGV` (and general fragility)
+ during probing at startup (if I'm understanding this correctly). Con:
+ rely on glibc internals. Or we instead add support to parse
+ [[`/proc/`|hurd/translator/procfs]] (can even use the same as Linux?),
+ or use some other interface. [[!tag open_issue_glibc]]
* `#define SIG_SUSPEND SIGUSR1`, `#define SIG_THR_RESTART SIGUSR2`
@@ -221,11 +193,25 @@ based on CVS HEAD sources from 2010-11-04, converted to Git:
* `mach_dep.c`
- TODO.
+ * `#define NO_GETCONTEXT`
+
+ [[!taglink open_issue_glibc]], but this is not a real problem here,
+ because we can use the following GCC internal function without much
+ overhead:
+
+ * `GC_with_callee_saves_pushed`
+
+ The `HAVE_BUILTIN_UNWIND_INIT` case is ours.
* `os_dep.c`
- TODO.
+ * `read`
+
+ Sure that it doesn't internally (in [[glibc]]) use `malloc`. Probably
+ only / mostly (?) a problem for `--enable-redirect-malloc`
+ configurations? Linux with threads uses `readv`.
+
+ * TODO.
* `dyn_load.c`
@@ -250,9 +236,20 @@ based on CVS HEAD sources from 2010-11-04, converted to Git:
Nothing.
----
-Other TODOs:
+# Testsuite
+
+There are different configurations possible, but in general, the testsuite
+restults of GNU/Linux and GNU/Hurd look very similar.
+
+## `--enable-cplusplus --enable-gc-debug`
+
+ * GNU/Hurd is missing *Call chain at allocation: [...] output*.
+
+ `os_dep.c`:`GC_print_callers`
+
+
+# TODO
* [[gcc/boehm_gc]]
--
cgit v1.2.3
From 211ea8b9b594ab999dd0f98b5a86d88e6da480e6 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 16 Nov 2010 17:20:56 +0100
Subject: Link open_issues/gdb_thread_ids and
open_issues/thread_numbering_of_ps_and_gdb.
---
open_issues/gdb_thread_ids.mdwn | 6 +++++-
open_issues/thread_numbering_of_ps_and_gdb.mdwn | 3 +++
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/open_issues/gdb_thread_ids.mdwn b/open_issues/gdb_thread_ids.mdwn
index eeb67f30..c31a9967 100644
--- a/open_issues/gdb_thread_ids.mdwn
+++ b/open_issues/gdb_thread_ids.mdwn
@@ -1,4 +1,5 @@
-[[!meta copyright="Copyright © 2008, 2009 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2008, 2009, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -19,3 +20,6 @@ GNU GDB's Pedro Alves:
> was, if gnu-nat.c couldn't be using the port's id as thread ids instead of a
> locally auto-generated number. Maybe the thread id of the main thread would
> be preserved across execs this way
+
+
+Also see [[thread numbering of ps and GDB]].
diff --git a/open_issues/thread_numbering_of_ps_and_gdb.mdwn b/open_issues/thread_numbering_of_ps_and_gdb.mdwn
index ba2ad1f6..7058cfe2 100644
--- a/open_issues/thread_numbering_of_ps_and_gdb.mdwn
+++ b/open_issues/thread_numbering_of_ps_and_gdb.mdwn
@@ -16,3 +16,6 @@ that has a global meaning for the running GNU Mach kernel, or a process-wide
meaning, for example a port number.
[[!tag open_issue_hurd open_issue_gdb]]
+
+
+Also see [[GDB thread IDs]].
--
cgit v1.2.3
From bc58f4b143be5f69efb7363d030abf2fa4d98b04 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 16 Nov 2010 17:37:50 +0100
Subject: open_issues/gdb_head: Link to GDB Bugzilla report.
---
open_issues/gdb_head.mdwn | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/open_issues/gdb_head.mdwn b/open_issues/gdb_head.mdwn
index 4f16259f..e22a84cc 100644
--- a/open_issues/gdb_head.mdwn
+++ b/open_issues/gdb_head.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2009, 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -42,3 +42,5 @@ License|/fdl]]."]]"""]]
Good: 2009-10-19 09:30
Bad: 2009-10-19 10
+
+
--
cgit v1.2.3
From 8ef93773281cdcaf65c83c936da0618e30a0766f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 17 Nov 2010 17:46:21 +0100
Subject: hurd/libihash: libstdc++ stuff.
---
hurd/libihash.mdwn | 2 ++
1 file changed, 2 insertions(+)
diff --git a/hurd/libihash.mdwn b/hurd/libihash.mdwn
index 770770c7..8da04095 100644
--- a/hurd/libihash.mdwn
+++ b/hurd/libihash.mdwn
@@ -45,6 +45,8 @@ is included in the section entitled
* NNS; cf. f46f0abfee5a2b34451708f2462a1c3b1701facd
+ * libstdc++: `unordered_map`, `tr1/unordered_map`, `ext/hash_map`
+
*
*
--
cgit v1.2.3
From 2e427f5c33a0b335338a9a75a79d8ee601755ced Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 17 Nov 2010 18:54:49 +0100
Subject: public_hurd_boxen: Update snubber's mem value. Disable blubber and
move mem to grubber.
---
public_hurd_boxen.mdwn | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/public_hurd_boxen.mdwn b/public_hurd_boxen.mdwn
index b7c4549b..fc0c1c3a 100644
--- a/public_hurd_boxen.mdwn
+++ b/public_hurd_boxen.mdwn
@@ -13,13 +13,13 @@ Here are some Hurd boxes that users have made available to the public:
[[!table class="table_style_1" data="""
"Hoster","Name","Distribution","Machine Specs","Comments"
-"[[bddebian]]","blubber","Debian GNU/Hurd","Celeron 2.2 GHz; 222 MiB","Xen domU on [[zenhost]]; for experimental stuff"
+"[[bddebian]]","blubber","Debian GNU/Hurd","Celeron 2.2 GHz; 222 MiB","Xen domU on [[zenhost]]; for experimental stuff; deactivated until needed again (apart from [[tschwinge]], only [[scolobb]] has an account, but is not active at the moment)"
"[[bddebian]]","clubber","Debian GNU/Hurd","PIII 1 GHz; 384 MiB"
"[[bddebian]]","flubber","Debian GNU/Hurd","Celeron 2.2 GHz; 666 MiB","Xen domU on [[zenhost]]"
-"[[bddebian]]","snubber","Debian GNU/Hurd","Celeron 2.2 GHz; 160 MiB","Xen domU on [[zenhost]]; web server"
+"[[bddebian]]","snubber","Debian GNU/Hurd","Celeron 2.2 GHz; 243 MiB","Xen domU on [[zenhost]]; web server"
"[[bddebian]]","gnubber","Debian GNU/Hurd","PII 733 MHz; 384 MiB"
"[[bddebian]]","goober","Debian GNU/Hurd","?"
-"[[bddebian]]","grubber","Debian GNU/Hurd","Celeron 2.2 GHz; 222 MiB","Xen domU on [[zenhost]]; for experimental stuff"
+"[[bddebian]]","grubber","Debian GNU/Hurd","Celeron 2.2 GHz; 554 MiB","Xen domU on [[zenhost]]; for experimental stuff"
"[[bddebian]]","[[zenhost]]","Debian GNU/Linux","Celeron 2.2 GHz","Xen dom0 for several hosts"
"""]]
--
cgit v1.2.3
From 879a753d2a87905e76f0cea3893954d5c80e97d1 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 17 Nov 2010 19:54:42 +0100
Subject: topgit: Add section about (not) running it on GNU/Hurd.
---
open_issues/performance/io_system.mdwn | 9 +++++++--
topgit.mdwn | 9 +++++++++
2 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/open_issues/performance/io_system.mdwn b/open_issues/performance/io_system.mdwn
index f5b5506a..0d41d3c7 100644
--- a/open_issues/performance/io_system.mdwn
+++ b/open_issues/performance/io_system.mdwn
@@ -33,9 +33,14 @@ optimizing complex systems. That said, the killing feature we are definitely
missing is the read-ahead, and even a very simple implementation would bring
very big performance speedups.
-Here's a real use-case: [[binutils_ld_64ksec]].
+Here are some real testcases:
+
+ * [[binutils_ld_64ksec]];
+
+ * running the Git testsuite which is mostly I/O bound;
+
+ * use [[TopGit]] on a non-toy repository.
-Another one is running the Git testsuite which is mostly I/O bound, too.
Possible mentors: Samuel Thibault (youpi)
diff --git a/topgit.mdwn b/topgit.mdwn
index df2b7266..b71038ec 100644
--- a/topgit.mdwn
+++ b/topgit.mdwn
@@ -25,3 +25,12 @@ License|/fdl]]."]]"""]]
We're using this for some packages, where we're maintaining long-lived
development branches, for example [[source_repositories/binutils]] or
[[source_repositories/glibc]]. The latter one has usage examples, too.
+
+
+# Running it on GNU/Hurd
+
+Nothing special to that, technically, *only* that our [[I/O system's (non-)
+performance|open_issues/performance/io_system]] will render this unbearably
+slow for anything but simple test cases. So don't try to run it on the [[GCC]]
+or [[glibc]] repositories. Talk to [[tschwinge]] about how he's using it on a
+GNU/Linux machine and push the resulting trees to GNU/Hurd systems.
--
cgit v1.2.3
From a669898accf620b11c6e2e123138e3f166eeebdb Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 17 Nov 2010 19:56:56 +0100
Subject: open_issues/git-core-2: Add another one.
---
open_issues/git-core-2.mdwn | 33 ++++++++++++++++++++++++++++++++-
1 file changed, 32 insertions(+), 1 deletion(-)
diff --git a/open_issues/git-core-2.mdwn b/open_issues/git-core-2.mdwn
index df38dc70..cf526678 100644
--- a/open_issues/git-core-2.mdwn
+++ b/open_issues/git-core-2.mdwn
@@ -50,6 +50,37 @@ Fixing this situation is easy enough:
# On branch master
nothing to commit (working directory clean)
+Still seen on 2010-03-16.
+
---
-Still seen on 2010-03-16.
+A very similar issue, seen on 2010-11-17. The working tree had a lot of
+differences to HEAD.
+
+ tschwinge@grubber:~/tmp/gcc/hurd $ git reset --hard HEAD
+ error: unable to unlink old 'gcc/config/darwin.h' (Interrupted system call)
+ Checking out files: 100% (1149/1149), done.
+ fatal: Could not reset index file to revision 'HEAD'.
+ tschwinge@grubber:~/tmp/gcc/hurd $ git reset --hard HEAD
+ error: unable to unlink old 'gcc/config/iq2000/iq2000.md' (Interrupted system call)
+ error: git checkout-index: unable to create file gcc/config/lm32/lm32.c (File exists)
+ Checking out files: 100% (1149/1149), done.
+ fatal: Could not reset index file to revision 'HEAD'.
+ tschwinge@grubber:~/tmp/gcc/hurd $ ls -l gcc/config/iq2000/iq2000.md gcc/config/lm32/lm32.c
+ ls: cannot access gcc/config/iq2000/iq2000.md: No such file or directory
+ -rw-r--r-- 1 tschwinge tschwinge 32159 Nov 17 19:09 gcc/config/lm32/lm32.c
+ tschwinge@grubber:~/tmp/gcc/hurd $ git reset --hard HEAD
+ error: git checkout-index: unable to create file gcc/fortran/expr.c (Interrupted system call)
+ Checking out files: 100% (1149/1149), done.
+ fatal: Could not reset index file to revision 'HEAD'.
+ tschwinge@grubber:~/tmp/gcc/hurd $ git reset --hard HEAD
+ error: git checkout-index: unable to create file gcc/config/sol2.h (Interrupted system call)
+ Checking out files: 100% (1149/1149), done.
+ fatal: Could not reset index file to revision 'HEAD'.
+ tschwinge@grubber:~/tmp/gcc/hurd $ git reset --hard HEAD
+ error: unable to unlink old 'gcc/config/i386/i386.c' (Interrupted system call)
+ Checking out files: 100% (1149/1149), done.
+ fatal: Could not reset index file to revision 'HEAD'.
+ tschwinge@grubber:~/tmp/gcc/hurd $ git reset --hard HEAD
+ Checking out files: 100% (1149/1149), done.
+ HEAD is now at fe3e43c Merge commit 'refs/top-bases/hurd/master' into hurd/master
--
cgit v1.2.3
From fcf0789a3dacb56ffa959ece42d31ef627049002 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 17 Nov 2010 21:29:41 +0100
Subject: boehm_gc.
---
boehm_gc.mdwn | 17 +++
open_issues/boehm-gc.mdwn | 259 -----------------------------------
open_issues/boehm_gc.mdwn | 276 ++++++++++++++++++++++++++++++++++++++
open_issues/gcc.mdwn | 4 +-
source_repositories.mdwn | 3 +-
source_repositories/boehm_gc.mdwn | 22 +++
6 files changed, 319 insertions(+), 262 deletions(-)
create mode 100644 boehm_gc.mdwn
delete mode 100644 open_issues/boehm-gc.mdwn
create mode 100644 open_issues/boehm_gc.mdwn
create mode 100644 source_repositories/boehm_gc.mdwn
diff --git a/boehm_gc.mdwn b/boehm_gc.mdwn
new file mode 100644
index 00000000..5745aaaf
--- /dev/null
+++ b/boehm_gc.mdwn
@@ -0,0 +1,17 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="Boehm GC"]]
+
+
+#
+
+
+# [[Maintenance|open_issues/boehm_gc]]
diff --git a/open_issues/boehm-gc.mdwn b/open_issues/boehm-gc.mdwn
deleted file mode 100644
index f6896740..00000000
--- a/open_issues/boehm-gc.mdwn
+++ /dev/null
@@ -1,259 +0,0 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-.
-
-`grubber:~tschwinge/tmp/boehm-gc/git/`.
-
-It is used by [[GCC]], for example.
-
-
-# Configuration
-
-[[tschwinge]] reviewed its GNU/Hurd port's configuration on 2010-11-10, based
-on CVS HEAD sources from 2010-11-16, converted to Git:
-9abb37b2e581b415bb1f482085891a289c2c0be1.
-
- * `configure.ac`
-
- * `PARALLEL_MARK` is not enabled; doesn't make sense so far.
-
- * `*-*-kfreebsd*-gnu` defines `USE_COMPILER_TLS`. What's this, and
- why does not other config?
-
- * TODO
-
- [ if test "$enable_gc_debug" = "yes"; then
- AC_MSG_WARN("Should define GC_DEBUG and use debug alloc. in clients.")
- AC_DEFINE([KEEP_BACK_PTRS], 1,
- [Define to save back-pointers in debugging headers.])
- keep_back_ptrs=true
- AC_DEFINE([DBG_HDRS_ALL], 1,
- [Define to force debug headers on all objects.])
- case $host in
- x86-*-linux* | i586-*-linux* | i686-*-linux* | x86_64-*-linux* )
- AC_DEFINE(MAKE_BACK_GRAPH)
- AC_MSG_WARN("Client must not use -fomit-frame-pointer.")
- AC_DEFINE(SAVE_CALL_COUNT, 8)
- ;;
- AM_CONDITIONAL([KEEP_BACK_PTRS], [test x"$keep_back_ptrs" = xtrue])
-
- * `configure.host`
-
- Nothing.
-
- * `Makefile.am`, `include/include.am`, `cord/cord.am`, `doc/doc.am`,
- `tests/tests.am`
-
- Nothing.
-
- * `include/gc_config_macros.h`
-
- Should be OK.
-
- * `include/private/gcconfig.h`
-
- Hairy. But should be OK. Search for *HURD*, compare to *LINUX*,
- *I386* case.
-
- See `doc/porting.html` and `doc/README.macros` (and others) for
- documentation.
-
- *LINUX* has:
-
- * `#define LINUX_STACKBOTTOM`
-
- Defined instead of `STACKBOTTOM` to have the value read from `/proc/`.
-
- * `#define HEAP_START (ptr_t)0x1000`
-
- May want to define it for us, too?
-
- * `#ifdef USE_I686_PREFETCH`, `USE_3DNOW_PREFETCH` --- [...]
-
- Apparently these are optimization that we also could use. Have a
- look at *LINUX* for *X86_64*, which uses `__builtin_prefetch`
- (which Linux x86 could use, too?).
-
- * TODO
-
- #if defined(LINUX) && defined(USE_MMAP)
- /* The kernel may do a somewhat better job merging mappings etc. */
- /* with anonymous mappings. */
- # define USE_MMAP_ANON
- #endif
-
- * TODO
-
- #if defined(GC_LINUX_THREADS) && defined(REDIRECT_MALLOC)
- /* Nptl allocates thread stacks with mmap, which is fine. But it */
- /* keeps a cache of thread stacks. Thread stacks contain the */
- /* thread control blocks. These in turn contain a pointer to */
- /* (sizeof (void *) from the beginning of) the dtv for thread-local */
- /* storage, which is calloc allocated. If we don't scan the cached */
- /* thread stacks, we appear to lose the dtv. This tends to */
- /* result in something that looks like a bogus dtv count, which */
- /* tends to result in a memset call on a block that is way too */
- /* large. Sometimes we're lucky and the process just dies ... */
- /* There seems to be a similar issue with some other memory */
- /* allocated by the dynamic loader. */
- /* This should be avoidable by either: */
- /* - Defining USE_PROC_FOR_LIBRARIES here. */
- /* That performs very poorly, precisely because we end up */
- /* scanning cached stacks. */
- /* - Have calloc look at its callers. */
- /* In spite of the fact that it is gross and disgusting. */
- /* In fact neither seems to suffice, probably in part because */
- /* even with USE_PROC_FOR_LIBRARIES, we don't scan parts of stack */
- /* segments that appear to be out of bounds. Thus we actually */
- /* do both, which seems to yield the best results. */
-
- # define USE_PROC_FOR_LIBRARIES
- #endif
-
- * TODO
-
- # if defined(GC_LINUX_THREADS) && defined(REDIRECT_MALLOC) \
- && !defined(INCLUDE_LINUX_THREAD_DESCR)
- /* Will not work, since libc and the dynamic loader use thread */
- /* locals, sometimes as the only reference. */
- # define INCLUDE_LINUX_THREAD_DESCR
- # endif
-
- * TODO
-
- # if defined(UNIX_LIKE) && defined(THREADS) && !defined(NO_CANCEL_SAFE) \
- && !defined(PLATFORM_ANDROID)
- /* Make the code cancellation-safe. This basically means that we */
- /* ensure that cancellation requests are ignored while we are in */
- /* the collector. This applies only to Posix deferred cancellation;*/
- /* we don't handle Posix asynchronous cancellation. */
- /* Note that this only works if pthread_setcancelstate is */
- /* async-signal-safe, at least in the absence of asynchronous */
- /* cancellation. This appears to be true for the glibc version, */
- /* though it is not documented. Without that assumption, there */
- /* seems to be no way to safely wait in a signal handler, which */
- /* we need to do for thread suspension. */
- /* Also note that little other code appears to be cancellation-safe.*/
- /* Hence it may make sense to turn this off for performance. */
- # define CANCEL_SAFE
- # endif
-
- * `CAN_SAVE_CALL_ARGS` vs. -fomit-frame-pointer now being on by
- default for Linux x86 IIRC? (Which is an [[!taglink
- open_issue_gcc]] for not including us.)
-
- * TODO
-
- # if defined(REDIRECT_MALLOC) && defined(THREADS) && !defined(LINUX)
- # error "REDIRECT_MALLOC with THREADS works at most on Linux."
- # endif
-
-
- *HURD* has:
-
- * `#define STACK_GROWS_DOWN`
-
- * `#define HEURISTIC2`
-
- Defined instead of `STACKBOTTOM` to have the value probed.
-
- Linux also has this:
-
- #if defined(LINUX_STACKBOTTOM) && defined(NO_PROC_STAT) \
- && !defined(USE_LIBC_PRIVATES)
- /* This combination will fail, since we have no way to get */
- /* the stack base. Use HEURISTIC2 instead. */
- # undef LINUX_STACKBOTTOM
- # define HEURISTIC2
- /* This may still fail on some architectures like IA64. */
- /* We tried ... */
- #endif
-
- Being on [[glibc]], we could perhaps do similar as `USE_LIBC_PRIVATES`
- instead of `HEURISTIC2`. Pro: avoid `SIGSEGV` (and general fragility)
- during probing at startup (if I'm understanding this correctly). Con:
- rely on glibc internals. Or we instead add support to parse
- [[`/proc/`|hurd/translator/procfs]] (can even use the same as Linux?),
- or use some other interface. [[!tag open_issue_glibc]]
-
- * `#define SIG_SUSPEND SIGUSR1`, `#define SIG_THR_RESTART SIGUSR2`
-
- * We don't `#define MPROTECT_VDB` (WIP comment); but Linux neither.
-
- * Where does our `GETPAGESIZE` come from? Should we `#include
- ` like it is done for *LINUX*?
-
- * `mach_dep.c`
-
- * `#define NO_GETCONTEXT`
-
- [[!taglink open_issue_glibc]], but this is not a real problem here,
- because we can use the following GCC internal function without much
- overhead:
-
- * `GC_with_callee_saves_pushed`
-
- The `HAVE_BUILTIN_UNWIND_INIT` case is ours.
-
- * `os_dep.c`
-
- * `read`
-
- Sure that it doesn't internally (in [[glibc]]) use `malloc`. Probably
- only / mostly (?) a problem for `--enable-redirect-malloc`
- configurations? Linux with threads uses `readv`.
-
- * TODO.
-
- * `dyn_load.c`
-
- For `DYNAMIC_LOADING`. TODO.
-
- * `pthread_support.c`, `pthread_stop_world.c`
-
- TODO.
-
- * `libatomic_ops/`
-
- * `configure.ac`
-
- Nothing.
-
- * `Makefile`, `src/Makefile`, `src/atomic_ops/Makefile`,
- `src/atomic_ops/sysdeps/Makefile`, `doc/Makefile`, `tests/Makefile`
-
- Nothing.
-
- * `src/atomic_ops/sysdeps/gcc/x86.h`
-
- Nothing.
-
-
-# Testsuite
-
-There are different configurations possible, but in general, the testsuite
-restults of GNU/Linux and GNU/Hurd look very similar.
-
-## `--enable-cplusplus --enable-gc-debug`
-
- * GNU/Hurd is missing *Call chain at allocation: [...] output*.
-
- `os_dep.c`:`GC_print_callers`
-
-
-# TODO
-
- * [[gcc/boehm_gc]]
-
- * Port stuff to GCC / test it there.
-
- * What are other applications to test boehm-gc? Also in combination
- with [[libpthread]]?
diff --git a/open_issues/boehm_gc.mdwn b/open_issues/boehm_gc.mdwn
new file mode 100644
index 00000000..540eed3b
--- /dev/null
+++ b/open_issues/boehm_gc.mdwn
@@ -0,0 +1,276 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+Here's what's to be done for maintaining Boehm GC.
+
+This one does need Hurd-specific configuration.
+
+It is, for example, used by [[/GCC]] (which has its own fork), so any changes
+committed upstream should very like also be made there.
+
+
+# [[General information|/boehm_gc]]
+
+
+# [[Sources|source_repositories/boehm_gc]]
+
+
+# Configuration
+
+[[tschwinge]] reviewed its GNU/Hurd port's configuration on 2010-11-10, based
+on CVS HEAD sources from 2010-11-16, converted to Git:
+9abb37b2e581b415bb1f482085891a289c2c0be1.
+
+ * `configure.ac`
+
+ * `PARALLEL_MARK` is not enabled; doesn't make sense so far.
+
+ * `*-*-kfreebsd*-gnu` defines `USE_COMPILER_TLS`. What's this, and
+ why does not other config?
+
+ * TODO
+
+ [ if test "$enable_gc_debug" = "yes"; then
+ AC_MSG_WARN("Should define GC_DEBUG and use debug alloc. in clients.")
+ AC_DEFINE([KEEP_BACK_PTRS], 1,
+ [Define to save back-pointers in debugging headers.])
+ keep_back_ptrs=true
+ AC_DEFINE([DBG_HDRS_ALL], 1,
+ [Define to force debug headers on all objects.])
+ case $host in
+ x86-*-linux* | i586-*-linux* | i686-*-linux* | x86_64-*-linux* )
+ AC_DEFINE(MAKE_BACK_GRAPH)
+ AC_MSG_WARN("Client must not use -fomit-frame-pointer.")
+ AC_DEFINE(SAVE_CALL_COUNT, 8)
+ ;;
+ AM_CONDITIONAL([KEEP_BACK_PTRS], [test x"$keep_back_ptrs" = xtrue])
+
+ * `configure.host`
+
+ Nothing.
+
+ * `Makefile.am`, `include/include.am`, `cord/cord.am`, `doc/doc.am`,
+ `tests/tests.am`
+
+ Nothing.
+
+ * `include/gc_config_macros.h`
+
+ Should be OK.
+
+ * `include/private/gcconfig.h`
+
+ Hairy. But should be OK. Search for *HURD*, compare to *LINUX*,
+ *I386* case.
+
+ See `doc/porting.html` and `doc/README.macros` (and others) for
+ documentation.
+
+ *LINUX* has:
+
+ * `#define LINUX_STACKBOTTOM`
+
+ Defined instead of `STACKBOTTOM` to have the value read from `/proc/`.
+
+ * `#define HEAP_START (ptr_t)0x1000`
+
+ May want to define it for us, too?
+
+ * `#ifdef USE_I686_PREFETCH`, `USE_3DNOW_PREFETCH` --- [...]
+
+ Apparently these are optimization that we also could use. Have a
+ look at *LINUX* for *X86_64*, which uses `__builtin_prefetch`
+ (which Linux x86 could use, too?).
+
+ * TODO
+
+ #if defined(LINUX) && defined(USE_MMAP)
+ /* The kernel may do a somewhat better job merging mappings etc. */
+ /* with anonymous mappings. */
+ # define USE_MMAP_ANON
+ #endif
+
+ * TODO
+
+ #if defined(GC_LINUX_THREADS) && defined(REDIRECT_MALLOC)
+ /* Nptl allocates thread stacks with mmap, which is fine. But it */
+ /* keeps a cache of thread stacks. Thread stacks contain the */
+ /* thread control blocks. These in turn contain a pointer to */
+ /* (sizeof (void *) from the beginning of) the dtv for thread-local */
+ /* storage, which is calloc allocated. If we don't scan the cached */
+ /* thread stacks, we appear to lose the dtv. This tends to */
+ /* result in something that looks like a bogus dtv count, which */
+ /* tends to result in a memset call on a block that is way too */
+ /* large. Sometimes we're lucky and the process just dies ... */
+ /* There seems to be a similar issue with some other memory */
+ /* allocated by the dynamic loader. */
+ /* This should be avoidable by either: */
+ /* - Defining USE_PROC_FOR_LIBRARIES here. */
+ /* That performs very poorly, precisely because we end up */
+ /* scanning cached stacks. */
+ /* - Have calloc look at its callers. */
+ /* In spite of the fact that it is gross and disgusting. */
+ /* In fact neither seems to suffice, probably in part because */
+ /* even with USE_PROC_FOR_LIBRARIES, we don't scan parts of stack */
+ /* segments that appear to be out of bounds. Thus we actually */
+ /* do both, which seems to yield the best results. */
+
+ # define USE_PROC_FOR_LIBRARIES
+ #endif
+
+ * TODO
+
+ # if defined(GC_LINUX_THREADS) && defined(REDIRECT_MALLOC) \
+ && !defined(INCLUDE_LINUX_THREAD_DESCR)
+ /* Will not work, since libc and the dynamic loader use thread */
+ /* locals, sometimes as the only reference. */
+ # define INCLUDE_LINUX_THREAD_DESCR
+ # endif
+
+ * TODO
+
+ # if defined(UNIX_LIKE) && defined(THREADS) && !defined(NO_CANCEL_SAFE) \
+ && !defined(PLATFORM_ANDROID)
+ /* Make the code cancellation-safe. This basically means that we */
+ /* ensure that cancellation requests are ignored while we are in */
+ /* the collector. This applies only to Posix deferred cancellation;*/
+ /* we don't handle Posix asynchronous cancellation. */
+ /* Note that this only works if pthread_setcancelstate is */
+ /* async-signal-safe, at least in the absence of asynchronous */
+ /* cancellation. This appears to be true for the glibc version, */
+ /* though it is not documented. Without that assumption, there */
+ /* seems to be no way to safely wait in a signal handler, which */
+ /* we need to do for thread suspension. */
+ /* Also note that little other code appears to be cancellation-safe.*/
+ /* Hence it may make sense to turn this off for performance. */
+ # define CANCEL_SAFE
+ # endif
+
+ * `CAN_SAVE_CALL_ARGS` vs. -fomit-frame-pointer now being on by
+ default for Linux x86 IIRC? (Which is an [[!taglink
+ open_issue_gcc]] for not including us.)
+
+ * TODO
+
+ # if defined(REDIRECT_MALLOC) && defined(THREADS) && !defined(LINUX)
+ # error "REDIRECT_MALLOC with THREADS works at most on Linux."
+ # endif
+
+
+ *HURD* has:
+
+ * `#define STACK_GROWS_DOWN`
+
+ * `#define HEURISTIC2`
+
+ Defined instead of `STACKBOTTOM` to have the value probed.
+
+ Linux also has this:
+
+ #if defined(LINUX_STACKBOTTOM) && defined(NO_PROC_STAT) \
+ && !defined(USE_LIBC_PRIVATES)
+ /* This combination will fail, since we have no way to get */
+ /* the stack base. Use HEURISTIC2 instead. */
+ # undef LINUX_STACKBOTTOM
+ # define HEURISTIC2
+ /* This may still fail on some architectures like IA64. */
+ /* We tried ... */
+ #endif
+
+ Being on [[glibc]], we could perhaps do similar as `USE_LIBC_PRIVATES`
+ instead of `HEURISTIC2`. Pro: avoid `SIGSEGV` (and general fragility)
+ during probing at startup (if I'm understanding this correctly). Con:
+ rely on glibc internals. Or we instead add support to parse
+ [[`/proc/`|hurd/translator/procfs]] (can even use the same as Linux?),
+ or use some other interface. [[!tag open_issue_glibc]]
+
+ * `#define SIG_SUSPEND SIGUSR1`, `#define SIG_THR_RESTART SIGUSR2`
+
+ * We don't `#define MPROTECT_VDB` (WIP comment); but Linux neither.
+
+ * Where does our `GETPAGESIZE` come from? Should we `#include
+ ` like it is done for *LINUX*?
+
+ * `include/gc_pthread_redirects.h`
+
+ * TODO
+
+ Cancellation stuff is Linux-only. In other places, too.
+
+ * `mach_dep.c`
+
+ * `#define NO_GETCONTEXT`
+
+ [[!taglink open_issue_glibc]], but this is not a real problem here,
+ because we can use the following GCC internal function without much
+ overhead:
+
+ * `GC_with_callee_saves_pushed`
+
+ The `HAVE_BUILTIN_UNWIND_INIT` case is ours.
+
+ * `os_dep.c`
+
+ * `read`
+
+ Sure that it doesn't internally (in [[glibc]]) use `malloc`. Probably
+ only / mostly (?) a problem for `--enable-redirect-malloc`
+ configurations? Linux with threads uses `readv`.
+
+ * TODO.
+
+ * `dyn_load.c`
+
+ For `DYNAMIC_LOADING`. TODO.
+
+ * `pthread_support.c`, `pthread_stop_world.c`
+
+ TODO.
+
+ * TODO.
+
+ Other files also contain *LINUX* and other conditionals.
+
+ * `libatomic_ops/`
+
+ * `configure.ac`
+
+ Nothing.
+
+ * `Makefile`, `src/Makefile`, `src/atomic_ops/Makefile`,
+ `src/atomic_ops/sysdeps/Makefile`, `doc/Makefile`, `tests/Makefile`
+
+ Nothing.
+
+ * `src/atomic_ops/sysdeps/gcc/x86.h`
+
+ Nothing.
+
+
+# Testsuite
+
+There are different configurations possible, but in general, the testsuite
+restults of GNU/Linux and GNU/Hurd look very similar.
+
+## `--enable-cplusplus --enable-gc-debug`
+
+ * GNU/Hurd is missing *Call chain at allocation: [...] output*.
+
+ `os_dep.c`:`GC_print_callers`
+
+
+# TODO
+
+ * Port stuff to [[/GCC]] / [[test it there|gcc/testsuite]].
+
+ * What are other applications to test Boehm GC? Also especially in
+ combination with [[/libpthread]] and dynamic loading of shared libraries?
+
+ *
diff --git a/open_issues/gcc.mdwn b/open_issues/gcc.mdwn
index 6f5d1eac..8d2fb1cf 100644
--- a/open_issues/gcc.mdwn
+++ b/open_issues/gcc.mdwn
@@ -11,7 +11,7 @@ is included in the section entitled
[[!tag open_issue_gcc]]
-Includes an older variant of [[boehm-gc]] with own patches, etc.
+Includes an older variant of [[/Boehm_GC]] with own patches, etc.
For GCC trunk:
@@ -113,6 +113,6 @@ On grubber, this takes roughly TODO minutes.
[[log_build-diff]].
-Build failure in boehm-gc. [[Working on this|boehm-gc]]; will need to backport
+Build failure in Boehm GC. Working on this; will need to backport
upstream patches / also have a look at Debian patches, and [[boehm_gc]]. Then
resume here.
diff --git a/source_repositories.mdwn b/source_repositories.mdwn
index 3df44e74..214dc0b4 100644
--- a/source_repositories.mdwn
+++ b/source_repositories.mdwn
@@ -242,7 +242,8 @@ really need to, you can clone it like this:
## List of Interesting Repositories
- * [[binutils maintenance|binutils]]
+ * [[binutils]]
+ * [[Boehm_GC]]
# Debian Git repositories
diff --git a/source_repositories/boehm_gc.mdwn b/source_repositories/boehm_gc.mdwn
new file mode 100644
index 00000000..5fba0709
--- /dev/null
+++ b/source_repositories/boehm_gc.mdwn
@@ -0,0 +1,22 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+There is a repository for maintenance of [[/boehm_gc]] for the Hurd's needs:
+`grubber:~tschwinge/tmp/boehm-gc/git`.
+
+This repository uses [[TopGit]] and is a `git cvsimport` of the SourceForge CVS
+repository.
+
+ git \
+ cvsimport \
+ -d :pserver:anonymous@bdwgc.cvs.sourceforge.net:/cvsroot/bdwgc \
+ -r upstream \
+ -k \
+ bdwgc
--
cgit v1.2.3
From 7200c2244ca5510ddc8321306a6ba9a8f0c22eb6 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 17 Nov 2010 21:48:32 +0100
Subject: binutils.
---
binutils.mdwn | 9 +--------
open_issues/binutils.mdwn | 12 +++++++++++-
source_repositories/binutils.mdwn | 2 +-
3 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/binutils.mdwn b/binutils.mdwn
index 44b672eb..d3e2b735 100644
--- a/binutils.mdwn
+++ b/binutils.mdwn
@@ -15,14 +15,7 @@ is included in the section entitled
#
-# Specifics
-
-Actually *non-*specifics: as these tools primarily deal with low-level parts of
-the target architecture and the object file format (ELF ABI), which are
-essentially (at least meant to be) the same, there shouldn't be many
-differences comparing the binutils between the GNU/Hurd and GNU/Linux ports,
-for example. There are a few, though, as explained on binutils' [[open issues
-page|open_issues/binutils]].
+# [[Maintenance|open_issues/binutils]]
# Open Issues
diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn
index c443adb6..1796deaf 100644
--- a/open_issues/binutils.mdwn
+++ b/open_issues/binutils.mdwn
@@ -1,4 +1,5 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -12,6 +13,15 @@ License|/fdl]]."]]"""]]
Here's what's to be done for maintaining GNU Binutils.
+As these tools primarily deal with low-level parts of the target architecture
+and the object file format (ELF ABI), which are essentially (at least meant to
+be) the same, there shouldn't be many differences comparing the binutils
+between the GNU/Hurd and GNU/Linux ports, for example. There are a few,
+though, as explained below.
+
+
+# [[General information|/binutils]]
+
# [[Sources|source_repositories/binutils]]
diff --git a/source_repositories/binutils.mdwn b/source_repositories/binutils.mdwn
index 87c91adf..52053b97 100644
--- a/source_repositories/binutils.mdwn
+++ b/source_repositories/binutils.mdwn
@@ -9,7 +9,7 @@ is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
There is a repository for maintenance of [[/binutils]] for the Hurd's needs:
-`grubber:~tschwinge/tmp/binutils/git`
+`grubber:~tschwinge/tmp/binutils/git`.
This repository uses [[TopGit]] and is based on
.
--
cgit v1.2.3
From d843d207052599f6f8aa5c92abab3ac7ea39dbfc Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 17 Nov 2010 21:50:36 +0100
Subject: gcc.
---
gcc.mdwn | 11 +--
open_issues/gcc.mdwn | 88 +++++++++--------
open_issues/gcc/boehm_gc.mdwn | 29 ------
open_issues/gcc/testsuite.mdwn | 34 +++++++
open_issues/gcc_testsuite.mdwn | 211 -----------------------------------------
open_issues/unit_testing.mdwn | 2 +-
source_repositories.mdwn | 1 +
source_repositories/gcc.mdwn | 15 +++
8 files changed, 101 insertions(+), 290 deletions(-)
delete mode 100644 open_issues/gcc/boehm_gc.mdwn
create mode 100644 open_issues/gcc/testsuite.mdwn
delete mode 100644 open_issues/gcc_testsuite.mdwn
create mode 100644 source_repositories/gcc.mdwn
diff --git a/gcc.mdwn b/gcc.mdwn
index 2192ab54..8f311b12 100644
--- a/gcc.mdwn
+++ b/gcc.mdwn
@@ -12,17 +12,10 @@ is included in the section entitled
[[!meta title="GNU Compiler Collection"]]
-# http://gcc.gnu.org/
+#
- * [[Open Issues|tag/open_issue_gcc]]
-
-# Specifics
-
-Actually mostly *non-*specifics: apart from the target-specific configuration
-machinery, there shouldn't be any major differences within GCC between the
-GNU/Hurd and GNU/Linux ports, for example. Especially all the compiler magic
-is all the same.
+# [[Maintenance|open_issues/gcc]]
# Open Issues
diff --git a/open_issues/gcc.mdwn b/open_issues/gcc.mdwn
index 8d2fb1cf..961b3ae6 100644
--- a/open_issues/gcc.mdwn
+++ b/open_issues/gcc.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2008, 2009, 2010 Free Software Foundation,
+[[!meta copyright="Copyright © 2007, 2008, 2009, 2010 Free Software Foundation,
Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
@@ -11,29 +11,46 @@ is included in the section entitled
[[!tag open_issue_gcc]]
-Includes an older variant of [[/Boehm_GC]] with own patches, etc.
+Here's what's to be done for maintaining GCC.
-For GCC trunk:
+Apart from the target-specific configuration machinery, there shouldn't be any
+major differences within GCC between the GNU/Hurd and GNU/Linux ports, for
+example. Especially all the compiler magic is all the same.
-Debian package has patches (for 4.3). Some have been forwarded upstream. (And
-have been ignored.) [[Thomas_Schwinge|tschwinge]] is working on getting them
-integrated.
- * [\[meta-bug\] bootstrap bugs for
- \*-gnu\*](http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21824)
+# [[General information|/gcc]]
- * [build system: gcc\_cv\_libc\_provides\_ssp and
- NATIVE\_SYSTEM\_HEADER\_DIR](http://gcc.gnu.org/ml/gcc/2008-10/msg00130.html)
- * [-fstack-protector shouldn't use TLS in freestanding
- mode](http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29838)
+# [[Sources|source_repositories/gcc]]
+
+
+## Boehm GC
+
+GCC includes an own variant of [[/Boehm_GC]] that is based on an upstream
+version, but with own patches, etc. This is used for Java. (There are patches
+(apparently not committed) that GCC itself can use it, too:
+.)
+
+Patches to GCC's fork should be contributed back to upstream [[/Boehm_GC]].
+
+[[tschwinge]] reviewed (but only briefly for large parts) the differences on
+2010-11-17, based on 5be7963446247204245c954641290f0e5ce238c6 (2010-10-28) of
+[[source_repositories/GCC]] and for [[source_repositories/Boehm_GC]] CVS HEAD
+sources from 2010-11-16, converted to Git:
+9abb37b2e581b415bb1f482085891a289c2c0be1.
+
+[[tschwinge]] reviewed the Debian GCC Boehm GC changes, compared them to the
+upstream code, and put it into the local *hurd/boehm-gc/config_backport*
+branch, planning to submit it to gcc-patches after testing with the GCC
+[[testsuite]].
- * [Tool chain configuration: GNU/\* sharing stuff with
- GNU/Linux](http://gcc.gnu.org/ml/gcc/2007-11/msg00289.html)
+# Configuration
+Last checked against b8ba44e77a9fdde48ce0b7c6792736996704501e (2010-11-17).
-Additionally:
+ has documentation for the
+`configure` switches.
* Configure fragments that have `*linux*` cases might/should often contain
those for us (and GNU/k*BSD) as well.
@@ -50,16 +67,9 @@ Additionally:
* [[`libmudflap`|libmudflap]].
- * [[Boehm_GC]].
-
* Might [`-fsplit-stack`](http://nickclifton.livejournal.com/6889.html) be
worthwhile w.r.t. our multithreaded libraries?
-
----
-
-
-
* `--enable-languages=[...]`
GNAT is not yet ported / bootstrapped?
@@ -78,7 +88,8 @@ Additionally:
* `--enable-decimal-float`, `--enable-fixed-point`, `--with-long-double-128`
- `configure: WARNING: decimal float is not supported for this target, ignored`
+ `configure: WARNING: decimal float is not supported for this target,
+ ignored`
* `--enable-linker-build-id`
@@ -92,27 +103,24 @@ Additionally:
[[IFUNC]]
----
-Here's a log of a GCC build run; this is from
-f07666e1203a50ae445025050b7e12311db6bbd0 (2010-11-04)
-[[sources|source_repositories/gcc]], run on kepler.SCHWINGE and grubber.
+# [[Testsuite]]
- $ export LC_ALL=C
- $ ../hurd/configure --prefix="$PWD".install 2>&1 | tee log_build
- [...]
- $ make SHELL=/bin/bash 2>&1 | tee log_build_
- [...]
-(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
-harmonized.)
+# TODO
-On grubber, this takes roughly TODO minutes.
+Debian's GCC package has Hurd-specific patches. Some have been forwarded
+upstream (and have been ignored). [[Thomas_Schwinge|tschwinge]] is working on
+getting them integrated.
- $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/hurd.build/ && cat log_build* | sed -e "s%${PWD}%[...]%g"') <(ssh grubber 'cd tmp/gcc/hurd.build/ && cat log_build* | sed "s%${PWD}%[...]%g"') > open_issues/gcc/log_build-diff
+ * [\[meta-bug\] bootstrap bugs for
+ \*-gnu\*](http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21824)
-[[log_build-diff]].
+ * [build system: gcc\_cv\_libc\_provides\_ssp and
+ NATIVE\_SYSTEM\_HEADER\_DIR](http://gcc.gnu.org/ml/gcc/2008-10/msg00130.html)
+
+ * [-fstack-protector shouldn't use TLS in freestanding
+ mode](http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29838)
-Build failure in Boehm GC. Working on this; will need to backport
-upstream patches / also have a look at Debian patches, and [[boehm_gc]]. Then
-resume here.
+ * [Tool chain configuration: GNU/\* sharing stuff with
+ GNU/Linux](http://gcc.gnu.org/ml/gcc/2007-11/msg00289.html)
diff --git a/open_issues/gcc/boehm_gc.mdwn b/open_issues/gcc/boehm_gc.mdwn
deleted file mode 100644
index 2ee88a2b..00000000
--- a/open_issues/gcc/boehm_gc.mdwn
+++ /dev/null
@@ -1,29 +0,0 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-[[!tag open_issue_gcc]]
-
-IRC, unknown channel, unknown date.
-
- youpi: The Debian GCC 4.3 package also has this change:
- --- boehm-gc/dyn_load.c.orig 2007-08-13 09:10:48.215678000 +0200
- +++ boehm-gc/dyn_load.c 2007-08-13 09:11:09.743969000 +0200
- @@ -26,7 +26,7 @@
- * None of this is safe with dlclose and incremental collection.
- * But then not much of anything is safe in the presence of dlclose.
- */
- -#if (defined(__linux__) || defined(__GLIBC__)) && !defined(_GNU_SOURCE)
- +#if (defined(__linux__) || defined(__GLIBC__) || defined(__GNU__)) && !defined(_GNU_SOURCE)
- yes, these are needed
- and that's the kind of fix needed for java
-
----
-
-
diff --git a/open_issues/gcc/testsuite.mdwn b/open_issues/gcc/testsuite.mdwn
new file mode 100644
index 00000000..a88b7d61
--- /dev/null
+++ b/open_issues/gcc/testsuite.mdwn
@@ -0,0 +1,34 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_gcc]]
+
+Here's a log of a GCC build run; this is from
+fe3e43c5e4ac1225921be12c32dbb48151af1f66 (2010-11-17)
+[[sources|source_repositories/gcc]], run on kepler.SCHWINGE and grubber.
+
+ $ export LC_ALL=C
+ $ ../hurd/configure --prefix="$PWD".install 2>&1 | tee log_build
+ [...]
+ $ make SHELL=/bin/bash 2>&1 | tee log_build_
+ [...]
+
+(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
+harmonized.)
+
+On grubber, this takes roughly TODO minutes, and takes up 2.5 GiB.
+
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/hurd.build/ && cat log_build* | sed -e "s%${PWD}%[...]%g"') <(ssh grubber 'cd tmp/gcc/hurd.build/ && cat log_build* | sed "s%${PWD}%[...]%g"') > open_issues/gcc/log_build-diff
+
+[[log_build-diff]].
+
+TODO.
+
+
diff --git a/open_issues/gcc_testsuite.mdwn b/open_issues/gcc_testsuite.mdwn
deleted file mode 100644
index b4bbc7c8..00000000
--- a/open_issues/gcc_testsuite.mdwn
+++ /dev/null
@@ -1,211 +0,0 @@
-[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-[[!meta title="GCC testsuite"]]
-
-[[!tag open_issue_gcc]]
-
-Here's some log of a GCC testsuite run; this is from trunk sources, about
-2008-10-19.
-
- make -k check
- make[1]: Entering directory `/media/data/home/tschwinge/tmp/gcc/trunk.work.build'
- make[2]: Entering directory `/media/data/home/tschwinge/tmp/gcc/trunk.work.build/fixincludes'
- autogen -T ../../trunk.work/fixincludes/check.tpl ../../trunk.work/fixincludes/inclhack.def
- /bin/sh ./check.sh ../../trunk.work/fixincludes/tests/base
- Fixed: testing.h
- Fixed: testing.h
- Fixed: AvailabilityMacros.h
- Fixed: X11/ShellP.h
- Fixed: X11/Xmu.h
- Fixed: Xm/BaseClassI.h
- Fixed: Xm/Traversal.h
- Fixed: ansi/math.h
- Fixed: ansi/stdlib.h
- Fixed: arch/i960/archI960.h
- Fixed: architecture/ppc/math.h
- Fixed: assert.h
- Fixed: bits/huge_val.h
- Fixed: bits/string2.h
- Fixed: bsd/libc.h
- Fixed: c_asm.h
- Fixed: com_err.h
- Fixed: ctrl-quotes-def-1.h
- Fixed: ctype.h
- Fixed: curses.h
- Fixed: errno.h
- Fixed: features.h
- Fixed: fixinc-test-limits.h
- Fixed: hsfs/hsfs_spec.h
- Fixed: ia64/sys/getppdp.h
- Fixed: internal/math_core.h
- Fixed: internal/sgimacros.h
- Fixed: internal/wchar_core.h
- Fixed: inttypes.h
- Fixed: io-quotes-def-1.h
- Fixed: iso/math_c99.h
- Fixed: mach-o/dyld.h
- Fixed: mach-o/swap.h
- Fixed: malloc.h
- Fixed: math.h
- Fixed: netdnet/dnetdb.h
- Fixed: netinet/in.h
- Fixed: netinet/ip.h
- Fixed: obstack.h
- Fixed: pixrect/memvar.h
- Fixed: pthread.h
- Fixed: reg_types.h
- Fixed: regex.h
- Fixed: regexp.h
- Fixed: rpc/auth.h
- Fixed: rpc/rpc.h
- Fixed: rpc/xdr.h
- Fixed: rpcsvc/rstat.h
- Fixed: rpcsvc/rusers.h
- Fixed: signal.h
- Fixed: sparc/asm_linkage.h
- Fixed: standards.h
- Fixed: stdint.h
- Fixed: stdio.h
- Fixed: stdio_tag.h
- Fixed: stdlib.h
- Fixed: string.h
- Fixed: strings.h
- Fixed: sundev/vuid_event.h
- Fixed: sunwindow/win_lock.h
- Fixed: sym.h
- Fixed: sys/asm.h
- Fixed: sys/cdefs.h
- Fixed: sys/file.h
- Fixed: sys/limits.h
- Fixed: sys/machine.h
- Fixed: sys/mman.h
- Fixed: sys/pthread.h
- Fixed: sys/signal.h
- Fixed: sys/socket.h
- Fixed: sys/spinlock.h
- Fixed: sys/stat.h
- Fixed: sys/sysmacros.h
- Fixed: sys/time.h
- Fixed: sys/types.h
- Fixed: sys/ucontext.h
- Fixed: sys/wait.h
- Fixed: testing.h
- Fixed: time.h
- Fixed: tinfo.h
- Fixed: types/vxTypesBase.h
- Fixed: unistd.h
- Fixed: wchar.h
-
- All fixinclude tests pass
- make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gcc/trunk.work.build/fixincludes'
- make[2]: Entering directory `/media/data/home/tschwinge/tmp/gcc/trunk.work.build/gcc'
- test -d testsuite || mkdir testsuite
- test -d testsuite/gcc || mkdir testsuite/gcc
- (rootme=`${PWDCMD-pwd}`; export rootme; \
- srcdir=`cd ../../trunk.work/gcc; ${PWDCMD-pwd}` ; export srcdir ; \
- cd testsuite/gcc; \
- rm -f tmp-site.exp; \
- sed '/set tmpdir/ s|testsuite|testsuite/gcc|' \
- < ../../site.exp > tmp-site.exp; \
- /bin/sh ${srcdir}/../move-if-change tmp-site.exp site.exp; \
- EXPECT=expect ; export EXPECT ; \
- if [ -f ${rootme}/../expect/expect ] ; then \
- TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWDCMD-pwd}` ; \
- export TCL_LIBRARY ; fi ; \
- GCC_EXEC_PREFIX="/home/tschwinge/tmp/gcc/trunk.work.build.install/lib/gcc/" ; export GCC_EXEC_PREFIX ; \
- runtest --tool gcc )
- Test Run By tschwinge on Thu Oct 23 08:42:42 2008
- Native configuration is i386-unknown-gnu0.3
-
- === gcc tests ===
-
- Schedule of variations:
- unix
-
- Running target unix
- Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
- Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
- Using /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/config/default.exp as tool-and-target-specific interface file.
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.c-torture/compile/compile.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.c-torture/execute/builtins/builtins.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.c-torture/execute/execute.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.c-torture/execute/ieee/ieee.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.c-torture/unsorted/unsorted.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/autopar/autopar.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/charset/charset.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/compat/compat.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/compat/struct-layout-1.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/cpp/cpp.exp ...
- FAIL: gcc.dg/cpp/_Pragma3.c -fno-show-column (test for excess errors)
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/cpp/trad/trad.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/debug/debug.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/debug/dwarf2/dwarf2.exp ...
- FAIL: gcc.dg/debug/dwarf2/dwarf-die3.c scan-assembler-not DW_AT_inline
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/dfp/dfp.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/dg.exp ...
- FAIL: gcc.dg/20021014-1.c (test for excess errors)
- FAIL: gcc.dg/cleanup-12.c (test for excess errors)
- FAIL: gcc.dg/cleanup-5.c (test for excess errors)
- FAIL: gcc.dg/nest.c (test for excess errors)
- FAIL: gcc.dg/nested-func-4.c (test for excess errors)
- FAIL: gcc.dg/pr32450.c (test for excess errors)
- FAIL: gcc.dg/pr33645-3.c scan-assembler-not var1_t
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/fixed-point/fixed-point.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/format/format.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/gomp/gomp.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/graphite/graphite.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/ipa/ipa.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/matrix/matrix.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/noncompile/noncompile.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/pch/pch.exp ...
- FAIL: gcc.dg/pch/valid-1b.c -O0 -g -I. (test for excess errors)
- FAIL: gcc.dg/pch/valid-1b.c -O0 -g assembly comparison
- FAIL: gcc.dg/pch/valid-1b.c -O0 -I. (test for excess errors)
- FAIL: gcc.dg/pch/valid-1b.c -O0 assembly comparison
- FAIL: gcc.dg/pch/valid-1b.c -O1 -I. (test for excess errors)
- FAIL: gcc.dg/pch/valid-1b.c -O1 assembly comparison
- FAIL: gcc.dg/pch/valid-1b.c -O2 -I. (test for excess errors)
- FAIL: gcc.dg/pch/valid-1b.c -O2 assembly comparison
- FAIL: gcc.dg/pch/valid-1b.c -O3 -fomit-frame-pointer -I. (test for excess errors)
- FAIL: gcc.dg/pch/valid-1b.c -O3 -fomit-frame-pointer assembly comparison
- FAIL: gcc.dg/pch/valid-1b.c -O3 -g -I. (test for excess errors)
- FAIL: gcc.dg/pch/valid-1b.c -O3 -g assembly comparison
- FAIL: gcc.dg/pch/valid-1b.c -Os -I. (test for excess errors)
- FAIL: gcc.dg/pch/valid-1b.c -Os assembly comparison
- FAIL: largefile.c -O0 -g -I. (test for excess errors)
- FAIL: gcc.dg/pch/largefile.c -O0 -g assembly comparison
- FAIL: largefile.c -O0 -I. (test for excess errors)
- FAIL: gcc.dg/pch/largefile.c -O0 assembly comparison
- FAIL: largefile.c -O1 -I. (test for excess errors)
- FAIL: gcc.dg/pch/largefile.c -O1 assembly comparison
- FAIL: largefile.c -O2 -I. (test for excess errors)
- FAIL: gcc.dg/pch/largefile.c -O2 assembly comparison
- FAIL: largefile.c -O3 -fomit-frame-pointer -I. (test for excess errors)
- FAIL: gcc.dg/pch/largefile.c -O3 -fomit-frame-pointer assembly comparison
- FAIL: largefile.c -O3 -g -I. (test for excess errors)
- FAIL: gcc.dg/pch/largefile.c -O3 -g assembly comparison
- FAIL: largefile.c -Os -I. (test for excess errors)
- FAIL: gcc.dg/pch/largefile.c -Os assembly comparison
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/special/mips-abi.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/special/special.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/struct/struct-reorg.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/tls/tls.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/torture/dg-torture.exp ...
- FAIL: gcc.dg/torture/fp-int-convert-float128.c -O0 (test for excess errors)
- FAIL: gcc.dg/torture/fp-int-convert-float128.c -O1 (test for excess errors)
- FAIL: gcc.dg/torture/fp-int-convert-float128.c -O2 (test for excess errors)
- FAIL: gcc.dg/torture/fp-int-convert-float128.c -O3 -fomit-frame-pointer (test for excess errors)
- FAIL: gcc.dg/torture/fp-int-convert-float128.c -O3 -g (test for excess errors)
- FAIL: gcc.dg/torture/fp-int-convert-float128.c -Os (test for excess errors)
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/torture/stackalign/stackalign.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/tree-prof/tree-prof.exp ...
- Running /home/tschwinge/tmp/gcc/trunk.work/gcc/testsuite/gcc.dg/tree-ssa/tree-ssa.exp ...
- XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times optimized "link_error" 0
diff --git a/open_issues/unit_testing.mdwn b/open_issues/unit_testing.mdwn
index 15c87abd..b9fb3700 100644
--- a/open_issues/unit_testing.mdwn
+++ b/open_issues/unit_testing.mdwn
@@ -18,7 +18,7 @@ abandoned).
* [DejaGnu](http://www.gnu.org/software/dejagnu/) /
[Expect](http://expect.nist.gov/)
- * used by the [[GCC_testsuite]], [[GDB_testsuite]],
+ * used by the [[GCC testsuite|gcc/testsuite]], [[GDB_testsuite]],
[[binutils testsuite|binutils/testsuite]], etc.
* The [[glibc_testsuite]] has a home-grown system (Makefile-based), likewise
diff --git a/source_repositories.mdwn b/source_repositories.mdwn
index 214dc0b4..610bc01b 100644
--- a/source_repositories.mdwn
+++ b/source_repositories.mdwn
@@ -244,6 +244,7 @@ really need to, you can clone it like this:
* [[binutils]]
* [[Boehm_GC]]
+ * [[GCC]]
# Debian Git repositories
diff --git a/source_repositories/gcc.mdwn b/source_repositories/gcc.mdwn
new file mode 100644
index 00000000..899adc30
--- /dev/null
+++ b/source_repositories/gcc.mdwn
@@ -0,0 +1,15 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+There is a repository for maintenance of [[/GCC]] for the Hurd's needs:
+`grubber:~tschwinge/tmp/gcc/git`.
+
+This repository uses [[TopGit]] and is based on
+.
--
cgit v1.2.3
From b2acb484a566c59e759a0a480b1963c491642ece Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 19 Nov 2010 19:01:33 +0100
Subject: open_issues/gcc/testsuite: Continue.
---
open_issues/gcc/testsuite.mdwn | 117 +-
open_issues/gcc/testsuite/log_build-diff | 3509 +++++++++++++++++++++++++
open_issues/gcc/testsuite/log_build-hurd.sed | 11 +
open_issues/gcc/testsuite/log_build-linux.sed | 10 +
4 files changed, 3644 insertions(+), 3 deletions(-)
create mode 100644 open_issues/gcc/testsuite/log_build-diff
create mode 100644 open_issues/gcc/testsuite/log_build-hurd.sed
create mode 100644 open_issues/gcc/testsuite/log_build-linux.sed
diff --git a/open_issues/gcc/testsuite.mdwn b/open_issues/gcc/testsuite.mdwn
index a88b7d61..64e3e162 100644
--- a/open_issues/gcc/testsuite.mdwn
+++ b/open_issues/gcc/testsuite.mdwn
@@ -23,12 +23,123 @@ fe3e43c5e4ac1225921be12c32dbb48151af1f66 (2010-11-17)
(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
harmonized.)
-On grubber, this takes roughly TODO minutes, and takes up 2.5 GiB.
+On grubber, this takes roughly 27 hours, and takes up 2.5 GiB.
- $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/hurd.build/ && cat log_build* | sed -e "s%${PWD}%[...]%g"') <(ssh grubber 'cd tmp/gcc/hurd.build/ && cat log_build* | sed "s%${PWD}%[...]%g"') > open_issues/gcc/log_build-diff
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd.build/log_build* | sed -e "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/testsuite/log_build-linux.sed) <(ssh grubber 'cd tmp/gcc/ && cat hurd.build/log_build* | sed "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/testsuite/log_build-hurd.sed) > open_issues/gcc/testsuite/log_build-diff
[[log_build-diff]].
-TODO.
+Analysis of most issues:
+
+ * [*checking if gcc static flag -static
+ works... no*|glibc_madvise_vs_static_linking]
+
+ * DFP
+
+ +configure: WARNING: decimal float is not supported for this target, ignored
+
+ ... and later on:
+
+ -checking for decimal floating point... bid
+ +checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
+ +dpd
+
+ ... and later on:
+
+ -checking whether decimal floating point is supported... yes
+ +checking whether decimal floating point is supported... no
+ +configure: WARNING: decimal float is not supported for this target, ignored
+
+ * `host-linux.c` vs. `host-default.c`
+
+ * *fixincludes* stuff
+
+ * malloc?
+
+ -cat ../../hurd/gcc/config/i386/pmm_malloc.h > mm_malloc.h
+ +cat ../../hurd/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+
+ * *libgomp*
+
+ * `libgomp/config/linux/`, `libgomp/config/linux/x86`
+
+ * `-ftls-model=initial-exec -march=i486 -mtune=i686`
+
+ * `-static` vs. `dlopen`
+
+ -checking whether a statically linked program can dlopen itself... no
+ +checking whether a statically linked program can dlopen itself... yes
+
+ * ISO/IEC TR 24733
+
+ -checking for ISO/IEC TR 24733 ... yes$
+ +checking for ISO/IEC TR 24733 ... no$
+
+ * `basic_file.cc`
+
+ +basic_file.cc: In member function 'std::streamsize std::__basic_file::showmanyc()':
+ +basic_file.cc:344:33: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+
+ * `libtool: link: ar rc .libs/libstdc++.a [...]`
+
+ Just different order of object files, or another problem?
+
+ * `gcc/gthr-posix.h`
+
+ +In file included from ../.././gcc/gthr-default.h:1:0,
+ + from [...]/hurd/libobjc/../gcc/gthr.h:162,
+ + from [...]/hurd/libobjc/thr.c:43:
+ +[...]/hurd/libobjc/../gcc/gthr-posix.h: In function '__gthread_objc_thread_set_priority':
+ +[...]/hurd/libobjc/../gcc/gthr-posix.h:384:41: warning: unused parameter 'priority' [-Wunused-parameter]
+
+ * `java-signal.h`, `java-signal-aux.h`
+
+ -config.status: linking ../../../hurd/libjava/include/i386-signal.h to include/java-signal.h
+ -config.status: linking ../../../hurd/libjava/include/i386-signal.h to include/java-signal-aux.h
+ +config.status: linking ../../../hurd/libjava/include/default-signal.h to include/java-signal.h
+ +config.status: linking ../../../hurd/libjava/include/default-signal.h to include/java-signal-aux.h
+
+ * `jni_md.h`
+
+ -checking jni_md.h support... yes
+ +checking jni_md.h support... configure: WARNING: no
+
+ * *default library search path*
+
+ -checking for the default library search path... /lib /usr/lib /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/local/lib
+ +checking for the default library search path... /lib /usr/lib
+
+ * `./classpath/[...]/*.properties`
+
+ Just different order of files, or another problem?
+
+ * `libjava/gnu/gcj/util/natGCInfo.cc`
+
+ +../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:440:1: warning: unused parameter 'name' [-Wunused-parameter]
+ +../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:446:1: warning: unused parameter 'name' [-Wunused-parameter]
+ +../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:452:1: warning: unused parameter 'name' [-Wunused-parameter]
+ * `gnu/java/net/natPlainSocketImpl.cc`
+
+ +gnu/java/net/natPlainSocketImpl.cc: In member function 'virtual jint gnu::java::net::PlainSocketImpl::available()':
+ +gnu/java/net/natPlainSocketImpl.cc:515:27: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+
+ * `gnu/java/nio/channels/natFileChannelImpl.cc`
+
+ +gnu/java/nio/channels/natFileChannelImpl.cc: In member function 'jint gnu::java::nio::channels::FileChannelImpl::available()':
+ +gnu/java/nio/channels/natFileChannelImpl.cc:388:20: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+
+ * `libgcj.la`, `.libs/libgcj.a`
+
+ Just different order of object files, or another problem?
+
+ Is there a pattern that GNU/Hurd hands out the files alphabetically sorted
+ where it wouldn't need to ([[!taglink open_issue_hurd]])?
+
+ * `libjvm.la`, `.libs/libjvm.so`, `libgij.la`, `.libs/libgij.so.12.0.0`
+
+ `-Wl,-Bsymbolic` vs. `-Wl,-Bsymbolic-functions`
+
+ $ make SHELL=/bin/bash -k check 2>&1 | tee log_check
+ [...]
diff --git a/open_issues/gcc/testsuite/log_build-diff b/open_issues/gcc/testsuite/log_build-diff
new file mode 100644
index 00000000..738785d9
--- /dev/null
+++ b/open_issues/gcc/testsuite/log_build-diff
@@ -0,0 +1,3509 @@
+--- /dev/fd/63 2010-11-19 18:35:48.919670637 +0100
++++ /dev/fd/62 2010-11-19 18:35:48.919670637 +0100
+@@ -311,6 +311,7 @@
+ checking valgrind.h usability... no
+ checking valgrind.h presence... no
+ checking for valgrind.h... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ configure: WARNING: fixed-point is not supported for this target, ignored
+ checking whether make sets $(MAKE)... yes
+ checking for gawk... gawk
+@@ -376,7 +377,7 @@
+ checking for mbstowcs... yes
+ checking for wcswidth... yes
+ checking for mmap... yes
+-checking for mincore... yes
++checking for mincore... no
+ checking for setlocale... yes
+ checking for clearerr_unlocked... yes
+ checking for feof_unlocked... yes
+@@ -470,7 +471,6 @@
+ Using the following target machine macro files:
+ ../../hurd/gcc/config/vxworks-dummy.h
+ ../../hurd/gcc/config/i386/i386.h
+- ../../hurd/gcc/config/linux-android.h
+ ../../hurd/gcc/config/i386/unix.h
+ ../../hurd/gcc/config/i386/att.h
+ ../../hurd/gcc/config/dbxelf.h
+@@ -479,7 +479,9 @@
+ ../../hurd/gcc/config/linux.h
+ ../../hurd/gcc/config/glibc-stdint.h
+ ../../hurd/gcc/config/i386/linux.h
+-Using host-linux.o for host machine hooks.
++ ../../hurd/gcc/config/gnu.h
++ ../../hurd/gcc/config/i386/gnu.h
++Using host-default.o for host machine hooks.
+ checking for __cxa_atexit... yes
+ checking whether NLS is requested... yes
+ checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
+@@ -491,7 +493,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -507,12 +509,12 @@
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -524,11 +526,11 @@
+ checking whether the g++ linker (ld) supports shared libraries... yes
+ checking for g++ option to produce PIC... -fPIC -DPIC
+ checking if g++ PIC flag -fPIC -DPIC works... yes
+-checking if g++ static flag -static works... yes
++checking if g++ static flag -static works... no
+ checking if g++ supports -c -o file.o... yes
+ checking if g++ supports -c -o file.o... (cached) yes
+ checking whether the g++ linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for as... /usr/bin/as
+ checking what assembler to use... /usr/bin/as
+@@ -541,7 +543,7 @@
+ checking what objdump to use... /usr/bin/objdump
+ checking for readelf... /usr/bin/readelf
+ checking what readelf to use... /usr/bin/readelf
+-checking assembler flags... --32
++checking assembler flags...
+ checking assembler for .balign and .p2align... yes
+ checking assembler for .p2align with maximum skip... yes
+ checking assembler for .literal16... no
+@@ -670,7 +672,7 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+@@ -744,13 +746,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -765,7 +767,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -1105,7 +1107,7 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+@@ -1179,13 +1181,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -1200,7 +1202,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -1615,7 +1617,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -1642,12 +1644,12 @@
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -1958,7 +1960,8 @@
+ checking build system type... [ARCH]
+ checking host system type... [ARCH]
+ checking target system type... [ARCH]
+-checking for decimal floating point... bid
++checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
++dpd
+ checking whether byte ordering is bigendian... no
+ configure: updating cache ./config.cache
+ configure: creating ./config.status
+@@ -1971,12 +1974,8 @@
+ source='../../hurd/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal32.c
+ source='../../hurd/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal64.c
+ source='../../hurd/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal128.c
+-source='../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c
+-source='../../hurd/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee32.c
+-source='../../hurd/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee64.c
+-source='../../hurd/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee128.c
+ rm -f libdecnumber.a
+-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
++ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
+ ranlib libdecnumber.a
+ make[3]: Leaving directory `/media/data[...]/hurd.build/libdecnumber'
+ make[3]: Entering directory `/media/data[...]/hurd.build/gcc'
+@@ -2036,9 +2035,9 @@
+ HEADERS="auto-host.h ansidecl.h" DEFINES="" \
+ /bin/bash ../../hurd/gcc/mkconfig.sh config.h
+ TARGET_CPU_DEFAULT="" \
+- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
++ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
+ /bin/bash ../../hurd/gcc/mkconfig.sh tm.h
+-gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt ../../hurd/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt > tmp-optionlist
+ /bin/bash ../../hurd/gcc/../move-if-change tmp-optionlist optionlist
+ echo timestamp > s-options
+ gawk -f ../../hurd/gcc/opt-functions.awk -f ../../hurd/gcc/opth-gen.awk \
+@@ -2788,8 +2787,7 @@
+ ../../hurd/gcc/config/i386/i386.c: In function 'ix86_handle_fndecl_attribute':
+ ../../hurd/gcc/config/i386/i386.c:29119: warning: unknown conversion type character 'E' in format
+ ../../hurd/gcc/config/i386/i386.c:29119: warning: too many arguments for format
+-gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber \
+- ../../hurd/gcc/config/host-linux.c
++gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/host-default.c -o host-default.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraph.c -o cgraph.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphbuild.c -o cgraphbuild.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphunit.c -o cgraphunit.o
+@@ -2819,7 +2817,7 @@
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/tree-nomudflap.c -o tree-nomudflap.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/varpool.c -o varpool.o
+ rm -rf libbackend.a
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+ ranlib libbackend.a
+ build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
+ checksum-options > cc1-checksum.c.tmp && \
+@@ -2970,89 +2968,39 @@
+ done; \
+ fi
+ Fixing headers into [...]/hurd.build/gcc/include-fixed for [ARCH] target
+-Forbidden identifiers: i386 linux unix
++Forbidden identifiers: MACH i386 unix
+ Finding directories and links to directories
+ Searching /usr/include/.
+ Searching /usr/include/./libpng
++ Searching /usr/include/./mach/machine
+ Searching /usr/include/./c++/4.4.5
+ Making symbolic directory links
+ Fixing directory /usr/include into [...]/hurd.build/gcc/include-fixed
+-Applying machine_name to openssl/bn.h
+-Fixed: openssl/bn.h
+-Applying machine_name to openssl/e_os2.h
+-Applying sysv68_string to string.h
+-Applying sun_malloc to malloc.h
+-Applying pthread_incomplete_struct_argument to pthread.h
+-Applying io_quotes_use to sound/asound.h
+-Applying io_quotes_use to sound/asequencer.h
+-Applying io_quotes_use to sound/emu10k1.h
+-Applying glibc_stdint to stdint.h
++Applying io_quotes_def to bits/ioctls.h
+ Applying io_quotes_def to glib-2.0/gio/gmountoperation.h
+-Applying io_quotes_use to linux/i2o-dev.h
+-Applying io_quotes_use to linux/raw.h
+-Applying io_quotes_use to linux/fs.h
+-Applying io_quotes_use to linux/spi/spidev.h
+-Applying io_quotes_use to linux/gigaset_dev.h
+-Applying io_quotes_use to linux/aufs_type.h
+-Applying io_quotes_use to linux/mmtimer.h
+-Applying io_quotes_use to linux/cm4000_cs.h
+-Applying io_quotes_use to linux/phantom.h
+-Applying io_quotes_use to linux/ipmi.h
+-Applying io_quotes_use to linux/usb/tmc.h
+-Applying io_quotes_use to linux/usb/vstusb.h
+-Applying io_quotes_use to linux/random.h
+-Applying io_quotes_use to linux/if_pppox.h
+-Applying io_quotes_use to linux/fd.h
+-Applying io_quotes_use to linux/auto_fs4.h
+-Applying io_quotes_use to linux/blkpg.h
+-Applying io_quotes_use to linux/ppdev.h
+-Applying io_quotes_use to linux/input.h
+-Applying io_quotes_use to linux/dm-ioctl.h
+-Applying io_quotes_use to linux/cciss_ioctl.h
+-Applying io_quotes_use to linux/raid/md_u.h
+-Applying io_quotes_use to linux/agpgart.h
+-Applying io_quotes_use to linux/dn.h
+-Applying io_quotes_use to linux/rfkill.h
+-Applying io_quotes_use to linux/auto_fs.h
+-Applying io_quotes_def to linux/soundcard.h
+-Applying io_quotes_def to linux/version.h
+-Applying io_quotes_use to linux/atmbr2684.h
+-Applying io_quotes_use to linux/nbd.h
+-Applying io_quotes_use to linux/uinput.h
+-Applying io_quotes_use to linux/reiserfs_fs.h
+-Applying io_quotes_use to linux/videotext.h
+-Applying io_quotes_use to linux/synclink.h
+-Applying io_quotes_use to linux/kvm.h
+-Applying machine_name to linux/a.out.h
+-Fixed: linux/a.out.h
+-Applying io_quotes_def to linux/pci_regs.h
+-Applying io_quotes_use to linux/watchdog.h
+-Applying io_quotes_def to linux/ppp-comp.h
+-Applying io_quotes_use to linux/pktcdvd.h
+-Applying io_quotes_use to linux/suspend_ioctls.h
++Applying glibc_stdint to stdint.h
++Applying ctrl_quotes_def to readline/chardefs.h
++Applying sun_malloc to malloc.h
++Applying machine_name to a.out.h
++Fixed: a.out.h
++Applying io_quotes_def to libIDL-2.0/libIDL/IDL.h
++Applying io_quotes_use to libIDL-2.0/libIDL/IDL.h
++Applying io_quotes_def to mach/i386/ioccom.h
++Fixed: mach/i386/ioccom.h
++Applying ctrl_quotes_def to dialog.h
++Applying hpux8_bogus_inlines to math.h
+ Applying machine_name to X11/Xw32defs.h
+ Fixed: X11/Xw32defs.h
+-Applying machine_name to freetype2/freetype/config/ftconfig.h
+-Fixed: freetype2/freetype/config/ftconfig.h
+-Quoted includes in freetype2/freetype/config/ftconfig.h
+-Applying io_quotes_use to video/sisfb.h
+-Applying ctrl_quotes_def to dialog.h
+-Applying io_quotes_def to c++/4.4/parallel/settings.h
++Applying io_quotes_def to X11/Xmu/Atoms.h
+ Applying io_quotes_def to c++/4.4/parallel/multiway_merge.h
+-Applying io_quotes_use to sys/raw.h
+-Applying io_quotes_use to sys/mount.h
+-Applying hpux8_bogus_inlines to math.h
+-Applying stdio_va_list_clients to krb5.h
++Applying io_quotes_def to c++/4.4/parallel/settings.h
++Applying sysv68_string to string.h
+ Applying io_quotes_def to gtk-2.0/gtk/gtkmountoperation.h
+-Applying io_quotes_use to rdma/ib_user_mad.h
+-Applying io_quotes_use to asm/mtrr.h
+-Applying io_quotes_use to mtd/ubi-user.h
+-Applying ctrl_quotes_def to readline/chardefs.h
+ Cleaning up unneeded directories:
+ fixincludes is done
+ echo timestamp > stmp-fixinc
+ rm -f mm_malloc.h
+-cat ../../hurd/gcc/config/i386/pmm_malloc.h > mm_malloc.h
++cat ../../hurd/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+ if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
+ if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
+ for file in .. ../../hurd/gcc/ginclude/float.h ../../hurd/gcc/ginclude/iso646.h ../../hurd/gcc/ginclude/stdarg.h ../../hurd/gcc/ginclude/stdbool.h ../../hurd/gcc/ginclude/stddef.h ../../hurd/gcc/ginclude/varargs.h ../../hurd/gcc/ginclude/stdfix.h ../../hurd/gcc/config/i386/cpuid.h ../../hurd/gcc/config/i386/mmintrin.h ../../hurd/gcc/config/i386/mm3dnow.h ../../hurd/gcc/config/i386/xmmintrin.h ../../hurd/gcc/config/i386/emmintrin.h ../../hurd/gcc/config/i386/pmmintrin.h ../../hurd/gcc/config/i386/tmmintrin.h ../../hurd/gcc/config/i386/ammintrin.h ../../hurd/gcc/config/i386/smmintrin.h ../../hurd/gcc/config/i386/nmmintrin.h ../../hurd/gcc/config/i386/bmmintrin.h ../../hurd/gcc/config/i386/fma4intrin.h ../../hurd/gcc/config/i386/wmmintrin.h ../../hurd/gcc/config/i386/immintrin.h ../../hurd/gcc/config/i386/x86intrin.h ../../hurd/gcc/config/i386/avxintrin.h ../../hurd/gcc/config/i386/xopintrin.h ../../hurd/gcc/config/i386/ia32intrin.h ../../hurd/gcc/config/i386/cross-stdarg.h ../../hurd/gcc/config/i386/lwpintrin.h ../../hurd/gcc/config/i386/popcntintrin.h ../../hurd/gcc/config/i386/abmintrin.h ../../hurd/gcc/config/i386/bmiintrin.h ../../hurd/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
+@@ -3232,7 +3180,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -3259,12 +3207,12 @@
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -3327,7 +3275,8 @@
+ checking whether [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include accepts -g... yes
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
+ checking how to run the C preprocessor... [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -E
+-checking whether decimal floating point is supported... yes
++checking whether decimal floating point is supported... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ checking whether fixed-point is supported... no
+ checking whether assembler supports CFI directives... yes
+ checking for __attribute__((visibility("hidden")))... yes
+@@ -3530,136 +3479,6 @@
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../hurd/libgcc/../gcc/libgcc2.c \
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_globals.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_data.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../hurd/libgcc/config/libbid/bid_binarydecimal.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../hurd/libgcc/config/libbid/bid_convert_data.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../hurd/libgcc/config/libbid/_isinfd32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../hurd/libgcc/config/libbid/_isinfd64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../hurd/libgcc/config/libbid/_isinfd128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid64_noncomp.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid128_noncomp.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../hurd/libgcc/config/libbid/bid128_fma.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../hurd/libgcc/config/libbid/bid_round.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../hurd/libgcc/config/libbid/bid_from_int.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../hurd/libgcc/config/libbid/bid64_add.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../hurd/libgcc/config/libbid/bid128_add.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../hurd/libgcc/config/libbid/bid64_div.c
+-../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
+-../../../hurd/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
+-../../../hurd/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
+-../../../hurd/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../hurd/libgcc/config/libbid/bid128_div.c
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../hurd/libgcc/config/libbid/bid64_mul.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../hurd/libgcc/config/libbid/bid128_mul.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../hurd/libgcc/config/libbid/bid64_compare.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../hurd/libgcc/config/libbid/bid128_compare.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../hurd/libgcc/config/libbid/bid128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_bid128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_addsub_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_div_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_mul_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_eq_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ne_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_lt_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_gt_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_le_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ge_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_si.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_di.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_usi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_udi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_si_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_di_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_usi_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_udi_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_sf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_df.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_xf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_tf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sf_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_df_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_xf_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_tf_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_unord_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_addsub_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_div_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_mul_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_eq_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ne_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_lt_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_gt_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_le_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ge_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_si.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_di.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_usi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_udi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_si_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_di_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_usi_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_udi_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_df.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_xf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_tf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_sf_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_df_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_xf_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_tf_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_unord_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_addsub_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_div_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_mul_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_eq_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ne_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_lt_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_gt_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_le_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ge_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_si.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_di.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_usi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_udi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_si_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_di_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_usi_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_udi_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_df.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_xf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_tf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_sf_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_df_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_xf_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_tf_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_unord_td.c
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
+@@ -3716,7 +3535,7 @@
+ mv -f morestack.visT morestack.vis
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../hurd/libgcc/config/i386/morestack.S
+ rm -f libgcc.a
+-objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
++objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
+ if test -z "$objects"; then \
+ echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
+@@ -4021,7 +3840,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -4047,12 +3866,12 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -4223,7 +4042,7 @@
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libgomp -I../../../hurd/libgomp/config/posix -I../../../hurd/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../hurd/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
+ mv -f .deps/affinity.Tpo .deps/affinity.Plo
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../hurd/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd.build.install/bin" -rpath [...]/hurd.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+-libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
++libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+ libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
+ libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
+ libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
+@@ -4486,6 +4305,7 @@
+ checking valgrind.h usability... no
+ checking valgrind.h presence... no
+ checking for valgrind.h... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ configure: WARNING: fixed-point is not supported for this target, ignored
+ checking whether make sets $(MAKE)... yes
+ checking for gawk... gawk
+@@ -4551,7 +4371,7 @@
+ checking for mbstowcs... yes
+ checking for wcswidth... yes
+ checking for mmap... yes
+-checking for mincore... yes
++checking for mincore... no
+ checking for setlocale... yes
+ checking for clearerr_unlocked... yes
+ checking for feof_unlocked... yes
+@@ -4645,7 +4465,6 @@
+ Using the following target machine macro files:
+ ../../hurd/gcc/config/vxworks-dummy.h
+ ../../hurd/gcc/config/i386/i386.h
+- ../../hurd/gcc/config/linux-android.h
+ ../../hurd/gcc/config/i386/unix.h
+ ../../hurd/gcc/config/i386/att.h
+ ../../hurd/gcc/config/dbxelf.h
+@@ -4654,7 +4473,9 @@
+ ../../hurd/gcc/config/linux.h
+ ../../hurd/gcc/config/glibc-stdint.h
+ ../../hurd/gcc/config/i386/linux.h
+-Using host-linux.o for host machine hooks.
++ ../../hurd/gcc/config/gnu.h
++ ../../hurd/gcc/config/i386/gnu.h
++Using host-default.o for host machine hooks.
+ checking for __cxa_atexit... yes
+ checking whether NLS is requested... yes
+ checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
+@@ -4666,7 +4487,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -4682,12 +4503,12 @@
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -4699,11 +4520,11 @@
+ checking whether the g++ linker (ld) supports shared libraries... yes
+ checking for g++ option to produce PIC... -fPIC -DPIC
+ checking if g++ PIC flag -fPIC -DPIC works... yes
+-checking if g++ static flag -static works... yes
++checking if g++ static flag -static works... no
+ checking if g++ supports -c -o file.o... yes
+ checking if g++ supports -c -o file.o... (cached) yes
+ checking whether the g++ linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for as... /usr/bin/as
+ checking what assembler to use... /usr/bin/as
+@@ -4716,7 +4537,7 @@
+ checking what objdump to use... /usr/bin/objdump
+ checking for readelf... /usr/bin/readelf
+ checking what readelf to use... /usr/bin/readelf
+-checking assembler flags... --32
++checking assembler flags...
+ checking assembler for .balign and .p2align... yes
+ checking assembler for .p2align with maximum skip... yes
+ checking assembler for .literal16... no
+@@ -4845,7 +4666,7 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+@@ -4919,13 +4740,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -4940,7 +4761,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -5255,7 +5076,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -5282,12 +5103,12 @@
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -5598,7 +5419,8 @@
+ checking build system type... [ARCH]
+ checking host system type... [ARCH]
+ checking target system type... [ARCH]
+-checking for decimal floating point... bid
++checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
++dpd
+ checking whether byte ordering is bigendian... no
+ configure: updating cache ./config.cache
+ configure: creating ./config.status
+@@ -5611,12 +5433,8 @@
+ source='../../hurd/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal32.c
+ source='../../hurd/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal64.c
+ source='../../hurd/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal128.c
+-source='../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c
+-source='../../hurd/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee32.c
+-source='../../hurd/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee64.c
+-source='../../hurd/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee128.c
+ rm -f libdecnumber.a
+-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
++ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
+ ranlib libdecnumber.a
+ make[3]: Leaving directory `/media/data[...]/hurd.build/libdecnumber'
+ make[3]: Entering directory `/media/data[...]/hurd.build/gcc'
+@@ -5676,9 +5494,9 @@
+ HEADERS="auto-host.h ansidecl.h" DEFINES="" \
+ /bin/bash ../../hurd/gcc/mkconfig.sh config.h
+ TARGET_CPU_DEFAULT="" \
+- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
++ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
+ /bin/bash ../../hurd/gcc/mkconfig.sh tm.h
+-gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt ../../hurd/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt > tmp-optionlist
+ /bin/bash ../../hurd/gcc/../move-if-change tmp-optionlist optionlist
+ echo timestamp > s-options
+ gawk -f ../../hurd/gcc/opt-functions.awk -f ../../hurd/gcc/opth-gen.awk \
+@@ -6302,8 +6120,7 @@
+ echo timestamp > s-i386-bt
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber \
+ ../../hurd/gcc/config/i386/i386.c -o i386.o
+-[...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber \
+- ../../hurd/gcc/config/host-linux.c
++[...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/host-default.c -o host-default.o
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraph.c -o cgraph.o
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphbuild.c -o cgraphbuild.o
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphunit.c -o cgraphunit.o
+@@ -6333,7 +6150,7 @@
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/tree-nomudflap.c -o tree-nomudflap.o
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/varpool.c -o varpool.o
+ rm -rf libbackend.a
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+ ranlib libbackend.a
+ build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
+ checksum-options > cc1-checksum.c.tmp && \
+@@ -6624,7 +6441,7 @@
+ make[4]: Leaving directory `/media/data[...]/hurd.build/prev-gcc'
+ echo timestamp > stmp-fixinc
+ rm -f mm_malloc.h
+-cat ../../hurd/gcc/config/i386/pmm_malloc.h > mm_malloc.h
++cat ../../hurd/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+ if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
+ if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
+ for file in .. ../../hurd/gcc/ginclude/float.h ../../hurd/gcc/ginclude/iso646.h ../../hurd/gcc/ginclude/stdarg.h ../../hurd/gcc/ginclude/stdbool.h ../../hurd/gcc/ginclude/stddef.h ../../hurd/gcc/ginclude/varargs.h ../../hurd/gcc/ginclude/stdfix.h ../../hurd/gcc/config/i386/cpuid.h ../../hurd/gcc/config/i386/mmintrin.h ../../hurd/gcc/config/i386/mm3dnow.h ../../hurd/gcc/config/i386/xmmintrin.h ../../hurd/gcc/config/i386/emmintrin.h ../../hurd/gcc/config/i386/pmmintrin.h ../../hurd/gcc/config/i386/tmmintrin.h ../../hurd/gcc/config/i386/ammintrin.h ../../hurd/gcc/config/i386/smmintrin.h ../../hurd/gcc/config/i386/nmmintrin.h ../../hurd/gcc/config/i386/bmmintrin.h ../../hurd/gcc/config/i386/fma4intrin.h ../../hurd/gcc/config/i386/wmmintrin.h ../../hurd/gcc/config/i386/immintrin.h ../../hurd/gcc/config/i386/x86intrin.h ../../hurd/gcc/config/i386/avxintrin.h ../../hurd/gcc/config/i386/xopintrin.h ../../hurd/gcc/config/i386/ia32intrin.h ../../hurd/gcc/config/i386/cross-stdarg.h ../../hurd/gcc/config/i386/lwpintrin.h ../../hurd/gcc/config/i386/popcntintrin.h ../../hurd/gcc/config/i386/abmintrin.h ../../hurd/gcc/config/i386/bmiintrin.h ../../hurd/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
+@@ -6876,7 +6693,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -6903,12 +6720,12 @@
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -6971,7 +6788,8 @@
+ checking whether [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include accepts -g... yes
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
+ checking how to run the C preprocessor... [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -E
+-checking whether decimal floating point is supported... yes
++checking whether decimal floating point is supported... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ checking whether fixed-point is supported... no
+ checking whether assembler supports CFI directives... yes
+ checking for __attribute__((visibility("hidden")))... yes
+@@ -7174,136 +6992,6 @@
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../hurd/libgcc/../gcc/libgcc2.c \
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_globals.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_data.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../hurd/libgcc/config/libbid/bid_binarydecimal.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../hurd/libgcc/config/libbid/bid_convert_data.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../hurd/libgcc/config/libbid/_isinfd32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../hurd/libgcc/config/libbid/_isinfd64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../hurd/libgcc/config/libbid/_isinfd128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid64_noncomp.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid128_noncomp.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../hurd/libgcc/config/libbid/bid128_fma.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../hurd/libgcc/config/libbid/bid_round.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../hurd/libgcc/config/libbid/bid_from_int.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../hurd/libgcc/config/libbid/bid64_add.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../hurd/libgcc/config/libbid/bid128_add.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../hurd/libgcc/config/libbid/bid64_div.c
+-../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
+-../../../hurd/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
+-../../../hurd/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
+-../../../hurd/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../hurd/libgcc/config/libbid/bid128_div.c
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../hurd/libgcc/config/libbid/bid64_mul.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../hurd/libgcc/config/libbid/bid128_mul.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../hurd/libgcc/config/libbid/bid64_compare.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../hurd/libgcc/config/libbid/bid128_compare.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../hurd/libgcc/config/libbid/bid128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_bid128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_addsub_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_div_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_mul_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_eq_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ne_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_lt_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_gt_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_le_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ge_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_si.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_di.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_usi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_udi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_si_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_di_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_usi_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_udi_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_sf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_df.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_xf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_tf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sf_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_df_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_xf_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_tf_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_unord_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_addsub_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_div_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_mul_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_eq_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ne_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_lt_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_gt_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_le_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ge_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_si.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_di.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_usi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_udi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_si_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_di_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_usi_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_udi_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_df.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_xf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_tf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_sf_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_df_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_xf_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_tf_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_unord_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_addsub_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_div_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_mul_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_eq_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ne_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_lt_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_gt_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_le_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ge_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_si.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_di.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_usi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_udi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_si_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_di_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_usi_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_udi_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_df.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_xf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_tf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_sf_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_df_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_xf_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_tf_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_unord_td.c
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
+@@ -7360,7 +7048,7 @@
+ mv -f morestack.visT morestack.vis
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../hurd/libgcc/config/i386/morestack.S
+ rm -f libgcc.a
+-objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
++objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
+ if test -z "$objects"; then \
+ echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
+@@ -7665,7 +7353,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -7691,12 +7379,12 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -7715,7 +7403,7 @@
+ checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... no
+ checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) no
+ checking whether the [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for ANSI C header files... (cached) yes
+ checking whether time.h and sys/time.h may both be included... yes
+@@ -7878,7 +7566,7 @@
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libgomp -I../../../hurd/libgomp/config/posix -I../../../hurd/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../hurd/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
+ mv -f .deps/affinity.Tpo .deps/affinity.Plo
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../hurd/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd.build.install/bin" -rpath [...]/hurd.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+-libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
++libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+ libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
+ libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
+ libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
+@@ -7931,6 +7619,7 @@
+ fi
+ make[6]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
+ [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -L. -Wall -L../libgfortran -fsyntax-only omp_lib.f90
++:
+ make[5]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
+ make[4]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
+ make[3]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
+@@ -8142,6 +7831,7 @@
+ checking valgrind.h usability... no
+ checking valgrind.h presence... no
+ checking for valgrind.h... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ configure: WARNING: fixed-point is not supported for this target, ignored
+ checking whether make sets $(MAKE)... yes
+ checking for gawk... gawk
+@@ -8207,7 +7897,7 @@
+ checking for mbstowcs... yes
+ checking for wcswidth... yes
+ checking for mmap... yes
+-checking for mincore... yes
++checking for mincore... no
+ checking for setlocale... yes
+ checking for clearerr_unlocked... yes
+ checking for feof_unlocked... yes
+@@ -8301,7 +7991,6 @@
+ Using the following target machine macro files:
+ ../../hurd/gcc/config/vxworks-dummy.h
+ ../../hurd/gcc/config/i386/i386.h
+- ../../hurd/gcc/config/linux-android.h
+ ../../hurd/gcc/config/i386/unix.h
+ ../../hurd/gcc/config/i386/att.h
+ ../../hurd/gcc/config/dbxelf.h
+@@ -8310,7 +7999,9 @@
+ ../../hurd/gcc/config/linux.h
+ ../../hurd/gcc/config/glibc-stdint.h
+ ../../hurd/gcc/config/i386/linux.h
+-Using host-linux.o for host machine hooks.
++ ../../hurd/gcc/config/gnu.h
++ ../../hurd/gcc/config/i386/gnu.h
++Using host-default.o for host machine hooks.
+ checking for __cxa_atexit... yes
+ checking whether NLS is requested... yes
+ checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
+@@ -8322,7 +8013,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -8338,12 +8029,12 @@
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -8355,11 +8046,11 @@
+ checking whether the g++ linker (ld) supports shared libraries... yes
+ checking for g++ option to produce PIC... -fPIC -DPIC
+ checking if g++ PIC flag -fPIC -DPIC works... yes
+-checking if g++ static flag -static works... yes
++checking if g++ static flag -static works... no
+ checking if g++ supports -c -o file.o... yes
+ checking if g++ supports -c -o file.o... (cached) yes
+ checking whether the g++ linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for as... /usr/bin/as
+ checking what assembler to use... /usr/bin/as
+@@ -8372,7 +8063,7 @@
+ checking what objdump to use... /usr/bin/objdump
+ checking for readelf... /usr/bin/readelf
+ checking what readelf to use... /usr/bin/readelf
+-checking assembler flags... --32
++checking assembler flags...
+ checking assembler for .balign and .p2align... yes
+ checking assembler for .p2align with maximum skip... yes
+ checking assembler for .literal16... no
+@@ -8501,7 +8192,7 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+@@ -8575,13 +8266,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -8596,7 +8287,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -8911,7 +8602,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -8938,12 +8629,12 @@
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -9254,7 +8945,8 @@
+ checking build system type... [ARCH]
+ checking host system type... [ARCH]
+ checking target system type... [ARCH]
+-checking for decimal floating point... bid
++checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
++dpd
+ checking whether byte ordering is bigendian... no
+ configure: updating cache ./config.cache
+ configure: creating ./config.status
+@@ -9267,12 +8959,8 @@
+ source='../../hurd/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal32.c
+ source='../../hurd/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal64.c
+ source='../../hurd/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal128.c
+-source='../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c
+-source='../../hurd/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee32.c
+-source='../../hurd/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee64.c
+-source='../../hurd/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee128.c
+ rm -f libdecnumber.a
+-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
++ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
+ ranlib libdecnumber.a
+ make[3]: Leaving directory `/media/data[...]/hurd.build/libdecnumber'
+ make[3]: Entering directory `/media/data[...]/hurd.build/gcc'
+@@ -9332,9 +9020,9 @@
+ HEADERS="auto-host.h ansidecl.h" DEFINES="" \
+ /bin/bash ../../hurd/gcc/mkconfig.sh config.h
+ TARGET_CPU_DEFAULT="" \
+- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
++ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
+ /bin/bash ../../hurd/gcc/mkconfig.sh tm.h
+-gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt ../../hurd/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt > tmp-optionlist
+ /bin/bash ../../hurd/gcc/../move-if-change tmp-optionlist optionlist
+ echo timestamp > s-options
+ gawk -f ../../hurd/gcc/opt-functions.awk -f ../../hurd/gcc/opth-gen.awk \
+@@ -9958,8 +9646,7 @@
+ echo timestamp > s-i386-bt
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber \
+ ../../hurd/gcc/config/i386/i386.c -o i386.o
+-[...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber \
+- ../../hurd/gcc/config/host-linux.c
++[...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/host-default.c -o host-default.o
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraph.c -o cgraph.o
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphbuild.c -o cgraphbuild.o
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphunit.c -o cgraphunit.o
+@@ -9989,7 +9676,7 @@
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/tree-nomudflap.c -o tree-nomudflap.o
+ [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/varpool.c -o varpool.o
+ rm -rf libbackend.a
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+ ranlib libbackend.a
+ build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
+ checksum-options > cc1-checksum.c.tmp && \
+@@ -10280,7 +9967,7 @@
+ make[4]: Leaving directory `/media/data[...]/hurd.build/prev-gcc'
+ echo timestamp > stmp-fixinc
+ rm -f mm_malloc.h
+-cat ../../hurd/gcc/config/i386/pmm_malloc.h > mm_malloc.h
++cat ../../hurd/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+ if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
+ if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
+ for file in .. ../../hurd/gcc/ginclude/float.h ../../hurd/gcc/ginclude/iso646.h ../../hurd/gcc/ginclude/stdarg.h ../../hurd/gcc/ginclude/stdbool.h ../../hurd/gcc/ginclude/stddef.h ../../hurd/gcc/ginclude/varargs.h ../../hurd/gcc/ginclude/stdfix.h ../../hurd/gcc/config/i386/cpuid.h ../../hurd/gcc/config/i386/mmintrin.h ../../hurd/gcc/config/i386/mm3dnow.h ../../hurd/gcc/config/i386/xmmintrin.h ../../hurd/gcc/config/i386/emmintrin.h ../../hurd/gcc/config/i386/pmmintrin.h ../../hurd/gcc/config/i386/tmmintrin.h ../../hurd/gcc/config/i386/ammintrin.h ../../hurd/gcc/config/i386/smmintrin.h ../../hurd/gcc/config/i386/nmmintrin.h ../../hurd/gcc/config/i386/bmmintrin.h ../../hurd/gcc/config/i386/fma4intrin.h ../../hurd/gcc/config/i386/wmmintrin.h ../../hurd/gcc/config/i386/immintrin.h ../../hurd/gcc/config/i386/x86intrin.h ../../hurd/gcc/config/i386/avxintrin.h ../../hurd/gcc/config/i386/xopintrin.h ../../hurd/gcc/config/i386/ia32intrin.h ../../hurd/gcc/config/i386/cross-stdarg.h ../../hurd/gcc/config/i386/lwpintrin.h ../../hurd/gcc/config/i386/popcntintrin.h ../../hurd/gcc/config/i386/abmintrin.h ../../hurd/gcc/config/i386/bmiintrin.h ../../hurd/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
+@@ -10532,7 +10219,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -10559,12 +10246,12 @@
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -10603,7 +10290,6 @@
+ libtool: install: warning: remember to run `libtool --finish [...]/hurd.build.install/libexec/gcc/[ARCH]/4.6.0'
+ make all-am
+ make[4]: Entering directory `/media/data[...]/hurd.build/lto-plugin'
+-make[4]: Nothing to be done for `all-am'.
+ make[4]: Leaving directory `/media/data[...]/hurd.build/lto-plugin'
+ make[3]: Leaving directory `/media/data[...]/hurd.build/lto-plugin'
+ mkdir -p -- [ARCH]/libgcc
+@@ -10627,7 +10313,8 @@
+ checking whether [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include accepts -g... yes
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
+ checking how to run the C preprocessor... [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -E
+-checking whether decimal floating point is supported... yes
++checking whether decimal floating point is supported... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ checking whether fixed-point is supported... no
+ checking whether assembler supports CFI directives... yes
+ checking for __attribute__((visibility("hidden")))... yes
+@@ -10830,136 +10517,6 @@
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../hurd/libgcc/../gcc/libgcc2.c \
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_globals.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_data.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../hurd/libgcc/config/libbid/bid_binarydecimal.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../hurd/libgcc/config/libbid/bid_convert_data.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../hurd/libgcc/config/libbid/_isinfd32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../hurd/libgcc/config/libbid/_isinfd64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../hurd/libgcc/config/libbid/_isinfd128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid64_noncomp.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid128_noncomp.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../hurd/libgcc/config/libbid/bid128_fma.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../hurd/libgcc/config/libbid/bid_round.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../hurd/libgcc/config/libbid/bid_from_int.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../hurd/libgcc/config/libbid/bid64_add.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../hurd/libgcc/config/libbid/bid128_add.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../hurd/libgcc/config/libbid/bid64_div.c
+-../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
+-../../../hurd/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
+-../../../hurd/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
+-../../../hurd/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../hurd/libgcc/config/libbid/bid128_div.c
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
+-../../../hurd/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../hurd/libgcc/config/libbid/bid64_mul.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../hurd/libgcc/config/libbid/bid128_mul.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../hurd/libgcc/config/libbid/bid64_compare.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../hurd/libgcc/config/libbid/bid128_compare.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../hurd/libgcc/config/libbid/bid128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_bid128.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint32.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint64.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_addsub_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_div_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_mul_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_eq_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ne_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_lt_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_gt_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_le_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ge_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_si.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_di.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_usi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_udi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_si_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_di_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_usi_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_udi_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_sf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_df.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_xf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_tf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sf_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_df_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_xf_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_tf_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_unord_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_addsub_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_div_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_mul_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_eq_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ne_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_lt_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_gt_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_le_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ge_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_si.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_di.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_usi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_udi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_si_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_di_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_usi_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_udi_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_df.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_xf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_tf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_sf_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_df_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_xf_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_tf_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_unord_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_addsub_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_div_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_mul_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_eq_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ne_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_lt_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_gt_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_le_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ge_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_si.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_di.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_usi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_udi.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_si_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_di_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_usi_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_udi_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_df.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_xf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_tf.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_sf_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_df_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_xf_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_tf_to_td.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_dd.c
+-[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_unord_td.c
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
+@@ -11016,7 +10573,7 @@
+ mv -f morestack.visT morestack.vis
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../hurd/libgcc/config/i386/morestack.S
+ rm -f libgcc.a
+-objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
++objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
+ if test -z "$objects"; then \
+ echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
+@@ -11321,7 +10878,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -11347,12 +10904,12 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -11371,7 +10928,7 @@
+ checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... no
+ checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) no
+ checking whether the [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for ANSI C header files... (cached) yes
+ checking whether time.h and sys/time.h may both be included... yes
+@@ -11534,7 +11091,7 @@
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libgomp -I../../../hurd/libgomp/config/posix -I../../../hurd/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../hurd/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
+ mv -f .deps/affinity.Tpo .deps/affinity.Plo
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../hurd/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd.build.install/bin" -rpath [...]/hurd.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+-libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
++libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+ libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
+ libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
+ libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
+@@ -11587,6 +11144,7 @@
+ fi
+ make[6]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
+ [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -L. -Wall -L../libgfortran -fsyntax-only omp_lib.f90
++:
+ make[5]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
+ make[4]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
+ make[3]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
+@@ -11598,8 +11156,8 @@
+ make[3]: Leaving directory `/media/data[...]/hurd.build'
+ Comparing stages 2 and 3
+ warning: gcc/cc1-checksum.o differs
+-warning: gcc/cc1obj-checksum.o differs
+ warning: gcc/cc1plus-checksum.o differs
++warning: gcc/cc1obj-checksum.o differs
+ Comparison successful.
+ if false; then \
+ rm -rf stage2-*; \
+@@ -11773,7 +11331,7 @@
+ checking if the linker ([...]/hurd.build/./gcc/collect-ld) is GNU ld... yes
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -11798,19 +11356,19 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... yes
+@@ -11821,11 +11379,11 @@
+ checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for exception model to use... call frame
+ checking for compiler with PCH support... yes
+@@ -11835,7 +11393,7 @@
+ checking for atomic builtins for short... yes
+ checking for atomic builtins for int... yes
+ checking for atomic builtins for long long... yes
+-checking for ISO/IEC TR 24733 ... yes
++checking for ISO/IEC TR 24733 ... no
+ checking for g++ that supports -ffunction-sections -fdata-sections... yes
+ checking for underlying I/O to use... stdio
+ checking for C locale to use... gnu
+@@ -11872,8 +11430,8 @@
+ checking for additional debug build... no
+ checking for parallel mode support... yes
+ checking for extra compiler flags for building...
+-checking for EOWNERDEAD... yes
+-checking for ENOTRECOVERABLE... yes
++checking for EOWNERDEAD... no
++checking for ENOTRECOVERABLE... no
+ checking for ENOLINK... yes
+ checking for EPROTO... yes
+ checking for ENODATA... yes
+@@ -12124,7 +11682,7 @@
+ checking for sys/resource.h... (cached) yes
+ checking for RLIMIT_DATA... yes
+ checking for RLIMIT_RSS... yes
+-checking for RLIMIT_VMEM... no
++checking for RLIMIT_VMEM... yes
+ checking for RLIMIT_AS... yes
+ checking for RLIMIT_FSIZE... yes
+ checking for testsuite resource limits support... yes
+@@ -12269,7 +11827,7 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+@@ -12343,13 +11901,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -12364,7 +11922,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -12403,6 +11961,10 @@
+ mkdir pic; \
+ else true; fi
+ touch stamp-picdir
++CONFIG_FILES= CONFIG_HEADERS=config.h:../../../hurd/libiberty/config.in /bin/bash ./config.status
++config.status: creating config.h
++config.status: config.h is unchanged
++config.status: executing default commands
+ if [ x"" != x ]; then \
+ [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -DHAVE_CONFIG_H -g -O2 -I. -I../../../hurd/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../hurd/libiberty/regex.c -o pic/regex.o; \
+ else true; fi
+@@ -13019,6 +12581,8 @@
+ ln -s [...]/hurd/libstdc++-v3/config/io/basic_file_stdio.cc ./basic_file.cc || true
+ /bin/bash ../libtool --tag CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I[...]/hurd.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o basic_file.lo basic_file.cc
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I[...]/hurd.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -fPIC -DPIC -o .libs/basic_file.o
++basic_file.cc: In member function 'std::streamsize std::__basic_file::showmanyc()':
++basic_file.cc:344:33: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I[...]/hurd.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -o basic_file.o >/dev/null 2>&1
+ ln -s [...]/hurd/libstdc++-v3/config/locale/gnu/c_locale.cc ./c++locale.cc || true
+ /bin/bash ../libtool --tag CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I[...]/hurd.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o c++locale.lo c++locale.cc
+@@ -13051,7 +12615,7 @@
+ libtool: link: (cd ".libs" && rm -f "libstdc++.so.6" && ln -s "libstdc++.so.6.0.15" "libstdc++.so.6")
+ libtool: link: (cd ".libs" && rm -f "libstdc++.so" && ln -s "libstdc++.so.6.0.15" "libstdc++.so")
+ libtool: link: (cd .libs/libstdc++.lax/libsupc++convenience.a && ar x "[...]/hurd.build/[ARCH]/libstdc++-v3/src/../libsupc++/.libs/libsupc++convenience.a")
+-libtool: link: ar rc .libs/libstdc++.a atomic.o bitmap_allocator.o pool_allocator.o mt_allocator.o codecvt.o compatibility.o compatibility-c++0x.o compatibility-debug_list.o compatibility-list.o complex_io.o ctype.o debug.o functexcept.o globals_io.o hash_c++0x.o hash_tr1.o hashtable_c++0x.o hashtable_tr1.o ios.o ios_failure.o ios_init.o ios_locale.o limits.o list.o debug_list.o locale.o locale_init.o locale_facets.o localename.o math_stubs_float.o math_stubs_long_double.o stdexcept.o strstream.o system_error.o tree.o allocator-inst.o concept-inst.o fstream-inst.o ext-inst.o ios-inst.o iostream-inst.o istream-inst.o istream.o locale-inst.o misc-inst.o ostream-inst.o sstream-inst.o streambuf-inst.o streambuf.o string-inst.o valarray-inst.o wlocale-inst.o wstring-inst.o mutex.o condition_variable.o chrono.o thread.o future.o atomicity.o codecvt_members.o collate_members.o ctype_members.o messages_members.o monetary_members.o numeric_members.o time_members.o basic_file.o c++locale.o parallel_list.o parallel_settings.o compatibility-parallel_list.o .libs/libstdc++.lax/libsupc++convenience.a/new_opv.o .libs/libstdc++.lax/libsupc++convenience.a/si_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/del_op.o .libs/libstdc++.lax/libsupc++convenience.a/eh_globals.o .libs/libstdc++.lax/libsupc++convenience.a/enum_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/bad_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/eh_call.o .libs/libstdc++.lax/libsupc++convenience.a/vterminate.o .libs/libstdc++.lax/libsupc++convenience.a/function_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/cp-demangle.o .libs/libstdc++.lax/libsupc++convenience.a/atexit_arm.o .libs/libstdc++.lax/libsupc++convenience.a/eh_throw.o .libs/libstdc++.lax/libsupc++convenience.a/eh_terminate.o .libs/libstdc++.lax/libsupc++convenience.a/guard.o .libs/libstdc++.lax/libsupc++convenience.a/eh_catch.o .libs/libstdc++.lax/libsupc++convenience.a/fundamental_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/hash_bytes.o .libs/libstdc++.lax/libsupc++convenience.a/del_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo.o .libs/libstdc++.lax/libsupc++convenience.a/new_handler.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo2.o .libs/libstdc++.lax/libsupc++convenience.a/pointer_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_ptr.o .libs/libstdc++.lax/libsupc++convenience.a/pmem_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/vec.o .libs/libstdc++.lax/libsupc++convenience.a/eh_arm.o .libs/libstdc++.lax/libsupc++convenience.a/class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_type.o .libs/libstdc++.lax/libsupc++convenience.a/eh_unex_handler.o .libs/libstdc++.lax/libsupc++convenience.a/del_opv.o .libs/libstdc++.lax/libsupc++convenience.a/eh_personality.o .libs/libstdc++.lax/libsupc++convenience.a/pbase_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_aux_runtime.o .libs/libstdc++.lax/libsupc++convenience.a/eh_term_handler.o .libs/libstdc++.lax/libsupc++convenience.a/array_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/new_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/del_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/vmi_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/new_op.o .libs/libstdc++.lax/libsupc++convenience.a/bad_cast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_exception.o .libs/libstdc++.lax/libsupc++convenience.a/bad_typeid.o .libs/libstdc++.lax/libsupc++convenience.a/dyncast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/new_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/pure.o
++libtool: link: ar rc .libs/libstdc++.a atomic.o bitmap_allocator.o pool_allocator.o mt_allocator.o codecvt.o compatibility.o compatibility-c++0x.o compatibility-debug_list.o compatibility-list.o complex_io.o ctype.o debug.o functexcept.o globals_io.o hash_c++0x.o hash_tr1.o hashtable_c++0x.o hashtable_tr1.o ios.o ios_failure.o ios_init.o ios_locale.o limits.o list.o debug_list.o locale.o locale_init.o locale_facets.o localename.o math_stubs_float.o math_stubs_long_double.o stdexcept.o strstream.o system_error.o tree.o allocator-inst.o concept-inst.o fstream-inst.o ext-inst.o ios-inst.o iostream-inst.o istream-inst.o istream.o locale-inst.o misc-inst.o ostream-inst.o sstream-inst.o streambuf-inst.o streambuf.o string-inst.o valarray-inst.o wlocale-inst.o wstring-inst.o mutex.o condition_variable.o chrono.o thread.o future.o atomicity.o codecvt_members.o collate_members.o ctype_members.o messages_members.o monetary_members.o numeric_members.o time_members.o basic_file.o c++locale.o parallel_list.o parallel_settings.o compatibility-parallel_list.o .libs/libstdc++.lax/libsupc++convenience.a/array_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/atexit_arm.o .libs/libstdc++.lax/libsupc++convenience.a/bad_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/bad_cast.o .libs/libstdc++.lax/libsupc++convenience.a/bad_typeid.o .libs/libstdc++.lax/libsupc++convenience.a/class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/del_op.o .libs/libstdc++.lax/libsupc++convenience.a/del_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/del_opv.o .libs/libstdc++.lax/libsupc++convenience.a/del_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/dyncast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/eh_arm.o .libs/libstdc++.lax/libsupc++convenience.a/eh_aux_runtime.o .libs/libstdc++.lax/libsupc++convenience.a/eh_call.o .libs/libstdc++.lax/libsupc++convenience.a/eh_catch.o .libs/libstdc++.lax/libsupc++convenience.a/eh_exception.o .libs/libstdc++.lax/libsupc++convenience.a/eh_globals.o .libs/libstdc++.lax/libsupc++convenience.a/eh_personality.o .libs/libstdc++.lax/libsupc++convenience.a/eh_ptr.o .libs/libstdc++.lax/libsupc++convenience.a/eh_term_handler.o .libs/libstdc++.lax/libsupc++convenience.a/eh_terminate.o .libs/libstdc++.lax/libsupc++convenience.a/eh_throw.o .libs/libstdc++.lax/libsupc++convenience.a/eh_type.o .libs/libstdc++.lax/libsupc++convenience.a/eh_unex_handler.o .libs/libstdc++.lax/libsupc++convenience.a/enum_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/function_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/fundamental_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/guard.o .libs/libstdc++.lax/libsupc++convenience.a/hash_bytes.o .libs/libstdc++.lax/libsupc++convenience.a/new_handler.o .libs/libstdc++.lax/libsupc++convenience.a/new_op.o .libs/libstdc++.lax/libsupc++convenience.a/new_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/new_opv.o .libs/libstdc++.lax/libsupc++convenience.a/new_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/pbase_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pmem_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pointer_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pure.o .libs/libstdc++.lax/libsupc++convenience.a/si_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo2.o .libs/libstdc++.lax/libsupc++convenience.a/vec.o .libs/libstdc++.lax/libsupc++convenience.a/vmi_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/vterminate.o .libs/libstdc++.lax/libsupc++convenience.a/cp-demangle.o
+ libtool: link: ranlib .libs/libstdc++.a
+ libtool: link: rm -fr .libs/libstdc++.lax
+ libtool: link: ( cd ".libs" && rm -f "libstdc++.la" && ln -s "../libstdc++.la" "libstdc++.la" )
+@@ -13270,7 +12834,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -13285,19 +12849,19 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... yes
+@@ -13510,7 +13074,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -13525,12 +13089,12 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -13708,7 +13272,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -13734,12 +13298,12 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -14220,7 +13784,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -14246,19 +13810,19 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... yes
+@@ -14275,7 +13839,7 @@
+ checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... no
+ checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) no
+ checking whether the [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether the GNU Fortran compiler is working... yes
+ checking for special C compiler options needed for large files... no
+@@ -17158,7 +16722,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -17184,12 +16748,12 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -17201,11 +16765,11 @@
+ checking whether the [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for thread model used by GCC... posix
+ checking for dlopen in -ldl... yes
+@@ -17262,7 +16826,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -17289,12 +16853,12 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -17605,6 +17169,11 @@
+ -I. -I[...]/hurd/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/libobjc/../gcc -I[...]/hurd/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/libobjc/../include \
+ -o thr.lo
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include [...]/hurd/libobjc/thr.c -c -I. -I[...]/hurd/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/libobjc/../gcc -I[...]/hurd/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/libobjc/../include -fPIC -DPIC -o .libs/thr.o
++In file included from ../.././gcc/gthr-default.h:1:0,
++ from [...]/hurd/libobjc/../gcc/gthr.h:162,
++ from [...]/hurd/libobjc/thr.c:43:
++[...]/hurd/libobjc/../gcc/gthr-posix.h: In function '__gthread_objc_thread_set_priority':
++[...]/hurd/libobjc/../gcc/gthr-posix.h:384:41: warning: unused parameter 'priority' [-Wunused-parameter]
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include [...]/hurd/libobjc/thr.c -c -I. -I[...]/hurd/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/libobjc/../gcc -I[...]/hurd/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/libobjc/../include -o thr.o >/dev/null 2>&1
+ /bin/bash ./libtool --mode=compile [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include [...]/hurd/libobjc/exception.c -c \
+ -I. -I[...]/hurd/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/libobjc/../gcc -I[...]/hurd/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/libobjc/../include -fexceptions -Wno-deprecated-declarations \
+@@ -17703,7 +17272,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -17729,12 +17298,12 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -17977,7 +17546,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -18003,12 +17572,12 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -18067,13 +17636,13 @@
+ checking for [ARCH]-dlltool... dlltool
+ checking for gawk... (cached) gawk
+ checking for jar... jar
+-checking for zip... /usr/bin/zip
++checking for zip... no
+ checking for unzip... /usr/bin/unzip
+ checking whether to enable maintainer-specific portions of Makefiles... no
+ [ARCH]
+ checking if the linker ([...]/hurd.build/./gcc/collect-ld) is GNU ld... yes
+ checking if the GNU linker ([...]/hurd.build/./gcc/collect-ld) supports -Bsymbolic-functions... yes
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking which variable specifies run-time library path... LD_LIBRARY_PATH
+ checking how to print strings... printf
+ checking for a sed that does not truncate output... /bin/sed
+@@ -18084,7 +17653,7 @@
+ checking if the linker ([...]/hurd.build/./gcc/collect-ld) is GNU ld... yes
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
+@@ -18110,19 +17679,19 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... yes
+@@ -18133,11 +17702,11 @@
+ checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for [ARCH]-gcj... [...]/hurd.build/./gcc/gcj -B[...]/hurd.build/[ARCH]/libjava/ -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include
+ checking dependency style of [...]/hurd.build/./gcc/gcj -B[...]/hurd.build/[ARCH]/libjava/ -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include ... gcc3
+@@ -18146,7 +17715,7 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC works... yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -18199,8 +17768,8 @@
+ checking sys/resource.h presence... yes
+ checking for sys/resource.h... yes
+ checking for dladdr in -ldl... yes
+-checking for /proc/self/exe... yes
+-checking for /proc/self/maps... yes
++checking for /proc/self/exe... no
++checking for /proc/self/maps... no
+ checking for ld used by GCC... [...]/hurd.build/./gcc/collect-ld
+ checking if the linker ([...]/hurd.build/./gcc/collect-ld) is GNU ld... (cached) yes
+ checking for shared library run path origin... done
+@@ -18336,8 +17905,8 @@
+ config.status: linking ../../../hurd/libjava/sysdep/i386/locks.h to sysdep/locks.h
+ config.status: linking ../../../hurd/libjava/sysdep/generic/backtrace.h to sysdep/backtrace.h
+ config.status: linking ../../../hurd/libjava/sysdep/descriptor-n.h to sysdep/descriptor.h
+-config.status: linking ../../../hurd/libjava/include/i386-signal.h to include/java-signal.h
+-config.status: linking ../../../hurd/libjava/include/i386-signal.h to include/java-signal-aux.h
++config.status: linking ../../../hurd/libjava/include/default-signal.h to include/java-signal.h
++config.status: linking ../../../hurd/libjava/include/default-signal.h to include/java-signal-aux.h
+ config.status: executing default-1 commands
+ Adding multilib support to Makefile in ../../../hurd/libjava
+ multidirs=
+@@ -18397,7 +17966,7 @@
+ checking if the linker ([...]/hurd.build/./gcc/collect-ld) is GNU ld... (cached) yes
+ checking for BSD- or MS-compatible name lister (nm)... (cached) [...]/hurd.build/./gcc/nm
+ checking the name lister ([...]/hurd.build/./gcc/nm) interface... (cached) BSD nm
+-checking the maximum length of command line arguments... (cached) 805306365
++checking the maximum length of command line arguments... (cached) -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... (cached) -r
+@@ -18412,12 +17981,12 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
+ checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
+-checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... (cached) yes
++checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... (cached) no
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... (cached) no
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -18440,11 +18009,11 @@
+ checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
+-checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... (cached) yes
++checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... (cached) no
+ checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking __attribute__((,,))... yes
+ checking __attribute__((unused))... yes
+@@ -18455,9 +18024,9 @@
+ checking for sys/types.h... (cached) yes
+ checking for sys/config.h... (cached) no
+ checking for sys/ioctl.h... (cached) yes
+-checking asm/ioctls.h usability... yes
+-checking asm/ioctls.h presence... yes
+-checking for asm/ioctls.h... yes
++checking asm/ioctls.h usability... no
++checking asm/ioctls.h presence... no
++checking for asm/ioctls.h... no
+ checking for inttypes.h... (cached) yes
+ checking for stdint.h... (cached) yes
+ checking utime.h usability... yes
+@@ -18480,9 +18049,9 @@
+ checking sys/event.h usability... no
+ checking sys/event.h presence... no
+ checking for sys/event.h... no
+-checking sys/epoll.h usability... yes
+-checking sys/epoll.h presence... yes
+-checking for sys/epoll.h... yes
++checking sys/epoll.h usability... no
++checking sys/epoll.h presence... no
++checking for sys/epoll.h... no
+ checking for ifaddrs.h... (cached) yes
+ checking netinet/in_systm.h usability... yes
+ checking netinet/in_systm.h presence... yes
+@@ -18539,9 +18108,9 @@
+ checking for statvfs... yes
+ checking for mmap... (cached) yes
+ checking for munmap... yes
+-checking for mincore... yes
+-checking for msync... yes
+-checking for madvise... yes
++checking for mincore... no
++checking for msync... no
++checking for madvise... no
+ checking for getpagesize... yes
+ checking for sysconf... yes
+ checking for lstat... (cached) yes
+@@ -18552,7 +18121,7 @@
+ checking for getifaddrs... (cached) yes
+ checking for kqueue... no
+ checking for kevent... no
+-checking for epoll_create... yes
++checking for epoll_create... no
+ checking for getloadavg... yes
+ checking for magic_open in -lmagic... no
+ checking whether struct sockaddr_in6 is in netinet/in.h... yes
+@@ -18577,13 +18146,13 @@
+ checking gmp.h usability... yes
+ checking gmp.h presence... yes
+ checking for gmp.h... yes
+-checking jni_md.h support... yes
++checking jni_md.h support... configure: WARNING: no
+ checking whether to enable maintainer-specific portions of Makefiles... no
+ checking for mkdir... /bin/mkdir
+ checking for cp... /bin/cp
+ checking for date... /bin/date
+ checking for find... /usr/bin/find
+-checking for zip... (cached) /usr/bin/zip
++checking for zip... (cached) no
+ checking for a jar-like tool... trying fastjar, gjar and jar
+ checking for fastjar... /usr/bin/fastjar
+ checking whether to regenerate parsers with jay... no
+@@ -18720,7 +18289,7 @@
+ checking for stdint.h... (cached) yes
+ checking for unistd.h... (cached) yes
+ checking for dlfcn.h... (cached) yes
+-checking the maximum length of command line arguments... (cached) 805306365
++checking the maximum length of command line arguments... (cached) -1
+ checking command to parse [...]/hurd.build/./gcc/nm output from [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include object... (cached) ok
+ checking for objdir... (cached) .libs
+ checking for [ARCH]-ar... (cached) ar
+@@ -18733,7 +18302,7 @@
+ checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -18744,7 +18313,7 @@
+ checking for library containing opendir... none required
+ checking which extension is used for loadable modules... .so
+ checking which variable specifies run-time library path... (cached) LD_LIBRARY_PATH
+-checking for the default library search path... /lib /usr/lib /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/local/lib
++checking for the default library search path... /lib /usr/lib
+ checking for objdir... .libs
+ checking whether libtool supports -dlopen/-dlpreopen... yes
+ checking for shl_load... (cached) no
+@@ -18964,7 +18533,6 @@
+ make[3]: Entering directory `/media/data[...]/hurd.build/[ARCH]/libjava/gcj'
+ make all-am
+ make[4]: Entering directory `/media/data[...]/hurd.build/[ARCH]/libjava/gcj'
+-make[4]: Nothing to be done for `all-am'.
+ make[4]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libjava/gcj'
+ make[3]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libjava/gcj'
+ Making all in include
+@@ -18986,705 +18554,705 @@
+ Adding java source files from VM directory [...]/hurd.build/[ARCH]/libjava
+ Adding generated files in builddir '..'.
+ touch compile-classes
+-./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties
+-./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
+-./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties
+-./classpath/tools/resource/sun/rmi/rmic/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/sun/rmi/rmic/messages.properties
+-./classpath/tools/resource/com/sun/tools/javac/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/com/sun/tools/javac/messages.properties
+-./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties
+-./classpath/resource/gnu/javax/print/PrinterDialog_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog_de.properties
+-./classpath/resource/gnu/javax/print/PrinterDialog.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/resource/gnu/java/awt/font/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/font/fonts.properties
++./classpath/resource/gnu/java/awt/peer/gtk/font.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/gtk/font.properties
++./classpath/resource/gnu/java/awt/peer/x/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/fonts.properties
++./classpath/resource/gnu/java/awt/peer/x/xfonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/xfonts.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_et.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_as.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_th.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_wo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_id.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_to.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_to.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk_SK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_om.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_se.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_JO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_my.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_my.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_el.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv_LV.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_af.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZW.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_af.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_MA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_fi_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi_FI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_he.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_or.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_az.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_MP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MP.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_id.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl_GL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_da.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_se.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_is.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_te.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_am.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_km.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_el.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_my.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_my.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_om.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_te.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_trv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_da.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_be_BY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_is.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_th.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_st.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_st.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_et.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_to.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_to.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_JM.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw_GB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_NA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_si.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_si.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_st.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_st.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ss.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_am.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_be.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_be.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_si.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_si.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu_HU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_az.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_or.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_km.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_he.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_US.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
+-./classpath/resource/gnu/java/awt/peer/gtk/font.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/gtk/font.properties
+-./classpath/resource/gnu/java/awt/peer/x/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/fonts.properties
+-./classpath/resource/gnu/java/awt/peer/x/xfonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/xfonts.properties
+-./classpath/resource/gnu/java/awt/font/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/font/fonts.properties
+-./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_as.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties
++./classpath/resource/gnu/java/locale/LocaleInformation.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties
+ ./classpath/resource/gnu/java/util/regex/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle.properties
+ ./classpath/resource/gnu/java/util/regex/MessagesBundle_fr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_fr.properties
+-./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties
+-./classpath/resource/org/ietf/jgss/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/org/ietf/jgss/MessagesBundle.properties
++./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/resource/gnu/javax/print/PrinterDialog.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog.properties
++./classpath/resource/gnu/javax/print/PrinterDialog_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog_de.properties
++./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties
+ ./classpath/resource/java/text/metazones.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/text/metazones.properties
+ ./classpath/resource/java/util/iso4217.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/iso4217.properties
+-./classpath/resource/java/util/weeks.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/weeks.properties
+ ./classpath/resource/java/util/logging/logging.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/logging/logging.properties
+-./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties
+-./classpath/lib/gnu/javax/print/PrinterDialog_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog_de.properties
+-./classpath/lib/gnu/javax/print/PrinterDialog.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/resource/java/util/weeks.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/weeks.properties
++./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties
++./classpath/resource/org/ietf/jgss/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/org/ietf/jgss/MessagesBundle.properties
++./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties
++./classpath/tools/resource/com/sun/tools/javac/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/com/sun/tools/javac/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties
++./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties
++./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
++./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties
++./classpath/tools/resource/sun/rmi/rmic/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/sun/rmi/rmic/messages.properties
++./classpath/lib/gnu/java/awt/font/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/font/fonts.properties
++./classpath/lib/gnu/java/awt/peer/gtk/font.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/gtk/font.properties
++./classpath/lib/gnu/java/awt/peer/x/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/fonts.properties
++./classpath/lib/gnu/java/awt/peer/x/xfonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/xfonts.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_US.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_et.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_as.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_th.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_wo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_om.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_my.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_my.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_el.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_id.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_to.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_to.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_se.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_af.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_am_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_fi_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi_FI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_he.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_or.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_az.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_MP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MP.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_id.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_el.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_my.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_my.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_om.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_te.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_da.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_se.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_is.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_te.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_is.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_th.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_st.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_st.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_et.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_MX.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_am.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_am.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_be.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_km.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_si.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_si.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_az.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tr_TR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_or.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_km.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_he.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BW.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_to.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_to.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl_PL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_BO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_as.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_CY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_si.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_si.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ne.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_st.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_st.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_VI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_be.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
+-./classpath/lib/gnu/java/awt/peer/gtk/font.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/gtk/font.properties
+-./classpath/lib/gnu/java/awt/peer/x/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/fonts.properties
+-./classpath/lib/gnu/java/awt/peer/x/xfonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/xfonts.properties
+-./classpath/lib/gnu/java/awt/font/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/font/fonts.properties
+-./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties
+ ./classpath/lib/gnu/java/util/regex/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle.properties
+ ./classpath/lib/gnu/java/util/regex/MessagesBundle_fr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_fr.properties
+-./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties
+-./classpath/lib/org/ietf/jgss/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/org/ietf/jgss/MessagesBundle.properties
++./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/lib/gnu/javax/print/PrinterDialog.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog.properties
++./classpath/lib/gnu/javax/print/PrinterDialog_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog_de.properties
++./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties
+ ./classpath/lib/java/text/metazones.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/text/metazones.properties
+ ./classpath/lib/java/util/iso4217.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/iso4217.properties
+-./classpath/lib/java/util/weeks.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/weeks.properties
+ ./classpath/lib/java/util/logging/logging.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/logging/logging.properties
++./classpath/lib/java/util/weeks.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/weeks.properties
++./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties
++./classpath/lib/org/ietf/jgss/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/org/ietf/jgss/MessagesBundle.properties
+ touch resources
+ make[4]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libjava/classpath/lib'
+ Making all in doc
+@@ -20036,30 +19604,30 @@
+ echo -n > vm-tools.lst; \
+ fi
+ cat classes.lst asm.lst vm-tools.lst > all-classes.lst
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties classes/gnu/classpath/tools/orbd/messages.properties
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/jar/messages.properties classes/gnu/classpath/tools/jar/messages.properties
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties classes/gnu/classpath/tools/serialver/messages.properties
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties classes/gnu/classpath/tools/tnameserv/messages.properties
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties classes/gnu/classpath/tools/rmid/messages.properties
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties classes/gnu/classpath/tools/keytool/messages.properties
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties classes/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties classes/gnu/classpath/tools/appletviewer/messages.properties
+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/common/Messages.properties classes/gnu/classpath/tools/common/Messages.properties
+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties classes/gnu/classpath/tools/getopt/Messages.properties
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties classes/gnu/classpath/tools/native2ascii/messages.properties
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties classes/gnu/classpath/tools/appletviewer/messages.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties classes/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/jar/messages.properties classes/gnu/classpath/tools/jar/messages.properties
+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties classes/gnu/classpath/tools/jarsigner/messages.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties classes/gnu/classpath/tools/keytool/messages.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties classes/gnu/classpath/tools/native2ascii/messages.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties classes/gnu/classpath/tools/orbd/messages.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties classes/gnu/classpath/tools/rmic/messages.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav classes/gnu/classpath/tools/rmic/templates/ImplTie.jav
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav classes/gnu/classpath/tools/rmic/templates/Stub.jav
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav classes/gnu/classpath/tools/rmic/templates/StubMethod.jav
+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav classes/gnu/classpath/tools/rmic/templates/Stub_12.jav
+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12Method.jav classes/gnu/classpath/tools/rmic/templates/Stub_12Method.jav
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav classes/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav
+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Tie.jav classes/gnu/classpath/tools/rmic/templates/Tie.jav
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav classes/gnu/classpath/tools/rmic/templates/Stub_12.jav
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav classes/gnu/classpath/tools/rmic/templates/Stub.jav
+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethod.jav classes/gnu/classpath/tools/rmic/templates/TieMethod.jav
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav classes/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav classes/gnu/classpath/tools/rmic/templates/ImplTie.jav
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav classes/gnu/classpath/tools/rmic/templates/StubMethod.jav
+- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties classes/gnu/classpath/tools/rmic/messages.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties classes/gnu/classpath/tools/rmid/messages.properties
+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties classes/gnu/classpath/tools/rmiregistry/messages.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties classes/gnu/classpath/tools/serialver/messages.properties
++ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties classes/gnu/classpath/tools/tnameserv/messages.properties
+ cp ../../../../../hurd/libjava/classpath/tools/resource/com/sun/tools/javac/messages.properties classes/com/sun/tools/javac/messages.properties
+ cp ../../../../../hurd/libjava/classpath/tools/resource/sun/rmi/rmic/messages.properties classes/sun/rmi/rmic/messages.properties
+ cp -pR ../../../../../hurd/libjava/classpath/tools/asm .
+@@ -20335,6 +19903,9 @@
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF $depbase.Tpo -c -o gnu/gcj/util/natGCInfo.lo ../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc &&\
+ mv -f $depbase.Tpo $depbase.Plo
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc -fPIC -DPIC -o gnu/gcj/util/.libs/natGCInfo.o
++../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:440:1: warning: unused parameter 'name' [-Wunused-parameter]
++../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:446:1: warning: unused parameter 'name' [-Wunused-parameter]
++../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:452:1: warning: unused parameter 'name' [-Wunused-parameter]
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc -o gnu/gcj/util/natGCInfo.o >/dev/null 2>&1
+ depbase=`echo gnu/java/lang/natMainThread.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/lang/natMainThread.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/lang/natMainThread.lo ../../../hurd/libjava/gnu/java/lang/natMainThread.cc &&\
+@@ -20395,6 +19966,8 @@
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/natPlainSocketImpl.lo gnu/java/net/natPlainSocketImpl.cc &&\
+ mv -f $depbase.Tpo $depbase.Plo
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -fPIC -DPIC -o gnu/java/net/.libs/natPlainSocketImpl.o
++gnu/java/net/natPlainSocketImpl.cc: In member function 'virtual jint gnu::java::net::PlainSocketImpl::available()':
++gnu/java/net/natPlainSocketImpl.cc:515:27: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -o gnu/java/net/natPlainSocketImpl.o >/dev/null 2>&1
+ depbase=`echo gnu/java/net/protocol/core/natCoreInputStream.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/protocol/core/natCoreInputStream.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/protocol/core/natCoreInputStream.lo ../../../hurd/libjava/gnu/java/net/protocol/core/natCoreInputStream.cc &&\
+@@ -20425,6 +19998,8 @@
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/nio/channels/natFileChannelImpl.cc &&\
+ mv -f $depbase.Tpo $depbase.Plo
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -fPIC -DPIC -o gnu/java/nio/channels/.libs/natFileChannelImpl.o
++gnu/java/nio/channels/natFileChannelImpl.cc: In member function 'jint gnu::java::nio::channels::FileChannelImpl::available()':
++gnu/java/nio/channels/natFileChannelImpl.cc:388:20: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -o gnu/java/nio/channels/natFileChannelImpl.o >/dev/null 2>&1
+ depbase=`echo gnu/java/security/jce/prng/natVMSecureRandom.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/security/jce/prng/natVMSecureRandom.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/security/jce/prng/natVMSecureRandom.lo gnu/java/security/jce/prng/natVMSecureRandom.cc &&\
+@@ -23400,8 +22975,7 @@
+ /bin/bash ./libtool --tag=GCJ --mode=compile [...]/hurd.build/./gcc/gcj -B[...]/hurd.build/[ARCH]/libjava/ -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../hurd/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c -o org-xml.lo @org-xml.list
+ libtool: compile: [...]/hurd.build/./gcc/gcj -B[...]/hurd.build/[ARCH]/libjava/ -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../hurd/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -fPIC -o .libs/org-xml.o
+ libtool: compile: [...]/hurd.build/./gcc/gcj -B[...]/hurd.build/[ARCH]/libjava/ -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../hurd/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -o org-xml.o >/dev/null 2>&1
+-/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -L[...]/hurd.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../hurd/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../hurd/libjava/libgcj.ver -rpath [...]/hurd.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu/java/security/jce/hash.lo gnu/java/security/jce/prng.lo gnu/java/security/jce/sig.lo gnu/java/security/key.lo gnu/java/security/key/dss.lo gnu/java/security/key/rsa.lo gnu/java/security/pkcs.lo gnu/java/security/prng.lo gnu/java/security/provider.lo gnu/java/security/sig.lo gnu/java/security/sig/dss.lo gnu/java/security/sig/rsa.lo gnu/java/security/util.lo gnu/java/security/x509.lo gnu/java/security/x509/ext.lo gnu/java/text.lo gnu/java/util.lo gnu/java/util/jar.lo gnu/java/util/prefs.lo gnu/java/util/regex.lo gnu/javax/activation/viewers.lo gnu/javax/crypto.lo gnu/javax/crypto/assembly.lo gnu/javax/crypto/cipher.lo gnu/javax/crypto/jce.lo gnu/javax/crypto/jce/cipher.lo gnu/javax/crypto/jce/key.lo gnu/javax/crypto/jce/keyring.lo gnu/javax/crypto/jce/mac.lo gnu/javax/crypto/jce/params.lo gnu/javax/crypto/jce/prng.lo gnu/javax/crypto/jce/sig.lo gnu/javax/crypto/jce/spec.lo gnu/javax/crypto/key.lo gnu/javax/crypto/key/dh.lo gnu/javax/crypto/key/srp6.lo gnu/javax/crypto/keyring.lo gnu/javax/crypto/kwa.lo gnu/javax/crypto/mac.lo gnu/javax/crypto/mode.lo gnu/javax/crypto/pad.lo gnu/javax/crypto/prng.lo gnu/javax/crypto/sasl.lo gnu/javax/crypto/sasl/anonymous.lo gnu/javax/crypto/sasl/crammd5.lo gnu/javax/crypto/sasl/plain.lo gnu/javax/crypto/sasl/srp.lo gnu/javax/imageio.lo gnu/javax/imageio/bmp.lo gnu/javax/imageio/gif.lo gnu/javax/imageio/jpeg.lo gnu/javax/imageio/png.lo gnu/javax/naming/giop.lo gnu/javax/naming/ictxImpl/trans.lo gnu/javax/naming/jndi/url/corbaname.lo gnu/javax/naming/jndi/url/rmi.lo gnu/javax/net/ssl.lo gnu/javax/net/ssl/provider.lo gnu/javax/print.lo gnu/javax/print/ipp.lo gnu/javax/print/ipp/attribute.lo gnu/javax/print/ipp/attribute/defaults.lo gnu/javax/print/ipp/attribute/job.lo gnu/javax/print/ipp/attribute/printer.lo gnu/javax/print/ipp/attribute/supported.lo gnu/javax/security/auth.lo gnu/javax/security/auth/callback.lo gnu/javax/security/auth/login.lo gnu/javax/sound.lo gnu/javax/sound/sampled/AU.lo gnu/javax/sound/sampled/WAV.lo gnu/javax/swing/plaf/gnu.lo gnu/javax/swing/plaf/metal.lo gnu/javax/swing/text/html.lo gnu/javax/swing/text/html/css.lo gnu/javax/swing/text/html/parser/GnuParserDelegator.lo gnu/javax/swing/text/html/parser/HTML_401F.lo gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.lo gnu/javax/swing/text/html/parser/gnuDTD.lo gnu/javax/swing/text/html/parser/htmlAttributeSet.lo gnu/javax/swing/text/html/parser/htmlValidator.lo gnu/javax/swing/text/html/parser/models.lo gnu/javax/swing/text/html/parser/support.lo gnu/javax/swing/text/html/parser/support/low.lo gnu/javax/swing/tree.lo java/applet.lo java/awt.lo java/awt/color.lo java/awt/datatransfer.lo java/awt/dnd.lo java/awt/dnd/peer.lo java/awt/event.lo java/awt/font.lo java/awt/geom.lo java/awt/im.lo java/awt/im/spi.lo java/awt/image.lo java/awt/image/renderable.lo java/awt/peer.lo java/awt/print.lo java/beans.lo java/beans/beancontext.lo java/io.lo java/lang.lo java/lang/annotation.lo java/lang/instrument.lo java/lang/ref.lo java/lang/reflect.lo java/math.lo java/net.lo java/nio.lo java/nio/channels.lo java/nio/channels/spi.lo java/nio/charset.lo java/nio/charset/spi.lo java/rmi.lo java/rmi/activation.lo java/rmi/dgc.lo java/rmi/registry.lo java/rmi/server.lo java/security.lo java/security/acl.lo java/security/cert.lo java/security/interfaces.lo java/security/spec.lo java/sql.lo java/text.lo java/text/spi.lo java/util.lo java/util/concurrent.lo java/util/concurrent/atomic.lo java/util/concurrent/locks.lo java/util/jar.lo java/util/logging.lo java/util/prefs.lo java/util/regex.lo java/util/spi.lo java/util/zip.lo javax/accessibility.lo javax/activation.lo javax/activity.lo javax/crypto.lo javax/crypto/interfaces.lo javax/crypto/spec.lo javax/management.lo javax/management/loading.lo javax/management/openmbean.lo javax/management/remote.lo javax/management/remote/rmi.lo javax/naming.lo javax/naming/directory.lo javax/naming/event.lo javax/naming/ldap.lo javax/naming/spi.lo javax/net.lo javax/net/ssl.lo javax/print.lo javax/print/attribute.lo javax/print/attribute/standard.lo javax/print/event.lo javax/security/auth.lo javax/security/auth/callback.lo javax/security/auth/kerberos.lo javax/security/auth/login.lo javax/security/auth/spi.lo javax/security/auth/x500.lo javax/security/cert.lo javax/security/sasl.lo javax/sound/midi.lo javax/sound/midi/spi.lo javax/sound/sampled.lo javax/sound/sampled/spi.lo javax/sql.lo javax/swing.lo javax/swing/border.lo javax/swing/colorchooser.lo javax/swing/event.lo javax/swing/filechooser.lo javax/swing/plaf.lo javax/swing/plaf/basic.lo javax/swing/plaf/metal.lo javax/swing/plaf/multi.lo javax/swing/plaf/synth.lo javax/swing/table.lo javax/swing/text.lo javax/swing/text/html.lo javax/swing/text/html/parser.lo javax/swing/text/rtf.lo javax/swing/tree.lo javax/swing/undo.lo javax/tools.lo javax/transaction.lo javax/transaction/xa.lo org/ietf/jgss.lo sun/awt.lo sun/misc.lo sun/reflect.lo sun/reflect/annotation.lo sun/reflect/misc.lo gnu/classpath/jdwp.lo gnu/classpath/jdwp/event.lo gnu/classpath/jdwp/event/filters.lo gnu/classpath/jdwp/exception.lo gnu/classpath/jdwp/id.lo gnu/classpath/jdwp/processor.lo gnu/classpath/jdwp/transport.lo gnu/classpath/jdwp/util.lo gnu/classpath/jdwp/value.lo gnu/gcj/jvmti.lo gnu/java/awt/font/fonts.properties.lo gnu/java/awt/peer/gtk/font.properties.lo gnu/java/awt/peer/x/fonts.properties.lo gnu/java/awt/peer/x/xfonts.properties.lo gnu/java/locale/LocaleInformation.properties.lo gnu/java/locale/LocaleInformation_aa.properties.lo gnu/java/locale/LocaleInformation_aa_DJ.properties.lo gnu/java/locale/LocaleInformation_aa_ER.properties.lo gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.lo gnu/java/locale/LocaleInformation_aa_ET.properties.lo gnu/java/locale/LocaleInformation_af.properties.lo gnu/java/locale/LocaleInformation_af_NA.properties.lo gnu/java/locale/LocaleInformation_af_ZA.properties.lo gnu/java/locale/LocaleInformation_ak.properties.lo gnu/java/locale/LocaleInformation_am.properties.lo gnu/java/locale/LocaleInformation_am_ET.properties.lo gnu/java/locale/LocaleInformation_ar.properties.lo gnu/java/locale/LocaleInformation_ar_DZ.properties.lo gnu/java/locale/LocaleInformation_ar_JO.properties.lo gnu/java/locale/LocaleInformation_ar_LB.properties.lo gnu/java/locale/LocaleInformation_ar_MA.properties.lo gnu/java/locale/LocaleInformation_ar_QA.properties.lo gnu/java/locale/LocaleInformation_ar_SA.properties.lo gnu/java/locale/LocaleInformation_ar_SY.properties.lo gnu/java/locale/LocaleInformation_ar_TN.properties.lo gnu/java/locale/LocaleInformation_ar_YE.properties.lo gnu/java/locale/LocaleInformation_as.properties.lo gnu/java/locale/LocaleInformation_as_IN.properties.lo gnu/java/locale/LocaleInformation_az.properties.lo gnu/java/locale/LocaleInformation_az_Cyrl.properties.lo gnu/java/locale/LocaleInformation_be.properties.lo gnu/java/locale/LocaleInformation_be_BY.properties.lo gnu/java/locale/LocaleInformation_bg.properties.lo gnu/java/locale/LocaleInformation_bg_BG.properties.lo gnu/java/locale/LocaleInformation_bn.properties.lo gnu/java/locale/LocaleInformation_bn_IN.properties.lo gnu/java/locale/LocaleInformation_bo.properties.lo gnu/java/locale/LocaleInformation_bs.properties.lo gnu/java/locale/LocaleInformation_byn.properties.lo gnu/java/locale/LocaleInformation_byn_ER.properties.lo gnu/java/locale/LocaleInformation_ca.properties.lo gnu/java/locale/LocaleInformation_ca_ES.properties.lo gnu/java/locale/LocaleInformation_cch.properties.lo gnu/java/locale/LocaleInformation_cop.properties.lo gnu/java/locale/LocaleInformation_cs.properties.lo gnu/java/locale/LocaleInformation_cs_CZ.properties.lo gnu/java/locale/LocaleInformation_cy.properties.lo gnu/java/locale/LocaleInformation_cy_GB.properties.lo gnu/java/locale/LocaleInformation_da.properties.lo gnu/java/locale/LocaleInformation_da_DK.properties.lo gnu/java/locale/LocaleInformation_de.properties.lo gnu/java/locale/LocaleInformation_de_AT.properties.lo gnu/java/locale/LocaleInformation_de_BE.properties.lo gnu/java/locale/LocaleInformation_de_CH.properties.lo gnu/java/locale/LocaleInformation_de_DE.properties.lo gnu/java/locale/LocaleInformation_de_LI.properties.lo gnu/java/locale/LocaleInformation_de_LU.properties.lo gnu/java/locale/LocaleInformation_dv.properties.lo gnu/java/locale/LocaleInformation_dv_MV.properties.lo gnu/java/locale/LocaleInformation_dz.properties.lo gnu/java/locale/LocaleInformation_dz_BT.properties.lo gnu/java/locale/LocaleInformation_ee.properties.lo gnu/java/locale/LocaleInformation_el.properties.lo gnu/java/locale/LocaleInformation_el_CY.properties.lo gnu/java/locale/LocaleInformation_el_GR.properties.lo gnu/java/locale/LocaleInformation_en.properties.lo gnu/java/locale/LocaleInformation_en_AS.properties.lo gnu/java/locale/LocaleInformation_en_AU.properties.lo gnu/java/locale/LocaleInformation_en_BE.properties.lo gnu/java/locale/LocaleInformation_en_BW.properties.lo gnu/java/locale/LocaleInformation_en_BZ.properties.lo gnu/java/locale/LocaleInformation_en_CA.properties.lo gnu/java/locale/LocaleInformation_en_Dsrt.properties.lo gnu/java/locale/LocaleInformation_en_GB.properties.lo gnu/java/locale/LocaleInformation_en_GU.properties.lo gnu/java/locale/LocaleInformation_en_HK.properties.lo gnu/java/locale/LocaleInformation_en_IE.properties.lo gnu/java/locale/LocaleInformation_en_IN.properties.lo gnu/java/locale/LocaleInformation_en_JM.properties.lo gnu/java/locale/LocaleInformation_en_MH.properties.lo gnu/java/locale/LocaleInformation_en_MP.properties.lo gnu/java/locale/LocaleInformation_en_MT.properties.lo gnu/java/locale/LocaleInformation_en_NA.properties.lo gnu/java/locale/LocaleInformation_en_NZ.properties.lo gnu/java/locale/LocaleInformation_en_PH.properties.lo gnu/java/locale/LocaleInformation_en_PK.properties.lo gnu/java/locale/LocaleInformation_en_SG.properties.lo gnu/java/locale/LocaleInformation_en_Shaw.properties.lo gnu/java/locale/LocaleInformation_en_TT.properties.lo gnu/java/locale/LocaleInformation_en_UM.properties.lo gnu/java/locale/LocaleInformation_en_US.properties.lo gnu/java/locale/LocaleInformation_en_US_POSIX.properties.lo gnu/java/locale/LocaleInformation_en_VI.properties.lo gnu/java/locale/LocaleInformation_en_ZA.properties.lo gnu/java/locale/LocaleInformation_en_ZW.properties.lo gnu/java/locale/LocaleInformation_eo.properties.lo gnu/java/locale/LocaleInformation_es.properties.lo gnu/java/locale/LocaleInformation_es_AR.properties.lo gnu/java/locale/LocaleInformation_es_BO.properties.lo gnu/java/locale/LocaleInformation_es_CL.properties.lo gnu/java/locale/LocaleInformation_es_CO.properties.lo gnu/java/locale/LocaleInformation_es_CR.properties.lo gnu/java/locale/LocaleInformation_es_DO.properties.lo gnu/java/locale/LocaleInformation_es_EC.properties.lo gnu/java/locale/LocaleInformation_es_ES.properties.lo gnu/java/locale/LocaleInformation_es_GT.properties.lo gnu/java/locale/LocaleInformation_es_HN.properties.lo gnu/java/locale/LocaleInformation_es_MX.properties.lo gnu/java/locale/LocaleInformation_es_NI.properties.lo gnu/java/locale/LocaleInformation_es_PA.properties.lo gnu/java/locale/LocaleInformation_es_PE.properties.lo gnu/java/locale/LocaleInformation_es_PR.properties.lo gnu/java/locale/LocaleInformation_es_PY.properties.lo gnu/java/locale/LocaleInformation_es_SV.properties.lo gnu/java/locale/LocaleInformation_es_US.properties.lo gnu/java/locale/LocaleInformation_es_UY.properties.lo gnu/java/locale/LocaleInformation_es_VE.properties.lo gnu/java/locale/LocaleInformation_et.properties.lo gnu/java/locale/LocaleInformation_et_EE.properties.lo gnu/java/locale/LocaleInformation_eu.properties.lo gnu/java/locale/LocaleInformation_eu_ES.properties.lo gnu/java/locale/LocaleInformation_fa.properties.lo gnu/java/locale/LocaleInformation_fa_AF.properties.lo gnu/java/locale/LocaleInformation_fa_IR.properties.lo gnu/java/locale/LocaleInformation_fi.properties.lo gnu/java/locale/LocaleInformation_fi_FI.properties.lo gnu/java/locale/LocaleInformation_fil.properties.lo gnu/java/locale/LocaleInformation_fo.properties.lo gnu/java/locale/LocaleInformation_fo_FO.properties.lo gnu/java/locale/LocaleInformation_fr.properties.lo gnu/java/locale/LocaleInformation_fr_BE.properties.lo gnu/java/locale/LocaleInformation_fr_CA.properties.lo gnu/java/locale/LocaleInformation_fr_CH.properties.lo gnu/java/locale/LocaleInformation_fr_LU.properties.lo gnu/java/locale/LocaleInformation_fur.properties.lo gnu/java/locale/LocaleInformation_ga.properties.lo gnu/java/locale/LocaleInformation_ga_IE.properties.lo gnu/java/locale/LocaleInformation_gaa.properties.lo gnu/java/locale/LocaleInformation_gez.properties.lo gnu/java/locale/LocaleInformation_gez_ER.properties.lo gnu/java/locale/LocaleInformation_gez_ET.properties.lo gnu/java/locale/LocaleInformation_gl.properties.lo gnu/java/locale/LocaleInformation_gl_ES.properties.lo gnu/java/locale/LocaleInformation_gu.properties.lo gnu/java/locale/LocaleInformation_gu_IN.properties.lo gnu/java/locale/LocaleInformation_gv.properties.lo gnu/java/locale/LocaleInformation_gv_GB.properties.lo gnu/java/locale/LocaleInformation_ha.properties.lo gnu/java/locale/LocaleInformation_ha_Arab.properties.lo gnu/java/locale/LocaleInformation_haw.properties.lo gnu/java/locale/LocaleInformation_haw_US.properties.lo gnu/java/locale/LocaleInformation_he.properties.lo gnu/java/locale/LocaleInformation_he_IL.properties.lo gnu/java/locale/LocaleInformation_hi.properties.lo gnu/java/locale/LocaleInformation_hi_IN.properties.lo gnu/java/locale/LocaleInformation_hr.properties.lo gnu/java/locale/LocaleInformation_hu.properties.lo gnu/java/locale/LocaleInformation_hu_HU.properties.lo gnu/java/locale/LocaleInformation_hy.properties.lo gnu/java/locale/LocaleInformation_hy_AM.properties.lo gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.lo gnu/java/locale/LocaleInformation_ia.properties.lo gnu/java/locale/LocaleInformation_id.properties.lo gnu/java/locale/LocaleInformation_id_ID.properties.lo gnu/java/locale/LocaleInformation_ig.properties.lo gnu/java/locale/LocaleInformation_ii.properties.lo gnu/java/locale/LocaleInformation_is.properties.lo gnu/java/locale/LocaleInformation_is_IS.properties.lo gnu/java/locale/LocaleInformation_it.properties.lo gnu/java/locale/LocaleInformation_it_CH.properties.lo gnu/java/locale/LocaleInformation_it_IT.properties.lo gnu/java/locale/LocaleInformation_iu.properties.lo gnu/java/locale/LocaleInformation_ja.properties.lo gnu/java/locale/LocaleInformation_ja_JP.properties.lo gnu/java/locale/LocaleInformation_ka.properties.lo gnu/java/locale/LocaleInformation_kaj.properties.lo gnu/java/locale/LocaleInformation_kam.properties.lo gnu/java/locale/LocaleInformation_kcg.properties.lo gnu/java/locale/LocaleInformation_kfo.properties.lo gnu/java/locale/LocaleInformation_kk.properties.lo gnu/java/locale/LocaleInformation_kk_KZ.properties.lo gnu/java/locale/LocaleInformation_kl.properties.lo gnu/java/locale/LocaleInformation_kl_GL.properties.lo gnu/java/locale/LocaleInformation_km.properties.lo gnu/java/locale/LocaleInformation_km_KH.properties.lo gnu/java/locale/LocaleInformation_kn.properties.lo gnu/java/locale/LocaleInformation_kn_IN.properties.lo gnu/java/locale/LocaleInformation_ko.properties.lo gnu/java/locale/LocaleInformation_ko_KR.properties.lo gnu/java/locale/LocaleInformation_kok.properties.lo gnu/java/locale/LocaleInformation_kok_IN.properties.lo gnu/java/locale/LocaleInformation_kpe.properties.lo gnu/java/locale/LocaleInformation_ku.properties.lo gnu/java/locale/LocaleInformation_ku_Arab.properties.lo gnu/java/locale/LocaleInformation_ku_Latn.properties.lo gnu/java/locale/LocaleInformation_kw.properties.lo gnu/java/locale/LocaleInformation_kw_GB.properties.lo gnu/java/locale/LocaleInformation_ky.properties.lo gnu/java/locale/LocaleInformation_ln.properties.lo gnu/java/locale/LocaleInformation_lo.properties.lo gnu/java/locale/LocaleInformation_lo_LA.properties.lo gnu/java/locale/LocaleInformation_lt.properties.lo gnu/java/locale/LocaleInformation_lt_LT.properties.lo gnu/java/locale/LocaleInformation_lv.properties.lo gnu/java/locale/LocaleInformation_lv_LV.properties.lo gnu/java/locale/LocaleInformation_mk.properties.lo gnu/java/locale/LocaleInformation_ml.properties.lo gnu/java/locale/LocaleInformation_ml_IN.properties.lo gnu/java/locale/LocaleInformation_mn.properties.lo gnu/java/locale/LocaleInformation_mr.properties.lo gnu/java/locale/LocaleInformation_mr_IN.properties.lo gnu/java/locale/LocaleInformation_ms.properties.lo gnu/java/locale/LocaleInformation_ms_BN.properties.lo gnu/java/locale/LocaleInformation_ms_MY.properties.lo gnu/java/locale/LocaleInformation_mt.properties.lo gnu/java/locale/LocaleInformation_mt_MT.properties.lo gnu/java/locale/LocaleInformation_my.properties.lo gnu/java/locale/LocaleInformation_nb.properties.lo gnu/java/locale/LocaleInformation_nb_NO.properties.lo gnu/java/locale/LocaleInformation_ne.properties.lo gnu/java/locale/LocaleInformation_nl.properties.lo gnu/java/locale/LocaleInformation_nl_BE.properties.lo gnu/java/locale/LocaleInformation_nl_NL.properties.lo gnu/java/locale/LocaleInformation_nn.properties.lo gnu/java/locale/LocaleInformation_nn_NO.properties.lo gnu/java/locale/LocaleInformation_nr.properties.lo gnu/java/locale/LocaleInformation_nso.properties.lo gnu/java/locale/LocaleInformation_ny.properties.lo gnu/java/locale/LocaleInformation_om.properties.lo gnu/java/locale/LocaleInformation_om_ET.properties.lo gnu/java/locale/LocaleInformation_om_KE.properties.lo gnu/java/locale/LocaleInformation_or.properties.lo gnu/java/locale/LocaleInformation_or_IN.properties.lo gnu/java/locale/LocaleInformation_pa.properties.lo gnu/java/locale/LocaleInformation_pa_Arab.properties.lo gnu/java/locale/LocaleInformation_pa_IN.properties.lo gnu/java/locale/LocaleInformation_pl.properties.lo gnu/java/locale/LocaleInformation_pl_PL.properties.lo gnu/java/locale/LocaleInformation_ps.properties.lo gnu/java/locale/LocaleInformation_ps_AF.properties.lo gnu/java/locale/LocaleInformation_pt.properties.lo gnu/java/locale/LocaleInformation_pt_BR.properties.lo gnu/java/locale/LocaleInformation_pt_PT.properties.lo gnu/java/locale/LocaleInformation_ro.properties.lo gnu/java/locale/LocaleInformation_ro_RO.properties.lo gnu/java/locale/LocaleInformation_ru.properties.lo gnu/java/locale/LocaleInformation_ru_RU.properties.lo gnu/java/locale/LocaleInformation_ru_UA.properties.lo gnu/java/locale/LocaleInformation_rw.properties.lo gnu/java/locale/LocaleInformation_sa.properties.lo gnu/java/locale/LocaleInformation_sa_IN.properties.lo gnu/java/locale/LocaleInformation_se.properties.lo gnu/java/locale/LocaleInformation_se_FI.properties.lo gnu/java/locale/LocaleInformation_si.properties.lo gnu/java/locale/LocaleInformation_sid.properties.lo gnu/java/locale/LocaleInformation_sid_ET.properties.lo gnu/java/locale/LocaleInformation_sk.properties.lo gnu/java/locale/LocaleInformation_sk_SK.properties.lo gnu/java/locale/LocaleInformation_sl.properties.lo gnu/java/locale/LocaleInformation_sl_SI.properties.lo gnu/java/locale/LocaleInformation_so.properties.lo gnu/java/locale/LocaleInformation_so_DJ.properties.lo gnu/java/locale/LocaleInformation_so_ET.properties.lo gnu/java/locale/LocaleInformation_so_KE.properties.lo gnu/java/locale/LocaleInformation_so_SO.properties.lo gnu/java/locale/LocaleInformation_sq.properties.lo gnu/java/locale/LocaleInformation_sq_AL.properties.lo gnu/java/locale/LocaleInformation_sr.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.lo gnu/java/locale/LocaleInformation_ss.properties.lo gnu/java/locale/LocaleInformation_ssy.properties.lo gnu/java/locale/LocaleInformation_st.properties.lo gnu/java/locale/LocaleInformation_sv.properties.lo gnu/java/locale/LocaleInformation_sv_FI.properties.lo gnu/java/locale/LocaleInformation_sv_SE.properties.lo gnu/java/locale/LocaleInformation_sw.properties.lo gnu/java/locale/LocaleInformation_sw_KE.properties.lo gnu/java/locale/LocaleInformation_sw_TZ.properties.lo gnu/java/locale/LocaleInformation_syr.properties.lo gnu/java/locale/LocaleInformation_syr_SY.properties.lo gnu/java/locale/LocaleInformation_ta.properties.lo gnu/java/locale/LocaleInformation_ta_IN.properties.lo gnu/java/locale/LocaleInformation_te.properties.lo gnu/java/locale/LocaleInformation_te_IN.properties.lo gnu/java/locale/LocaleInformation_tg.properties.lo gnu/java/locale/LocaleInformation_th.properties.lo gnu/java/locale/LocaleInformation_th_TH.properties.lo gnu/java/locale/LocaleInformation_ti.properties.lo gnu/java/locale/LocaleInformation_ti_ER.properties.lo gnu/java/locale/LocaleInformation_ti_ET.properties.lo gnu/java/locale/LocaleInformation_tig.properties.lo gnu/java/locale/LocaleInformation_tig_ER.properties.lo gnu/java/locale/LocaleInformation_tn.properties.lo gnu/java/locale/LocaleInformation_to.properties.lo gnu/java/locale/LocaleInformation_tr.properties.lo gnu/java/locale/LocaleInformation_tr_TR.properties.lo gnu/java/locale/LocaleInformation_trv.properties.lo gnu/java/locale/LocaleInformation_ts.properties.lo gnu/java/locale/LocaleInformation_tt.properties.lo gnu/java/locale/LocaleInformation_tt_RU.properties.lo gnu/java/locale/LocaleInformation_ug.properties.lo gnu/java/locale/LocaleInformation_uk.properties.lo gnu/java/locale/LocaleInformation_uk_UA.properties.lo gnu/java/locale/LocaleInformation_ur.properties.lo gnu/java/locale/LocaleInformation_ur_IN.properties.lo gnu/java/locale/LocaleInformation_uz.properties.lo gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Latn.properties.lo gnu/java/locale/LocaleInformation_ve.properties.lo gnu/java/locale/LocaleInformation_vi.properties.lo gnu/java/locale/LocaleInformation_wal.properties.lo gnu/java/locale/LocaleInformation_wal_ET.properties.lo gnu/java/locale/LocaleInformation_wo.properties.lo gnu/java/locale/LocaleInformation_xh.properties.lo gnu/java/locale/LocaleInformation_yo.properties.lo gnu/java/locale/LocaleInformation_zh.properties.lo gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.lo gnu/java/locale/LocaleInformation_zu.properties.lo gnu/java/util/regex/MessagesBundle.properties.lo gnu/java/util/regex/MessagesBundle_fr.properties.lo gnu/java/util/regex/MessagesBundle_it.properties.lo gnu/javax/print/PrinterDialog.properties.lo gnu/javax/print/PrinterDialog_de.properties.lo gnu/javax/security/auth/callback/MessagesBundle.properties.lo java/text/metazones.properties.lo java/util/iso4217.properties.lo java/util/weeks.properties.lo javax/imageio/plugins/jpeg/MessagesBundle.properties.lo javax/swing/text/html/default.css.lo org/ietf/jgss/MessagesBundle.properties.lo META-INF/services/java.util.prefs.PreferencesFactory.lo META-INF/services/java.util.prefs.PreferencesFactory.in.lo META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.lo META-INF/services/javax.sound.midi.spi.MidiFileReader.lo META-INF/services/javax.sound.midi.spi.MidiFileWriter.lo META-INF/services/javax.sound.sampled.spi.AudioFileReader.lo gnu-CORBA.lo gnu-java-awt-dnd-peer-gtk.lo gnu-java-awt-peer-gtk.lo gnu-java-awt-peer-swing.lo gnu-java-beans.lo gnu-java-lang-management.lo gnu-java-math.lo gnu-java-util-prefs-gconf.lo gnu-javax-management.lo gnu-javax-rmi.lo gnu-javax-sound-midi.lo gnu-xml-aelfred2.lo gnu-xml-dom.lo gnu-xml-libxmlj.lo gnu-xml-pipeline.lo gnu-xml-stream.lo gnu-xml-transform.lo gnu-xml-util.lo gnu-xml-validation.lo gnu-xml-xpath.lo java-lang-management.lo javax-imageio.lo javax-rmi.lo javax-xml.lo org-omg-CORBA.lo org-omg-CORBA_2_3.lo org-omg-CosNaming.lo org-omg-Dynamic.lo org-omg-DynamicAny.lo org-omg-IOP.lo org-omg-Messaging.lo org-omg-PortableInterceptor.lo org-omg-PortableServer.lo org-omg-SendingContext.lo org-omg-stub.lo org-relaxng.lo org-w3c.lo org-xml.lo ../libffi/libffi_convenience.la ../zlib/libzgcj_convenience.la ../boehm-gc/libgcjgc_convenience.la
+-libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../hurd/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
++/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -L[...]/hurd.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../hurd/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../hurd/libjava/libgcj.ver -rpath [...]/hurd.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../hurd/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
+ libtool: link: (cd ".libs" && rm -f "libgcj.so.12" && ln -s "libgcj.so.12.0.0" "libgcj.so.12")
+ libtool: link: (cd ".libs" && rm -f "libgcj.so" && ln -s "libgcj.so.12.0.0" "libgcj.so")
+ libtool: link: (cd .libs/libgcj.lax/libltdlc.a && ar x "[...]/hurd.build/[ARCH]/libjava/./libltdl/.libs/libltdlc.a")
+@@ -23502,12 +23076,12 @@
+ libtool: link: ln org/ietf/jgss/MessagesBundle.properties.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o || cp org/ietf/jgss/MessagesBundle.properties.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o
+ libtool: link: ln .libs/libgcj.lax/libffi_convenience.a/debug.o .libs/libgcj.lax/lt91-debug.o || cp .libs/libgcj.lax/libffi_convenience.a/debug.o .libs/libgcj.lax/lt91-debug.o
+ libtool: link: ln .libs/libgcj.lax/libgcjgc_convenience.a/misc.o .libs/libgcj.lax/lt92-misc.o || cp .libs/libgcj.lax/libgcjgc_convenience.a/misc.o .libs/libgcj.lax/lt92-misc.o
+-libtool: link: ar rc .libs/libgcj.a prims.o jni.o exception.o stacktrace.o link.o defineclass.o verify.o jvmti.o interpret.o gnu/classpath/jdwp/natVMFrame.o gnu/classpath/jdwp/natVMMethod.o gnu/classpath/jdwp/natVMVirtualMachine.o gnu/classpath/natConfiguration.o gnu/classpath/natSystemProperties.o gnu/classpath/natVMStackWalker.o gnu/gcj/natCore.o gnu/gcj/convert/JIS0208_to_Unicode.o gnu/gcj/convert/JIS0212_to_Unicode.o gnu/gcj/convert/Unicode_to_JIS.o gnu/gcj/convert/natIconv.o gnu/gcj/convert/natInput_EUCJIS.o gnu/gcj/convert/natInput_SJIS.o gnu/gcj/convert/natOutput_EUCJIS.o gnu/gcj/convert/natOutput_SJIS.o gnu/gcj/io/natSimpleSHSStream.o gnu/gcj/io/shs.o gnu/gcj/jvmti/natBreakpoint.o gnu/gcj/jvmti/natNormalBreakpoint.o gnu/gcj/runtime/natFinalizerThread.o gnu/gcj/runtime/natSharedLibLoader.o gnu/gcj/runtime/natSystemClassLoader.o gnu/gcj/runtime/natStringBuffer.o gnu/gcj/util/natDebug.o gnu/gcj/util/natGCInfo.o gnu/java/lang/natMainThread.o gnu/java/lang/management/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/natVMCompilationMXBeanImpl.o gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/natVMMemoryMXBeanImpl.o gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/natVMThreadMXBeanImpl.o gnu/java/net/natPlainDatagramSocketImpl.o gnu/java/net/natPlainSocketImpl.o gnu/java/net/protocol/core/natCoreInputStream.o gnu/java/nio/natVMPipe.o gnu/java/nio/natVMSelector.o gnu/java/nio/natNIOServerSocket.o gnu/java/nio/natVMChannel.o gnu/java/nio/channels/natFileChannelImpl.o gnu/java/security/jce/prng/natVMSecureRandom.o java/io/natFile.o java/io/natVMObjectInputStream.o java/io/natVMObjectStreamClass.o java/lang/natCharacter.o java/lang/natClass.o java/lang/natClassLoader.o java/lang/natConcreteProcess.o java/lang/natVMDouble.o java/lang/natVMFloat.o java/lang/natMath.o java/lang/natObject.o java/lang/natRuntime.o java/lang/natString.o java/lang/natAbstractStringBuffer.o java/lang/natSystem.o java/lang/natThread.o java/lang/natThreadLocal.o java/lang/natVMClassLoader.o java/lang/natVMProcess.o java/lang/natVMThrowable.o java/lang/ref/natReference.o java/lang/reflect/natArray.o java/lang/reflect/natConstructor.o java/lang/reflect/natField.o java/lang/reflect/natMethod.o java/lang/reflect/natVMProxy.o java/net/natVMInetAddress.o java/net/natVMNetworkInterface.o java/net/natVMURLConnection.o java/nio/channels/natVMChannels.o java/nio/natVMDirectByteBufferImpl.o java/security/natVMAccessController.o java/security/natVMAccessControlState.o java/text/natCollator.o java/util/natVMTimeZone.o java/util/concurrent/atomic/natAtomicLong.o java/util/logging/natLogger.o java/util/zip/natDeflater.o java/util/zip/natInflater.o sun/misc/natUnsafe.o boehm.o posix.o posix-threads.o java/lang/Object.o java/lang/Class.o java/process-Posix.o gnu/awt.o gnu/awt/j2d.o gnu/classpath.o gnu/classpath/debug.o gnu/classpath/toolkit.o gnu/gcj.o gnu/gcj/convert.o gnu/gcj/io.o gnu/gcj/runtime.o gnu/gcj/util.o .libs/libgcj.lax/lt1-awt.o gnu/java/awt/color.o gnu/java/awt/dnd.o gnu/java/awt/font.o gnu/java/awt/font/autofit.o gnu/java/awt/font/opentype.o gnu/java/awt/font/opentype/truetype.o gnu/java/awt/image.o gnu/java/awt/java2d.o gnu/java/awt/peer.o gnu/java/awt/peer/headless.o gnu/java/awt/print.o .libs/libgcj.lax/lt2-io.o gnu/java/lang.o gnu/java/lang/reflect.o gnu/java/locale.o gnu/java/net.o gnu/java/net/loader.o gnu/java/net/local.o gnu/java/net/protocol/core.o gnu/java/net/protocol/file.o gnu/java/net/protocol/ftp.o gnu/java/net/protocol/gcjlib.o gnu/java/net/protocol/http.o gnu/java/net/protocol/https.o gnu/java/net/protocol/jar.o gnu/java/nio.o gnu/java/nio/channels.o gnu/java/nio/charset.o gnu/java/rmi.o gnu/java/rmi/activation.o gnu/java/rmi/dgc.o gnu/java/rmi/registry.o gnu/java/rmi/server.o gnu/java/security.o gnu/java/security/action.o gnu/java/security/ber.o gnu/java/security/der.o gnu/java/security/hash.o .libs/libgcj.lax/lt3-hash.o gnu/java/security/jce/prng.o gnu/java/security/jce/sig.o gnu/java/security/key.o gnu/java/security/key/dss.o gnu/java/security/key/rsa.o gnu/java/security/pkcs.o .libs/libgcj.lax/lt4-prng.o gnu/java/security/provider.o .libs/libgcj.lax/lt5-sig.o .libs/libgcj.lax/lt6-dss.o .libs/libgcj.lax/lt7-rsa.o .libs/libgcj.lax/lt8-util.o gnu/java/security/x509.o gnu/java/security/x509/ext.o gnu/java/text.o .libs/libgcj.lax/lt9-util.o .libs/libgcj.lax/lt10-jar.o gnu/java/util/prefs.o gnu/java/util/regex.o gnu/javax/activation/viewers.o gnu/javax/crypto.o gnu/javax/crypto/assembly.o gnu/javax/crypto/cipher.o gnu/javax/crypto/jce.o .libs/libgcj.lax/lt11-cipher.o .libs/libgcj.lax/lt12-key.o gnu/javax/crypto/jce/keyring.o gnu/javax/crypto/jce/mac.o gnu/javax/crypto/jce/params.o .libs/libgcj.lax/lt13-prng.o .libs/libgcj.lax/lt14-sig.o gnu/javax/crypto/jce/spec.o .libs/libgcj.lax/lt15-key.o gnu/javax/crypto/key/dh.o gnu/javax/crypto/key/srp6.o .libs/libgcj.lax/lt16-keyring.o gnu/javax/crypto/kwa.o .libs/libgcj.lax/lt17-mac.o gnu/javax/crypto/mode.o gnu/javax/crypto/pad.o .libs/libgcj.lax/lt18-prng.o gnu/javax/crypto/sasl.o gnu/javax/crypto/sasl/anonymous.o gnu/javax/crypto/sasl/crammd5.o gnu/javax/crypto/sasl/plain.o gnu/javax/crypto/sasl/srp.o gnu/javax/imageio.o gnu/javax/imageio/bmp.o gnu/javax/imageio/gif.o gnu/javax/imageio/jpeg.o gnu/javax/imageio/png.o gnu/javax/naming/giop.o gnu/javax/naming/ictxImpl/trans.o gnu/javax/naming/jndi/url/corbaname.o .libs/libgcj.lax/lt19-rmi.o gnu/javax/net/ssl.o .libs/libgcj.lax/lt20-provider.o .libs/libgcj.lax/lt21-print.o gnu/javax/print/ipp.o gnu/javax/print/ipp/attribute.o gnu/javax/print/ipp/attribute/defaults.o gnu/javax/print/ipp/attribute/job.o gnu/javax/print/ipp/attribute/printer.o gnu/javax/print/ipp/attribute/supported.o gnu/javax/security/auth.o gnu/javax/security/auth/callback.o gnu/javax/security/auth/login.o gnu/javax/sound.o gnu/javax/sound/sampled/AU.o gnu/javax/sound/sampled/WAV.o gnu/javax/swing/plaf/gnu.o gnu/javax/swing/plaf/metal.o gnu/javax/swing/text/html.o gnu/javax/swing/text/html/css.o gnu/javax/swing/text/html/parser/GnuParserDelegator.o gnu/javax/swing/text/html/parser/HTML_401F.o gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/gnuDTD.o gnu/javax/swing/text/html/parser/htmlAttributeSet.o gnu/javax/swing/text/html/parser/htmlValidator.o gnu/javax/swing/text/html/parser/models.o gnu/javax/swing/text/html/parser/support.o gnu/javax/swing/text/html/parser/support/low.o gnu/javax/swing/tree.o java/applet.o .libs/libgcj.lax/lt22-awt.o .libs/libgcj.lax/lt23-color.o java/awt/datatransfer.o .libs/libgcj.lax/lt24-dnd.o .libs/libgcj.lax/lt25-peer.o java/awt/event.o .libs/libgcj.lax/lt26-font.o java/awt/geom.o java/awt/im.o java/awt/im/spi.o .libs/libgcj.lax/lt27-image.o java/awt/image/renderable.o .libs/libgcj.lax/lt28-peer.o .libs/libgcj.lax/lt29-print.o java/beans.o java/beans/beancontext.o .libs/libgcj.lax/lt30-io.o .libs/libgcj.lax/lt31-lang.o java/lang/annotation.o java/lang/instrument.o java/lang/ref.o .libs/libgcj.lax/lt32-reflect.o java/math.o .libs/libgcj.lax/lt33-net.o .libs/libgcj.lax/lt34-nio.o .libs/libgcj.lax/lt35-channels.o .libs/libgcj.lax/lt36-spi.o .libs/libgcj.lax/lt37-charset.o .libs/libgcj.lax/lt38-spi.o .libs/libgcj.lax/lt39-rmi.o .libs/libgcj.lax/lt40-activation.o .libs/libgcj.lax/lt41-dgc.o .libs/libgcj.lax/lt42-registry.o .libs/libgcj.lax/lt43-server.o .libs/libgcj.lax/lt44-security.o java/security/acl.o java/security/cert.o java/security/interfaces.o .libs/libgcj.lax/lt45-spec.o java/sql.o .libs/libgcj.lax/lt46-text.o .libs/libgcj.lax/lt47-spi.o .libs/libgcj.lax/lt48-util.o java/util/concurrent.o java/util/concurrent/atomic.o java/util/concurrent/locks.o .libs/libgcj.lax/lt49-jar.o java/util/logging.o .libs/libgcj.lax/lt50-prefs.o .libs/libgcj.lax/lt51-regex.o .libs/libgcj.lax/lt52-spi.o java/util/zip.o javax/accessibility.o .libs/libgcj.lax/lt53-activation.o javax/activity.o .libs/libgcj.lax/lt54-crypto.o .libs/libgcj.lax/lt55-interfaces.o .libs/libgcj.lax/lt56-spec.o javax/management.o javax/management/loading.o javax/management/openmbean.o javax/management/remote.o .libs/libgcj.lax/lt57-rmi.o javax/naming.o javax/naming/directory.o .libs/libgcj.lax/lt58-event.o javax/naming/ldap.o .libs/libgcj.lax/lt59-spi.o .libs/libgcj.lax/lt60-net.o .libs/libgcj.lax/lt61-ssl.o .libs/libgcj.lax/lt62-print.o .libs/libgcj.lax/lt63-attribute.o javax/print/attribute/standard.o .libs/libgcj.lax/lt64-event.o .libs/libgcj.lax/lt65-auth.o .libs/libgcj.lax/lt66-callback.o javax/security/auth/kerberos.o .libs/libgcj.lax/lt67-login.o .libs/libgcj.lax/lt68-spi.o javax/security/auth/x500.o .libs/libgcj.lax/lt69-cert.o .libs/libgcj.lax/lt70-sasl.o javax/sound/midi.o .libs/libgcj.lax/lt71-spi.o javax/sound/sampled.o .libs/libgcj.lax/lt72-spi.o .libs/libgcj.lax/lt73-sql.o javax/swing.o javax/swing/border.o javax/swing/colorchooser.o .libs/libgcj.lax/lt74-event.o javax/swing/filechooser.o javax/swing/plaf.o javax/swing/plaf/basic.o .libs/libgcj.lax/lt75-metal.o javax/swing/plaf/multi.o javax/swing/plaf/synth.o javax/swing/table.o .libs/libgcj.lax/lt76-text.o .libs/libgcj.lax/lt77-html.o javax/swing/text/html/parser.o javax/swing/text/rtf.o .libs/libgcj.lax/lt78-tree.o javax/swing/undo.o javax/tools.o javax/transaction.o javax/transaction/xa.o org/ietf/jgss.o .libs/libgcj.lax/lt79-awt.o sun/misc.o .libs/libgcj.lax/lt80-reflect.o .libs/libgcj.lax/lt81-annotation.o .libs/libgcj.lax/lt82-misc.o gnu/classpath/jdwp.o .libs/libgcj.lax/lt83-event.o gnu/classpath/jdwp/event/filters.o .libs/libgcj.lax/lt84-exception.o gnu/classpath/jdwp/id.o gnu/classpath/jdwp/processor.o gnu/classpath/jdwp/transport.o .libs/libgcj.lax/lt85-util.o gnu/classpath/jdwp/value.o .libs/libgcj.lax/lt86-jvmti.o gnu/java/awt/font/fonts.properties.o gnu/java/awt/peer/gtk/font.properties.o .libs/libgcj.lax/lt87-fonts.properties.o gnu/java/awt/peer/x/xfonts.properties.o gnu/java/locale/LocaleInformation.properties.o gnu/java/locale/LocaleInformation_aa.properties.o gnu/java/locale/LocaleInformation_aa_DJ.properties.o gnu/java/locale/LocaleInformation_aa_ER.properties.o gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/LocaleInformation_aa_ET.properties.o gnu/java/locale/LocaleInformation_af.properties.o gnu/java/locale/LocaleInformation_af_NA.properties.o gnu/java/locale/LocaleInformation_af_ZA.properties.o gnu/java/locale/LocaleInformation_ak.properties.o gnu/java/locale/LocaleInformation_am.properties.o gnu/java/locale/LocaleInformation_am_ET.properties.o gnu/java/locale/LocaleInformation_ar.properties.o gnu/java/locale/LocaleInformation_ar_DZ.properties.o gnu/java/locale/LocaleInformation_ar_JO.properties.o gnu/java/locale/LocaleInformation_ar_LB.properties.o gnu/java/locale/LocaleInformation_ar_MA.properties.o gnu/java/locale/LocaleInformation_ar_QA.properties.o gnu/java/locale/LocaleInformation_ar_SA.properties.o gnu/java/locale/LocaleInformation_ar_SY.properties.o gnu/java/locale/LocaleInformation_ar_TN.properties.o gnu/java/locale/LocaleInformation_ar_YE.properties.o gnu/java/locale/LocaleInformation_as.properties.o gnu/java/locale/LocaleInformation_as_IN.properties.o gnu/java/locale/LocaleInformation_az.properties.o gnu/java/locale/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/LocaleInformation_be.properties.o gnu/java/locale/LocaleInformation_be_BY.properties.o gnu/java/locale/LocaleInformation_bg.properties.o gnu/java/locale/LocaleInformation_bg_BG.properties.o gnu/java/locale/LocaleInformation_bn.properties.o gnu/java/locale/LocaleInformation_bn_IN.properties.o gnu/java/locale/LocaleInformation_bo.properties.o gnu/java/locale/LocaleInformation_bs.properties.o gnu/java/locale/LocaleInformation_byn.properties.o gnu/java/locale/LocaleInformation_byn_ER.properties.o gnu/java/locale/LocaleInformation_ca.properties.o gnu/java/locale/LocaleInformation_ca_ES.properties.o gnu/java/locale/LocaleInformation_cch.properties.o gnu/java/locale/LocaleInformation_cop.properties.o gnu/java/locale/LocaleInformation_cs.properties.o gnu/java/locale/LocaleInformation_cs_CZ.properties.o gnu/java/locale/LocaleInformation_cy.properties.o gnu/java/locale/LocaleInformation_cy_GB.properties.o gnu/java/locale/LocaleInformation_da.properties.o gnu/java/locale/LocaleInformation_da_DK.properties.o gnu/java/locale/LocaleInformation_de.properties.o gnu/java/locale/LocaleInformation_de_AT.properties.o gnu/java/locale/LocaleInformation_de_BE.properties.o gnu/java/locale/LocaleInformation_de_CH.properties.o gnu/java/locale/LocaleInformation_de_DE.properties.o gnu/java/locale/LocaleInformation_de_LI.properties.o gnu/java/locale/LocaleInformation_de_LU.properties.o gnu/java/locale/LocaleInformation_dv.properties.o gnu/java/locale/LocaleInformation_dv_MV.properties.o gnu/java/locale/LocaleInformation_dz.properties.o gnu/java/locale/LocaleInformation_dz_BT.properties.o gnu/java/locale/LocaleInformation_ee.properties.o gnu/java/locale/LocaleInformation_el.properties.o gnu/java/locale/LocaleInformation_el_CY.properties.o gnu/java/locale/LocaleInformation_el_GR.properties.o gnu/java/locale/LocaleInformation_en.properties.o gnu/java/locale/LocaleInformation_en_AS.properties.o gnu/java/locale/LocaleInformation_en_AU.properties.o gnu/java/locale/LocaleInformation_en_BE.properties.o gnu/java/locale/LocaleInformation_en_BW.properties.o gnu/java/locale/LocaleInformation_en_BZ.properties.o gnu/java/locale/LocaleInformation_en_CA.properties.o gnu/java/locale/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/LocaleInformation_en_GB.properties.o gnu/java/locale/LocaleInformation_en_GU.properties.o gnu/java/locale/LocaleInformation_en_HK.properties.o gnu/java/locale/LocaleInformation_en_IE.properties.o gnu/java/locale/LocaleInformation_en_IN.properties.o gnu/java/locale/LocaleInformation_en_JM.properties.o gnu/java/locale/LocaleInformation_en_MH.properties.o gnu/java/locale/LocaleInformation_en_MP.properties.o gnu/java/locale/LocaleInformation_en_MT.properties.o gnu/java/locale/LocaleInformation_en_NA.properties.o gnu/java/locale/LocaleInformation_en_NZ.properties.o gnu/java/locale/LocaleInformation_en_PH.properties.o gnu/java/locale/LocaleInformation_en_PK.properties.o gnu/java/locale/LocaleInformation_en_SG.properties.o gnu/java/locale/LocaleInformation_en_Shaw.properties.o gnu/java/locale/LocaleInformation_en_TT.properties.o gnu/java/locale/LocaleInformation_en_UM.properties.o gnu/java/locale/LocaleInformation_en_US.properties.o gnu/java/locale/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/LocaleInformation_en_VI.properties.o gnu/java/locale/LocaleInformation_en_ZA.properties.o gnu/java/locale/LocaleInformation_en_ZW.properties.o gnu/java/locale/LocaleInformation_eo.properties.o gnu/java/locale/LocaleInformation_es.properties.o gnu/java/locale/LocaleInformation_es_AR.properties.o gnu/java/locale/LocaleInformation_es_BO.properties.o gnu/java/locale/LocaleInformation_es_CL.properties.o gnu/java/locale/LocaleInformation_es_CO.properties.o gnu/java/locale/LocaleInformation_es_CR.properties.o gnu/java/locale/LocaleInformation_es_DO.properties.o gnu/java/locale/LocaleInformation_es_EC.properties.o gnu/java/locale/LocaleInformation_es_ES.properties.o gnu/java/locale/LocaleInformation_es_GT.properties.o gnu/java/locale/LocaleInformation_es_HN.properties.o gnu/java/locale/LocaleInformation_es_MX.properties.o gnu/java/locale/LocaleInformation_es_NI.properties.o gnu/java/locale/LocaleInformation_es_PA.properties.o gnu/java/locale/LocaleInformation_es_PE.properties.o gnu/java/locale/LocaleInformation_es_PR.properties.o gnu/java/locale/LocaleInformation_es_PY.properties.o gnu/java/locale/LocaleInformation_es_SV.properties.o gnu/java/locale/LocaleInformation_es_US.properties.o gnu/java/locale/LocaleInformation_es_UY.properties.o gnu/java/locale/LocaleInformation_es_VE.properties.o gnu/java/locale/LocaleInformation_et.properties.o gnu/java/locale/LocaleInformation_et_EE.properties.o gnu/java/locale/LocaleInformation_eu.properties.o gnu/java/locale/LocaleInformation_eu_ES.properties.o gnu/java/locale/LocaleInformation_fa.properties.o gnu/java/locale/LocaleInformation_fa_AF.properties.o gnu/java/locale/LocaleInformation_fa_IR.properties.o gnu/java/locale/LocaleInformation_fi.properties.o gnu/java/locale/LocaleInformation_fi_FI.properties.o gnu/java/locale/LocaleInformation_fil.properties.o gnu/java/locale/LocaleInformation_fo.properties.o gnu/java/locale/LocaleInformation_fo_FO.properties.o gnu/java/locale/LocaleInformation_fr.properties.o gnu/java/locale/LocaleInformation_fr_BE.properties.o gnu/java/locale/LocaleInformation_fr_CA.properties.o gnu/java/locale/LocaleInformation_fr_CH.properties.o gnu/java/locale/LocaleInformation_fr_LU.properties.o gnu/java/locale/LocaleInformation_fur.properties.o gnu/java/locale/LocaleInformation_ga.properties.o gnu/java/locale/LocaleInformation_ga_IE.properties.o gnu/java/locale/LocaleInformation_gaa.properties.o gnu/java/locale/LocaleInformation_gez.properties.o gnu/java/locale/LocaleInformation_gez_ER.properties.o gnu/java/locale/LocaleInformation_gez_ET.properties.o gnu/java/locale/LocaleInformation_gl.properties.o gnu/java/locale/LocaleInformation_gl_ES.properties.o gnu/java/locale/LocaleInformation_gu.properties.o gnu/java/locale/LocaleInformation_gu_IN.properties.o gnu/java/locale/LocaleInformation_gv.properties.o gnu/java/locale/LocaleInformation_gv_GB.properties.o gnu/java/locale/LocaleInformation_ha.properties.o gnu/java/locale/LocaleInformation_ha_Arab.properties.o gnu/java/locale/LocaleInformation_haw.properties.o gnu/java/locale/LocaleInformation_haw_US.properties.o gnu/java/locale/LocaleInformation_he.properties.o gnu/java/locale/LocaleInformation_he_IL.properties.o gnu/java/locale/LocaleInformation_hi.properties.o gnu/java/locale/LocaleInformation_hi_IN.properties.o gnu/java/locale/LocaleInformation_hr.properties.o gnu/java/locale/LocaleInformation_hu.properties.o gnu/java/locale/LocaleInformation_hu_HU.properties.o gnu/java/locale/LocaleInformation_hy.properties.o gnu/java/locale/LocaleInformation_hy_AM.properties.o gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/LocaleInformation_ia.properties.o gnu/java/locale/LocaleInformation_id.properties.o gnu/java/locale/LocaleInformation_id_ID.properties.o gnu/java/locale/LocaleInformation_ig.properties.o gnu/java/locale/LocaleInformation_ii.properties.o gnu/java/locale/LocaleInformation_is.properties.o gnu/java/locale/LocaleInformation_is_IS.properties.o gnu/java/locale/LocaleInformation_it.properties.o gnu/java/locale/LocaleInformation_it_CH.properties.o gnu/java/locale/LocaleInformation_it_IT.properties.o gnu/java/locale/LocaleInformation_iu.properties.o gnu/java/locale/LocaleInformation_ja.properties.o gnu/java/locale/LocaleInformation_ja_JP.properties.o gnu/java/locale/LocaleInformation_ka.properties.o gnu/java/locale/LocaleInformation_kaj.properties.o gnu/java/locale/LocaleInformation_kam.properties.o gnu/java/locale/LocaleInformation_kcg.properties.o gnu/java/locale/LocaleInformation_kfo.properties.o gnu/java/locale/LocaleInformation_kk.properties.o gnu/java/locale/LocaleInformation_kk_KZ.properties.o gnu/java/locale/LocaleInformation_kl.properties.o gnu/java/locale/LocaleInformation_kl_GL.properties.o gnu/java/locale/LocaleInformation_km.properties.o gnu/java/locale/LocaleInformation_km_KH.properties.o gnu/java/locale/LocaleInformation_kn.properties.o gnu/java/locale/LocaleInformation_kn_IN.properties.o gnu/java/locale/LocaleInformation_ko.properties.o gnu/java/locale/LocaleInformation_ko_KR.properties.o gnu/java/locale/LocaleInformation_kok.properties.o gnu/java/locale/LocaleInformation_kok_IN.properties.o gnu/java/locale/LocaleInformation_kpe.properties.o gnu/java/locale/LocaleInformation_ku.properties.o gnu/java/locale/LocaleInformation_ku_Arab.properties.o gnu/java/locale/LocaleInformation_ku_Latn.properties.o gnu/java/locale/LocaleInformation_kw.properties.o gnu/java/locale/LocaleInformation_kw_GB.properties.o gnu/java/locale/LocaleInformation_ky.properties.o gnu/java/locale/LocaleInformation_ln.properties.o gnu/java/locale/LocaleInformation_lo.properties.o gnu/java/locale/LocaleInformation_lo_LA.properties.o gnu/java/locale/LocaleInformation_lt.properties.o gnu/java/locale/LocaleInformation_lt_LT.properties.o gnu/java/locale/LocaleInformation_lv.properties.o gnu/java/locale/LocaleInformation_lv_LV.properties.o gnu/java/locale/LocaleInformation_mk.properties.o gnu/java/locale/LocaleInformation_ml.properties.o gnu/java/locale/LocaleInformation_ml_IN.properties.o gnu/java/locale/LocaleInformation_mn.properties.o gnu/java/locale/LocaleInformation_mr.properties.o gnu/java/locale/LocaleInformation_mr_IN.properties.o gnu/java/locale/LocaleInformation_ms.properties.o gnu/java/locale/LocaleInformation_ms_BN.properties.o gnu/java/locale/LocaleInformation_ms_MY.properties.o gnu/java/locale/LocaleInformation_mt.properties.o gnu/java/locale/LocaleInformation_mt_MT.properties.o gnu/java/locale/LocaleInformation_my.properties.o gnu/java/locale/LocaleInformation_nb.properties.o gnu/java/locale/LocaleInformation_nb_NO.properties.o gnu/java/locale/LocaleInformation_ne.properties.o gnu/java/locale/LocaleInformation_nl.properties.o gnu/java/locale/LocaleInformation_nl_BE.properties.o gnu/java/locale/LocaleInformation_nl_NL.properties.o gnu/java/locale/LocaleInformation_nn.properties.o gnu/java/locale/LocaleInformation_nn_NO.properties.o gnu/java/locale/LocaleInformation_nr.properties.o gnu/java/locale/LocaleInformation_nso.properties.o gnu/java/locale/LocaleInformation_ny.properties.o gnu/java/locale/LocaleInformation_om.properties.o gnu/java/locale/LocaleInformation_om_ET.properties.o gnu/java/locale/LocaleInformation_om_KE.properties.o gnu/java/locale/LocaleInformation_or.properties.o gnu/java/locale/LocaleInformation_or_IN.properties.o gnu/java/locale/LocaleInformation_pa.properties.o gnu/java/locale/LocaleInformation_pa_Arab.properties.o gnu/java/locale/LocaleInformation_pa_IN.properties.o gnu/java/locale/LocaleInformation_pl.properties.o gnu/java/locale/LocaleInformation_pl_PL.properties.o gnu/java/locale/LocaleInformation_ps.properties.o gnu/java/locale/LocaleInformation_ps_AF.properties.o gnu/java/locale/LocaleInformation_pt.properties.o gnu/java/locale/LocaleInformation_pt_BR.properties.o gnu/java/locale/LocaleInformation_pt_PT.properties.o gnu/java/locale/LocaleInformation_ro.properties.o gnu/java/locale/LocaleInformation_ro_RO.properties.o gnu/java/locale/LocaleInformation_ru.properties.o gnu/java/locale/LocaleInformation_ru_RU.properties.o gnu/java/locale/LocaleInformation_ru_UA.properties.o gnu/java/locale/LocaleInformation_rw.properties.o gnu/java/locale/LocaleInformation_sa.properties.o gnu/java/locale/LocaleInformation_sa_IN.properties.o gnu/java/locale/LocaleInformation_se.properties.o gnu/java/locale/LocaleInformation_se_FI.properties.o gnu/java/locale/LocaleInformation_si.properties.o gnu/java/locale/LocaleInformation_sid.properties.o gnu/java/locale/LocaleInformation_sid_ET.properties.o gnu/java/locale/LocaleInformation_sk.properties.o gnu/java/locale/LocaleInformation_sk_SK.properties.o gnu/java/locale/LocaleInformation_sl.properties.o gnu/java/locale/LocaleInformation_sl_SI.properties.o gnu/java/locale/LocaleInformation_so.properties.o gnu/java/locale/LocaleInformation_so_DJ.properties.o gnu/java/locale/LocaleInformation_so_ET.properties.o gnu/java/locale/LocaleInformation_so_KE.properties.o gnu/java/locale/LocaleInformation_so_SO.properties.o gnu/java/locale/LocaleInformation_sq.properties.o gnu/java/locale/LocaleInformation_sq_AL.properties.o gnu/java/locale/LocaleInformation_sr.properties.o gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_Latn.properties.o gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/LocaleInformation_ss.properties.o gnu/java/locale/LocaleInformation_ssy.properties.o gnu/java/locale/LocaleInformation_st.properties.o gnu/java/locale/LocaleInformation_sv.properties.o gnu/java/locale/LocaleInformation_sv_FI.properties.o gnu/java/locale/LocaleInformation_sv_SE.properties.o gnu/java/locale/LocaleInformation_sw.properties.o gnu/java/locale/LocaleInformation_sw_KE.properties.o gnu/java/locale/LocaleInformation_sw_TZ.properties.o gnu/java/locale/LocaleInformation_syr.properties.o gnu/java/locale/LocaleInformation_syr_SY.properties.o gnu/java/locale/LocaleInformation_ta.properties.o gnu/java/locale/LocaleInformation_ta_IN.properties.o gnu/java/locale/LocaleInformation_te.properties.o gnu/java/locale/LocaleInformation_te_IN.properties.o gnu/java/locale/LocaleInformation_tg.properties.o gnu/java/locale/LocaleInformation_th.properties.o gnu/java/locale/LocaleInformation_th_TH.properties.o gnu/java/locale/LocaleInformation_ti.properties.o gnu/java/locale/LocaleInformation_ti_ER.properties.o gnu/java/locale/LocaleInformation_ti_ET.properties.o gnu/java/locale/LocaleInformation_tig.properties.o gnu/java/locale/LocaleInformation_tig_ER.properties.o gnu/java/locale/LocaleInformation_tn.properties.o gnu/java/locale/LocaleInformation_to.properties.o gnu/java/locale/LocaleInformation_tr.properties.o gnu/java/locale/LocaleInformation_tr_TR.properties.o gnu/java/locale/LocaleInformation_trv.properties.o gnu/java/locale/LocaleInformation_ts.properties.o gnu/java/locale/LocaleInformation_tt.properties.o gnu/java/locale/LocaleInformation_tt_RU.properties.o gnu/java/locale/LocaleInformation_ug.properties.o gnu/java/locale/LocaleInformation_uk.properties.o gnu/java/locale/LocaleInformation_uk_UA.properties.o gnu/java/locale/LocaleInformation_ur.properties.o gnu/java/locale/LocaleInformation_ur_IN.properties.o gnu/java/locale/LocaleInformation_uz.properties.o gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Latn.properties.o gnu/java/locale/LocaleInformation_ve.properties.o gnu/java/locale/LocaleInformation_vi.properties.o gnu/java/locale/LocaleInformation_wal.properties.o gnu/java/locale/LocaleInformation_wal_ET.properties.o gnu/java/locale/LocaleInformation_wo.properties.o gnu/java/locale/LocaleInformation_xh.properties.o gnu/java/locale/LocaleInformation_yo.properties.o gnu/java/locale/LocaleInformation_zh.properties.o gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/LocaleInformation_zh_Hant.properties.o gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/LocaleInformation_zu.properties.o gnu/java/util/regex/MessagesBundle.properties.o gnu/java/util/regex/MessagesBundle_fr.properties.o gnu/java/util/regex/MessagesBundle_it.properties.o gnu/javax/print/PrinterDialog.properties.o gnu/javax/print/PrinterDialog_de.properties.o .libs/libgcj.lax/lt88-MessagesBundle.properties.o java/text/metazones.properties.o java/util/iso4217.properties.o java/util/weeks.properties.o .libs/libgcj.lax/lt89-MessagesBundle.properties.o javax/swing/text/html/default.css.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o META-INF/services/java.util.prefs.PreferencesFactory.o META-INF/services/java.util.prefs.PreferencesFactory.in.o META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/javax.sound.midi.spi.MidiFileReader.o META-INF/services/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/javax.sound.sampled.spi.AudioFileReader.o gnu-CORBA.o gnu-java-awt-dnd-peer-gtk.o gnu-java-awt-peer-gtk.o gnu-java-awt-peer-swing.o gnu-java-beans.o gnu-java-lang-management.o gnu-java-math.o gnu-java-util-prefs-gconf.o gnu-javax-management.o gnu-javax-rmi.o gnu-javax-sound-midi.o gnu-xml-aelfred2.o gnu-xml-dom.o gnu-xml-libxmlj.o gnu-xml-pipeline.o gnu-xml-stream.o gnu-xml-transform.o gnu-xml-util.o gnu-xml-validation.o gnu-xml-xpath.o java-lang-management.o javax-imageio.o javax-rmi.o javax-xml.o org-omg-CORBA.o org-omg-CORBA_2_3.o org-omg-CosNaming.o org-omg-Dynamic.o org-omg-DynamicAny.o org-omg-IOP.o org-omg-Messaging.o org-omg-PortableInterceptor.o org-omg-PortableServer.o org-omg-SendingContext.o org-omg-stub.o org-relaxng.o org-w3c.o org-xml.o .libs/libgcj.lax/libltdlc.a/ltdl.o .libs/libgcj.lax/libfdlibm.a/w_remainder.o .libs/libgcj.lax/libfdlibm.a/s_fabs.o .libs/libgcj.lax/libfdlibm.a/w_acos.o .libs/libgcj.lax/libfdlibm.a/sf_fabs.o .libs/libgcj.lax/libfdlibm.a/w_atan2.o .libs/libgcj.lax/libfdlibm.a/e_fmod.o .libs/libgcj.lax/libfdlibm.a/w_log.o .libs/libgcj.lax/libfdlibm.a/e_acos.o .libs/libgcj.lax/libfdlibm.a/e_sqrt.o .libs/libgcj.lax/libfdlibm.a/w_asin.o .libs/libgcj.lax/libfdlibm.a/w_log10.o .libs/libgcj.lax/libfdlibm.a/s_sin.o .libs/libgcj.lax/libfdlibm.a/k_cos.o .libs/libgcj.lax/libfdlibm.a/k_sin.o .libs/libgcj.lax/libfdlibm.a/s_rint.o .libs/libgcj.lax/libfdlibm.a/w_hypot.o .libs/libgcj.lax/libfdlibm.a/k_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/w_sqrt.o .libs/libgcj.lax/libfdlibm.a/s_tan.o .libs/libgcj.lax/libfdlibm.a/s_copysign.o .libs/libgcj.lax/libfdlibm.a/s_finite.o .libs/libgcj.lax/libfdlibm.a/e_hypot.o .libs/libgcj.lax/libfdlibm.a/w_exp.o .libs/libgcj.lax/libfdlibm.a/e_exp.o .libs/libgcj.lax/libfdlibm.a/mprec.o .libs/libgcj.lax/libfdlibm.a/s_log1p.o .libs/libgcj.lax/libfdlibm.a/w_pow.o .libs/libgcj.lax/libfdlibm.a/w_cosh.o .libs/libgcj.lax/libfdlibm.a/w_fmod.o .libs/libgcj.lax/libfdlibm.a/k_tan.o .libs/libgcj.lax/libfdlibm.a/s_expm1.o .libs/libgcj.lax/libfdlibm.a/s_floor.o .libs/libgcj.lax/libfdlibm.a/s_cbrt.o .libs/libgcj.lax/libfdlibm.a/s_ceil.o .libs/libgcj.lax/libfdlibm.a/e_asin.o .libs/libgcj.lax/libfdlibm.a/strtod.o .libs/libgcj.lax/libfdlibm.a/w_sinh.o .libs/libgcj.lax/libfdlibm.a/e_atan2.o .libs/libgcj.lax/libfdlibm.a/s_scalbn.o .libs/libgcj.lax/libfdlibm.a/dtoa.o .libs/libgcj.lax/libfdlibm.a/s_cos.o .libs/libgcj.lax/libfdlibm.a/e_scalb.o .libs/libgcj.lax/libfdlibm.a/e_log.o .libs/libgcj.lax/libfdlibm.a/e_log10.o .libs/libgcj.lax/libfdlibm.a/e_pow.o .libs/libgcj.lax/libfdlibm.a/s_atan.o .libs/libgcj.lax/libfdlibm.a/e_cosh.o .libs/libgcj.lax/libfdlibm.a/s_tanh.o .libs/libgcj.lax/libfdlibm.a/e_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/e_remainder.o .libs/libgcj.lax/libfdlibm.a/sf_rint.o .libs/libgcj.lax/libfdlibm.a/e_sinh.o .libs/libgcj.lax/libffi_convenience.a/ffi.o .libs/libgcj.lax/libffi_convenience.a/sysv.o .libs/libgcj.lax/libffi_convenience.a/raw_api.o .libs/libgcj.lax/lt91-debug.o .libs/libgcj.lax/libffi_convenience.a/types.o .libs/libgcj.lax/libffi_convenience.a/closures.o .libs/libgcj.lax/libffi_convenience.a/prep_cif.o .libs/libgcj.lax/libffi_convenience.a/java_raw_api.o .libs/libgcj.lax/libzgcj_convenience.a/adler32.o .libs/libgcj.lax/libzgcj_convenience.a/gzio.o .libs/libgcj.lax/libzgcj_convenience.a/inftrees.o .libs/libgcj.lax/libzgcj_convenience.a/uncompr.o .libs/libgcj.lax/libzgcj_convenience.a/crc32.o .libs/libgcj.lax/libzgcj_convenience.a/compress.o .libs/libgcj.lax/libzgcj_convenience.a/inffast.o .libs/libgcj.lax/libzgcj_convenience.a/zutil.o .libs/libgcj.lax/libzgcj_convenience.a/inflate.o .libs/libgcj.lax/libzgcj_convenience.a/deflate.o .libs/libgcj.lax/libzgcj_convenience.a/trees.o .libs/libgcj.lax/libzgcj_convenience.a/infback.o .libs/libgcj.lax/libgcjgc_convenience.a/malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/mallocx.o .libs/libgcj.lax/libgcjgc_convenience.a/os_dep.o .libs/libgcj.lax/libgcjgc_convenience.a/typd_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/darwin_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/mark_rts.o .libs/libgcj.lax/libgcjgc_convenience.a/ptr_chck.o .libs/libgcj.lax/libgcjgc_convenience.a/backgraph.o .libs/libgcj.lax/libgcjgc_convenience.a/gc_dlopen.o .libs/libgcj.lax/libgcjgc_convenience.a/pcr_interface.o .libs/libgcj.lax/libgcjgc_convenience.a/reclaim.o .libs/libgcj.lax/libgcjgc_convenience.a/win32_threads.o .libs/libgcj.lax/libgcjgc_convenience.a/allchblk.o .libs/libgcj.lax/libgcjgc_convenience.a/gcj_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/finalize.o .libs/libgcj.lax/lt92-misc.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/blacklst.o .libs/libgcj.lax/libgcjgc_convenience.a/obj_map.o .libs/libgcj.lax/libgcjgc_convenience.a/dbg_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/new_hblk.o .libs/libgcj.lax/libgcjgc_convenience.a/alloc.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_support.o .libs/libgcj.lax/libgcjgc_convenience.a/real_malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/mach_dep.o .libs/libgcj.lax/libgcjgc_convenience.a/headers.o .libs/libgcj.lax/libgcjgc_convenience.a/dyn_load.o .libs/libgcj.lax/libgcjgc_convenience.a/specific.o .libs/libgcj.lax/libgcjgc_convenience.a/checksums.o .libs/libgcj.lax/libgcjgc_convenience.a/stubborn.o .libs/libgcj.lax/libgcjgc_convenience.a/mark.o
++libtool: link: ar rc .libs/libgcj.a prims.o jni.o exception.o stacktrace.o link.o defineclass.o verify.o jvmti.o interpret.o gnu/classpath/jdwp/natVMFrame.o gnu/classpath/jdwp/natVMMethod.o gnu/classpath/jdwp/natVMVirtualMachine.o gnu/classpath/natConfiguration.o gnu/classpath/natSystemProperties.o gnu/classpath/natVMStackWalker.o gnu/gcj/natCore.o gnu/gcj/convert/JIS0208_to_Unicode.o gnu/gcj/convert/JIS0212_to_Unicode.o gnu/gcj/convert/Unicode_to_JIS.o gnu/gcj/convert/natIconv.o gnu/gcj/convert/natInput_EUCJIS.o gnu/gcj/convert/natInput_SJIS.o gnu/gcj/convert/natOutput_EUCJIS.o gnu/gcj/convert/natOutput_SJIS.o gnu/gcj/io/natSimpleSHSStream.o gnu/gcj/io/shs.o gnu/gcj/jvmti/natBreakpoint.o gnu/gcj/jvmti/natNormalBreakpoint.o gnu/gcj/runtime/natFinalizerThread.o gnu/gcj/runtime/natSharedLibLoader.o gnu/gcj/runtime/natSystemClassLoader.o gnu/gcj/runtime/natStringBuffer.o gnu/gcj/util/natDebug.o gnu/gcj/util/natGCInfo.o gnu/java/lang/natMainThread.o gnu/java/lang/management/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/natVMCompilationMXBeanImpl.o gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/natVMMemoryMXBeanImpl.o gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/natVMThreadMXBeanImpl.o gnu/java/net/natPlainDatagramSocketImpl.o gnu/java/net/natPlainSocketImpl.o gnu/java/net/protocol/core/natCoreInputStream.o gnu/java/nio/natVMPipe.o gnu/java/nio/natVMSelector.o gnu/java/nio/natNIOServerSocket.o gnu/java/nio/natVMChannel.o gnu/java/nio/channels/natFileChannelImpl.o gnu/java/security/jce/prng/natVMSecureRandom.o java/io/natFile.o java/io/natVMObjectInputStream.o java/io/natVMObjectStreamClass.o java/lang/natCharacter.o java/lang/natClass.o java/lang/natClassLoader.o java/lang/natConcreteProcess.o java/lang/natVMDouble.o java/lang/natVMFloat.o java/lang/natMath.o java/lang/natObject.o java/lang/natRuntime.o java/lang/natString.o java/lang/natAbstractStringBuffer.o java/lang/natSystem.o java/lang/natThread.o java/lang/natThreadLocal.o java/lang/natVMClassLoader.o java/lang/natVMProcess.o java/lang/natVMThrowable.o java/lang/ref/natReference.o java/lang/reflect/natArray.o java/lang/reflect/natConstructor.o java/lang/reflect/natField.o java/lang/reflect/natMethod.o java/lang/reflect/natVMProxy.o java/net/natVMInetAddress.o java/net/natVMNetworkInterface.o java/net/natVMURLConnection.o java/nio/channels/natVMChannels.o java/nio/natVMDirectByteBufferImpl.o java/security/natVMAccessController.o java/security/natVMAccessControlState.o java/text/natCollator.o java/util/natVMTimeZone.o java/util/concurrent/atomic/natAtomicLong.o java/util/logging/natLogger.o java/util/zip/natDeflater.o java/util/zip/natInflater.o sun/misc/natUnsafe.o boehm.o posix.o posix-threads.o java/lang/Object.o java/lang/Class.o java/process-Posix.o gnu/awt.o gnu/awt/j2d.o gnu/classpath.o gnu/classpath/debug.o gnu/classpath/toolkit.o gnu/gcj.o gnu/gcj/convert.o gnu/gcj/io.o gnu/gcj/runtime.o gnu/gcj/util.o .libs/libgcj.lax/lt1-awt.o gnu/java/awt/color.o gnu/java/awt/dnd.o gnu/java/awt/font.o gnu/java/awt/font/autofit.o gnu/java/awt/font/opentype.o gnu/java/awt/font/opentype/truetype.o gnu/java/awt/image.o gnu/java/awt/java2d.o gnu/java/awt/peer.o gnu/java/awt/peer/headless.o gnu/java/awt/print.o .libs/libgcj.lax/lt2-io.o gnu/java/lang.o gnu/java/lang/reflect.o gnu/java/locale.o gnu/java/net.o gnu/java/net/loader.o gnu/java/net/local.o gnu/java/net/protocol/core.o gnu/java/net/protocol/file.o gnu/java/net/protocol/ftp.o gnu/java/net/protocol/gcjlib.o gnu/java/net/protocol/http.o gnu/java/net/protocol/https.o gnu/java/net/protocol/jar.o gnu/java/nio.o gnu/java/nio/channels.o gnu/java/nio/charset.o gnu/java/rmi.o gnu/java/rmi/activation.o gnu/java/rmi/dgc.o gnu/java/rmi/registry.o gnu/java/rmi/server.o gnu/java/security.o gnu/java/security/action.o gnu/java/security/ber.o gnu/java/security/der.o gnu/java/security/hash.o .libs/libgcj.lax/lt3-hash.o gnu/java/security/jce/prng.o gnu/java/security/jce/sig.o gnu/java/security/key.o gnu/java/security/key/dss.o gnu/java/security/key/rsa.o gnu/java/security/pkcs.o .libs/libgcj.lax/lt4-prng.o gnu/java/security/provider.o .libs/libgcj.lax/lt5-sig.o .libs/libgcj.lax/lt6-dss.o .libs/libgcj.lax/lt7-rsa.o .libs/libgcj.lax/lt8-util.o gnu/java/security/x509.o gnu/java/security/x509/ext.o gnu/java/text.o .libs/libgcj.lax/lt9-util.o .libs/libgcj.lax/lt10-jar.o gnu/java/util/prefs.o gnu/java/util/regex.o gnu/javax/activation/viewers.o gnu/javax/crypto.o gnu/javax/crypto/assembly.o gnu/javax/crypto/cipher.o gnu/javax/crypto/jce.o .libs/libgcj.lax/lt11-cipher.o .libs/libgcj.lax/lt12-key.o gnu/javax/crypto/jce/keyring.o gnu/javax/crypto/jce/mac.o gnu/javax/crypto/jce/params.o .libs/libgcj.lax/lt13-prng.o .libs/libgcj.lax/lt14-sig.o gnu/javax/crypto/jce/spec.o .libs/libgcj.lax/lt15-key.o gnu/javax/crypto/key/dh.o gnu/javax/crypto/key/srp6.o .libs/libgcj.lax/lt16-keyring.o gnu/javax/crypto/kwa.o .libs/libgcj.lax/lt17-mac.o gnu/javax/crypto/mode.o gnu/javax/crypto/pad.o .libs/libgcj.lax/lt18-prng.o gnu/javax/crypto/sasl.o gnu/javax/crypto/sasl/anonymous.o gnu/javax/crypto/sasl/crammd5.o gnu/javax/crypto/sasl/plain.o gnu/javax/crypto/sasl/srp.o gnu/javax/imageio.o gnu/javax/imageio/bmp.o gnu/javax/imageio/gif.o gnu/javax/imageio/jpeg.o gnu/javax/imageio/png.o gnu/javax/naming/giop.o gnu/javax/naming/ictxImpl/trans.o gnu/javax/naming/jndi/url/corbaname.o .libs/libgcj.lax/lt19-rmi.o gnu/javax/net/ssl.o .libs/libgcj.lax/lt20-provider.o .libs/libgcj.lax/lt21-print.o gnu/javax/print/ipp.o gnu/javax/print/ipp/attribute.o gnu/javax/print/ipp/attribute/defaults.o gnu/javax/print/ipp/attribute/job.o gnu/javax/print/ipp/attribute/printer.o gnu/javax/print/ipp/attribute/supported.o gnu/javax/security/auth.o gnu/javax/security/auth/callback.o gnu/javax/security/auth/login.o gnu/javax/sound.o gnu/javax/sound/sampled/AU.o gnu/javax/sound/sampled/WAV.o gnu/javax/swing/plaf/gnu.o gnu/javax/swing/plaf/metal.o gnu/javax/swing/text/html.o gnu/javax/swing/text/html/css.o gnu/javax/swing/text/html/parser/GnuParserDelegator.o gnu/javax/swing/text/html/parser/HTML_401F.o gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/gnuDTD.o gnu/javax/swing/text/html/parser/htmlAttributeSet.o gnu/javax/swing/text/html/parser/htmlValidator.o gnu/javax/swing/text/html/parser/models.o gnu/javax/swing/text/html/parser/support.o gnu/javax/swing/text/html/parser/support/low.o gnu/javax/swing/tree.o java/applet.o .libs/libgcj.lax/lt22-awt.o .libs/libgcj.lax/lt23-color.o java/awt/datatransfer.o .libs/libgcj.lax/lt24-dnd.o .libs/libgcj.lax/lt25-peer.o java/awt/event.o .libs/libgcj.lax/lt26-font.o java/awt/geom.o java/awt/im.o java/awt/im/spi.o .libs/libgcj.lax/lt27-image.o java/awt/image/renderable.o .libs/libgcj.lax/lt28-peer.o .libs/libgcj.lax/lt29-print.o java/beans.o java/beans/beancontext.o .libs/libgcj.lax/lt30-io.o .libs/libgcj.lax/lt31-lang.o java/lang/annotation.o java/lang/instrument.o java/lang/ref.o .libs/libgcj.lax/lt32-reflect.o java/math.o .libs/libgcj.lax/lt33-net.o .libs/libgcj.lax/lt34-nio.o .libs/libgcj.lax/lt35-channels.o .libs/libgcj.lax/lt36-spi.o .libs/libgcj.lax/lt37-charset.o .libs/libgcj.lax/lt38-spi.o .libs/libgcj.lax/lt39-rmi.o .libs/libgcj.lax/lt40-activation.o .libs/libgcj.lax/lt41-dgc.o .libs/libgcj.lax/lt42-registry.o .libs/libgcj.lax/lt43-server.o .libs/libgcj.lax/lt44-security.o java/security/acl.o java/security/cert.o java/security/interfaces.o .libs/libgcj.lax/lt45-spec.o java/sql.o .libs/libgcj.lax/lt46-text.o .libs/libgcj.lax/lt47-spi.o .libs/libgcj.lax/lt48-util.o java/util/concurrent.o java/util/concurrent/atomic.o java/util/concurrent/locks.o .libs/libgcj.lax/lt49-jar.o java/util/logging.o .libs/libgcj.lax/lt50-prefs.o .libs/libgcj.lax/lt51-regex.o .libs/libgcj.lax/lt52-spi.o java/util/zip.o javax/accessibility.o .libs/libgcj.lax/lt53-activation.o javax/activity.o .libs/libgcj.lax/lt54-crypto.o .libs/libgcj.lax/lt55-interfaces.o .libs/libgcj.lax/lt56-spec.o javax/management.o javax/management/loading.o javax/management/openmbean.o javax/management/remote.o .libs/libgcj.lax/lt57-rmi.o javax/naming.o javax/naming/directory.o .libs/libgcj.lax/lt58-event.o javax/naming/ldap.o .libs/libgcj.lax/lt59-spi.o .libs/libgcj.lax/lt60-net.o .libs/libgcj.lax/lt61-ssl.o .libs/libgcj.lax/lt62-print.o .libs/libgcj.lax/lt63-attribute.o javax/print/attribute/standard.o .libs/libgcj.lax/lt64-event.o .libs/libgcj.lax/lt65-auth.o .libs/libgcj.lax/lt66-callback.o javax/security/auth/kerberos.o .libs/libgcj.lax/lt67-login.o .libs/libgcj.lax/lt68-spi.o javax/security/auth/x500.o .libs/libgcj.lax/lt69-cert.o .libs/libgcj.lax/lt70-sasl.o javax/sound/midi.o .libs/libgcj.lax/lt71-spi.o javax/sound/sampled.o .libs/libgcj.lax/lt72-spi.o .libs/libgcj.lax/lt73-sql.o javax/swing.o javax/swing/border.o javax/swing/colorchooser.o .libs/libgcj.lax/lt74-event.o javax/swing/filechooser.o javax/swing/plaf.o javax/swing/plaf/basic.o .libs/libgcj.lax/lt75-metal.o javax/swing/plaf/multi.o javax/swing/plaf/synth.o javax/swing/table.o .libs/libgcj.lax/lt76-text.o .libs/libgcj.lax/lt77-html.o javax/swing/text/html/parser.o javax/swing/text/rtf.o .libs/libgcj.lax/lt78-tree.o javax/swing/undo.o javax/tools.o javax/transaction.o javax/transaction/xa.o org/ietf/jgss.o .libs/libgcj.lax/lt79-awt.o sun/misc.o .libs/libgcj.lax/lt80-reflect.o .libs/libgcj.lax/lt81-annotation.o .libs/libgcj.lax/lt82-misc.o gnu/classpath/jdwp.o .libs/libgcj.lax/lt83-event.o gnu/classpath/jdwp/event/filters.o .libs/libgcj.lax/lt84-exception.o gnu/classpath/jdwp/id.o gnu/classpath/jdwp/processor.o gnu/classpath/jdwp/transport.o .libs/libgcj.lax/lt85-util.o gnu/classpath/jdwp/value.o .libs/libgcj.lax/lt86-jvmti.o gnu/java/awt/font/fonts.properties.o gnu/java/awt/peer/gtk/font.properties.o .libs/libgcj.lax/lt87-fonts.properties.o gnu/java/awt/peer/x/xfonts.properties.o gnu/java/locale/LocaleInformation.properties.o gnu/java/locale/LocaleInformation_aa.properties.o gnu/java/locale/LocaleInformation_aa_DJ.properties.o gnu/java/locale/LocaleInformation_aa_ER.properties.o gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/LocaleInformation_aa_ET.properties.o gnu/java/locale/LocaleInformation_af.properties.o gnu/java/locale/LocaleInformation_af_NA.properties.o gnu/java/locale/LocaleInformation_af_ZA.properties.o gnu/java/locale/LocaleInformation_ak.properties.o gnu/java/locale/LocaleInformation_am.properties.o gnu/java/locale/LocaleInformation_am_ET.properties.o gnu/java/locale/LocaleInformation_ar.properties.o gnu/java/locale/LocaleInformation_ar_DZ.properties.o gnu/java/locale/LocaleInformation_ar_JO.properties.o gnu/java/locale/LocaleInformation_ar_LB.properties.o gnu/java/locale/LocaleInformation_ar_MA.properties.o gnu/java/locale/LocaleInformation_ar_QA.properties.o gnu/java/locale/LocaleInformation_ar_SA.properties.o gnu/java/locale/LocaleInformation_ar_SY.properties.o gnu/java/locale/LocaleInformation_ar_TN.properties.o gnu/java/locale/LocaleInformation_ar_YE.properties.o gnu/java/locale/LocaleInformation_as.properties.o gnu/java/locale/LocaleInformation_as_IN.properties.o gnu/java/locale/LocaleInformation_az.properties.o gnu/java/locale/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/LocaleInformation_be.properties.o gnu/java/locale/LocaleInformation_be_BY.properties.o gnu/java/locale/LocaleInformation_bg.properties.o gnu/java/locale/LocaleInformation_bg_BG.properties.o gnu/java/locale/LocaleInformation_bn.properties.o gnu/java/locale/LocaleInformation_bn_IN.properties.o gnu/java/locale/LocaleInformation_bo.properties.o gnu/java/locale/LocaleInformation_bs.properties.o gnu/java/locale/LocaleInformation_byn.properties.o gnu/java/locale/LocaleInformation_byn_ER.properties.o gnu/java/locale/LocaleInformation_ca.properties.o gnu/java/locale/LocaleInformation_ca_ES.properties.o gnu/java/locale/LocaleInformation_cch.properties.o gnu/java/locale/LocaleInformation_cop.properties.o gnu/java/locale/LocaleInformation_cs.properties.o gnu/java/locale/LocaleInformation_cs_CZ.properties.o gnu/java/locale/LocaleInformation_cy.properties.o gnu/java/locale/LocaleInformation_cy_GB.properties.o gnu/java/locale/LocaleInformation_da.properties.o gnu/java/locale/LocaleInformation_da_DK.properties.o gnu/java/locale/LocaleInformation_de.properties.o gnu/java/locale/LocaleInformation_de_AT.properties.o gnu/java/locale/LocaleInformation_de_BE.properties.o gnu/java/locale/LocaleInformation_de_CH.properties.o gnu/java/locale/LocaleInformation_de_DE.properties.o gnu/java/locale/LocaleInformation_de_LI.properties.o gnu/java/locale/LocaleInformation_de_LU.properties.o gnu/java/locale/LocaleInformation_dv.properties.o gnu/java/locale/LocaleInformation_dv_MV.properties.o gnu/java/locale/LocaleInformation_dz.properties.o gnu/java/locale/LocaleInformation_dz_BT.properties.o gnu/java/locale/LocaleInformation_ee.properties.o gnu/java/locale/LocaleInformation_el.properties.o gnu/java/locale/LocaleInformation_el_CY.properties.o gnu/java/locale/LocaleInformation_el_GR.properties.o gnu/java/locale/LocaleInformation_en.properties.o gnu/java/locale/LocaleInformation_en_AS.properties.o gnu/java/locale/LocaleInformation_en_AU.properties.o gnu/java/locale/LocaleInformation_en_BE.properties.o gnu/java/locale/LocaleInformation_en_BW.properties.o gnu/java/locale/LocaleInformation_en_BZ.properties.o gnu/java/locale/LocaleInformation_en_CA.properties.o gnu/java/locale/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/LocaleInformation_en_GB.properties.o gnu/java/locale/LocaleInformation_en_GU.properties.o gnu/java/locale/LocaleInformation_en_HK.properties.o gnu/java/locale/LocaleInformation_en_IE.properties.o gnu/java/locale/LocaleInformation_en_IN.properties.o gnu/java/locale/LocaleInformation_en_JM.properties.o gnu/java/locale/LocaleInformation_en_MH.properties.o gnu/java/locale/LocaleInformation_en_MP.properties.o gnu/java/locale/LocaleInformation_en_MT.properties.o gnu/java/locale/LocaleInformation_en_NA.properties.o gnu/java/locale/LocaleInformation_en_NZ.properties.o gnu/java/locale/LocaleInformation_en_PH.properties.o gnu/java/locale/LocaleInformation_en_PK.properties.o gnu/java/locale/LocaleInformation_en_SG.properties.o gnu/java/locale/LocaleInformation_en_Shaw.properties.o gnu/java/locale/LocaleInformation_en_TT.properties.o gnu/java/locale/LocaleInformation_en_UM.properties.o gnu/java/locale/LocaleInformation_en_US.properties.o gnu/java/locale/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/LocaleInformation_en_VI.properties.o gnu/java/locale/LocaleInformation_en_ZA.properties.o gnu/java/locale/LocaleInformation_en_ZW.properties.o gnu/java/locale/LocaleInformation_eo.properties.o gnu/java/locale/LocaleInformation_es.properties.o gnu/java/locale/LocaleInformation_es_AR.properties.o gnu/java/locale/LocaleInformation_es_BO.properties.o gnu/java/locale/LocaleInformation_es_CL.properties.o gnu/java/locale/LocaleInformation_es_CO.properties.o gnu/java/locale/LocaleInformation_es_CR.properties.o gnu/java/locale/LocaleInformation_es_DO.properties.o gnu/java/locale/LocaleInformation_es_EC.properties.o gnu/java/locale/LocaleInformation_es_ES.properties.o gnu/java/locale/LocaleInformation_es_GT.properties.o gnu/java/locale/LocaleInformation_es_HN.properties.o gnu/java/locale/LocaleInformation_es_MX.properties.o gnu/java/locale/LocaleInformation_es_NI.properties.o gnu/java/locale/LocaleInformation_es_PA.properties.o gnu/java/locale/LocaleInformation_es_PE.properties.o gnu/java/locale/LocaleInformation_es_PR.properties.o gnu/java/locale/LocaleInformation_es_PY.properties.o gnu/java/locale/LocaleInformation_es_SV.properties.o gnu/java/locale/LocaleInformation_es_US.properties.o gnu/java/locale/LocaleInformation_es_UY.properties.o gnu/java/locale/LocaleInformation_es_VE.properties.o gnu/java/locale/LocaleInformation_et.properties.o gnu/java/locale/LocaleInformation_et_EE.properties.o gnu/java/locale/LocaleInformation_eu.properties.o gnu/java/locale/LocaleInformation_eu_ES.properties.o gnu/java/locale/LocaleInformation_fa.properties.o gnu/java/locale/LocaleInformation_fa_AF.properties.o gnu/java/locale/LocaleInformation_fa_IR.properties.o gnu/java/locale/LocaleInformation_fi.properties.o gnu/java/locale/LocaleInformation_fi_FI.properties.o gnu/java/locale/LocaleInformation_fil.properties.o gnu/java/locale/LocaleInformation_fo.properties.o gnu/java/locale/LocaleInformation_fo_FO.properties.o gnu/java/locale/LocaleInformation_fr.properties.o gnu/java/locale/LocaleInformation_fr_BE.properties.o gnu/java/locale/LocaleInformation_fr_CA.properties.o gnu/java/locale/LocaleInformation_fr_CH.properties.o gnu/java/locale/LocaleInformation_fr_LU.properties.o gnu/java/locale/LocaleInformation_fur.properties.o gnu/java/locale/LocaleInformation_ga.properties.o gnu/java/locale/LocaleInformation_ga_IE.properties.o gnu/java/locale/LocaleInformation_gaa.properties.o gnu/java/locale/LocaleInformation_gez.properties.o gnu/java/locale/LocaleInformation_gez_ER.properties.o gnu/java/locale/LocaleInformation_gez_ET.properties.o gnu/java/locale/LocaleInformation_gl.properties.o gnu/java/locale/LocaleInformation_gl_ES.properties.o gnu/java/locale/LocaleInformation_gu.properties.o gnu/java/locale/LocaleInformation_gu_IN.properties.o gnu/java/locale/LocaleInformation_gv.properties.o gnu/java/locale/LocaleInformation_gv_GB.properties.o gnu/java/locale/LocaleInformation_ha.properties.o gnu/java/locale/LocaleInformation_ha_Arab.properties.o gnu/java/locale/LocaleInformation_haw.properties.o gnu/java/locale/LocaleInformation_haw_US.properties.o gnu/java/locale/LocaleInformation_he.properties.o gnu/java/locale/LocaleInformation_he_IL.properties.o gnu/java/locale/LocaleInformation_hi.properties.o gnu/java/locale/LocaleInformation_hi_IN.properties.o gnu/java/locale/LocaleInformation_hr.properties.o gnu/java/locale/LocaleInformation_hu.properties.o gnu/java/locale/LocaleInformation_hu_HU.properties.o gnu/java/locale/LocaleInformation_hy.properties.o gnu/java/locale/LocaleInformation_hy_AM.properties.o gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/LocaleInformation_ia.properties.o gnu/java/locale/LocaleInformation_id.properties.o gnu/java/locale/LocaleInformation_id_ID.properties.o gnu/java/locale/LocaleInformation_ig.properties.o gnu/java/locale/LocaleInformation_ii.properties.o gnu/java/locale/LocaleInformation_is.properties.o gnu/java/locale/LocaleInformation_is_IS.properties.o gnu/java/locale/LocaleInformation_it.properties.o gnu/java/locale/LocaleInformation_it_CH.properties.o gnu/java/locale/LocaleInformation_it_IT.properties.o gnu/java/locale/LocaleInformation_iu.properties.o gnu/java/locale/LocaleInformation_ja.properties.o gnu/java/locale/LocaleInformation_ja_JP.properties.o gnu/java/locale/LocaleInformation_ka.properties.o gnu/java/locale/LocaleInformation_kaj.properties.o gnu/java/locale/LocaleInformation_kam.properties.o gnu/java/locale/LocaleInformation_kcg.properties.o gnu/java/locale/LocaleInformation_kfo.properties.o gnu/java/locale/LocaleInformation_kk.properties.o gnu/java/locale/LocaleInformation_kk_KZ.properties.o gnu/java/locale/LocaleInformation_kl.properties.o gnu/java/locale/LocaleInformation_kl_GL.properties.o gnu/java/locale/LocaleInformation_km.properties.o gnu/java/locale/LocaleInformation_km_KH.properties.o gnu/java/locale/LocaleInformation_kn.properties.o gnu/java/locale/LocaleInformation_kn_IN.properties.o gnu/java/locale/LocaleInformation_ko.properties.o gnu/java/locale/LocaleInformation_ko_KR.properties.o gnu/java/locale/LocaleInformation_kok.properties.o gnu/java/locale/LocaleInformation_kok_IN.properties.o gnu/java/locale/LocaleInformation_kpe.properties.o gnu/java/locale/LocaleInformation_ku.properties.o gnu/java/locale/LocaleInformation_ku_Arab.properties.o gnu/java/locale/LocaleInformation_ku_Latn.properties.o gnu/java/locale/LocaleInformation_kw.properties.o gnu/java/locale/LocaleInformation_kw_GB.properties.o gnu/java/locale/LocaleInformation_ky.properties.o gnu/java/locale/LocaleInformation_ln.properties.o gnu/java/locale/LocaleInformation_lo.properties.o gnu/java/locale/LocaleInformation_lo_LA.properties.o gnu/java/locale/LocaleInformation_lt.properties.o gnu/java/locale/LocaleInformation_lt_LT.properties.o gnu/java/locale/LocaleInformation_lv.properties.o gnu/java/locale/LocaleInformation_lv_LV.properties.o gnu/java/locale/LocaleInformation_mk.properties.o gnu/java/locale/LocaleInformation_ml.properties.o gnu/java/locale/LocaleInformation_ml_IN.properties.o gnu/java/locale/LocaleInformation_mn.properties.o gnu/java/locale/LocaleInformation_mr.properties.o gnu/java/locale/LocaleInformation_mr_IN.properties.o gnu/java/locale/LocaleInformation_ms.properties.o gnu/java/locale/LocaleInformation_ms_BN.properties.o gnu/java/locale/LocaleInformation_ms_MY.properties.o gnu/java/locale/LocaleInformation_mt.properties.o gnu/java/locale/LocaleInformation_mt_MT.properties.o gnu/java/locale/LocaleInformation_my.properties.o gnu/java/locale/LocaleInformation_nb.properties.o gnu/java/locale/LocaleInformation_nb_NO.properties.o gnu/java/locale/LocaleInformation_ne.properties.o gnu/java/locale/LocaleInformation_nl.properties.o gnu/java/locale/LocaleInformation_nl_BE.properties.o gnu/java/locale/LocaleInformation_nl_NL.properties.o gnu/java/locale/LocaleInformation_nn.properties.o gnu/java/locale/LocaleInformation_nn_NO.properties.o gnu/java/locale/LocaleInformation_nr.properties.o gnu/java/locale/LocaleInformation_nso.properties.o gnu/java/locale/LocaleInformation_ny.properties.o gnu/java/locale/LocaleInformation_om.properties.o gnu/java/locale/LocaleInformation_om_ET.properties.o gnu/java/locale/LocaleInformation_om_KE.properties.o gnu/java/locale/LocaleInformation_or.properties.o gnu/java/locale/LocaleInformation_or_IN.properties.o gnu/java/locale/LocaleInformation_pa.properties.o gnu/java/locale/LocaleInformation_pa_Arab.properties.o gnu/java/locale/LocaleInformation_pa_IN.properties.o gnu/java/locale/LocaleInformation_pl.properties.o gnu/java/locale/LocaleInformation_pl_PL.properties.o gnu/java/locale/LocaleInformation_ps.properties.o gnu/java/locale/LocaleInformation_ps_AF.properties.o gnu/java/locale/LocaleInformation_pt.properties.o gnu/java/locale/LocaleInformation_pt_BR.properties.o gnu/java/locale/LocaleInformation_pt_PT.properties.o gnu/java/locale/LocaleInformation_ro.properties.o gnu/java/locale/LocaleInformation_ro_RO.properties.o gnu/java/locale/LocaleInformation_ru.properties.o gnu/java/locale/LocaleInformation_ru_RU.properties.o gnu/java/locale/LocaleInformation_ru_UA.properties.o gnu/java/locale/LocaleInformation_rw.properties.o gnu/java/locale/LocaleInformation_sa.properties.o gnu/java/locale/LocaleInformation_sa_IN.properties.o gnu/java/locale/LocaleInformation_se.properties.o gnu/java/locale/LocaleInformation_se_FI.properties.o gnu/java/locale/LocaleInformation_si.properties.o gnu/java/locale/LocaleInformation_sid.properties.o gnu/java/locale/LocaleInformation_sid_ET.properties.o gnu/java/locale/LocaleInformation_sk.properties.o gnu/java/locale/LocaleInformation_sk_SK.properties.o gnu/java/locale/LocaleInformation_sl.properties.o gnu/java/locale/LocaleInformation_sl_SI.properties.o gnu/java/locale/LocaleInformation_so.properties.o gnu/java/locale/LocaleInformation_so_DJ.properties.o gnu/java/locale/LocaleInformation_so_ET.properties.o gnu/java/locale/LocaleInformation_so_KE.properties.o gnu/java/locale/LocaleInformation_so_SO.properties.o gnu/java/locale/LocaleInformation_sq.properties.o gnu/java/locale/LocaleInformation_sq_AL.properties.o gnu/java/locale/LocaleInformation_sr.properties.o gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_Latn.properties.o gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/LocaleInformation_ss.properties.o gnu/java/locale/LocaleInformation_ssy.properties.o gnu/java/locale/LocaleInformation_st.properties.o gnu/java/locale/LocaleInformation_sv.properties.o gnu/java/locale/LocaleInformation_sv_FI.properties.o gnu/java/locale/LocaleInformation_sv_SE.properties.o gnu/java/locale/LocaleInformation_sw.properties.o gnu/java/locale/LocaleInformation_sw_KE.properties.o gnu/java/locale/LocaleInformation_sw_TZ.properties.o gnu/java/locale/LocaleInformation_syr.properties.o gnu/java/locale/LocaleInformation_syr_SY.properties.o gnu/java/locale/LocaleInformation_ta.properties.o gnu/java/locale/LocaleInformation_ta_IN.properties.o gnu/java/locale/LocaleInformation_te.properties.o gnu/java/locale/LocaleInformation_te_IN.properties.o gnu/java/locale/LocaleInformation_tg.properties.o gnu/java/locale/LocaleInformation_th.properties.o gnu/java/locale/LocaleInformation_th_TH.properties.o gnu/java/locale/LocaleInformation_ti.properties.o gnu/java/locale/LocaleInformation_ti_ER.properties.o gnu/java/locale/LocaleInformation_ti_ET.properties.o gnu/java/locale/LocaleInformation_tig.properties.o gnu/java/locale/LocaleInformation_tig_ER.properties.o gnu/java/locale/LocaleInformation_tn.properties.o gnu/java/locale/LocaleInformation_to.properties.o gnu/java/locale/LocaleInformation_tr.properties.o gnu/java/locale/LocaleInformation_tr_TR.properties.o gnu/java/locale/LocaleInformation_trv.properties.o gnu/java/locale/LocaleInformation_ts.properties.o gnu/java/locale/LocaleInformation_tt.properties.o gnu/java/locale/LocaleInformation_tt_RU.properties.o gnu/java/locale/LocaleInformation_ug.properties.o gnu/java/locale/LocaleInformation_uk.properties.o gnu/java/locale/LocaleInformation_uk_UA.properties.o gnu/java/locale/LocaleInformation_ur.properties.o gnu/java/locale/LocaleInformation_ur_IN.properties.o gnu/java/locale/LocaleInformation_uz.properties.o gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Latn.properties.o gnu/java/locale/LocaleInformation_ve.properties.o gnu/java/locale/LocaleInformation_vi.properties.o gnu/java/locale/LocaleInformation_wal.properties.o gnu/java/locale/LocaleInformation_wal_ET.properties.o gnu/java/locale/LocaleInformation_wo.properties.o gnu/java/locale/LocaleInformation_xh.properties.o gnu/java/locale/LocaleInformation_yo.properties.o gnu/java/locale/LocaleInformation_zh.properties.o gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/LocaleInformation_zh_Hant.properties.o gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/LocaleInformation_zu.properties.o gnu/java/util/regex/MessagesBundle.properties.o gnu/java/util/regex/MessagesBundle_fr.properties.o gnu/java/util/regex/MessagesBundle_it.properties.o gnu/javax/print/PrinterDialog.properties.o gnu/javax/print/PrinterDialog_de.properties.o .libs/libgcj.lax/lt88-MessagesBundle.properties.o java/text/metazones.properties.o java/util/iso4217.properties.o java/util/weeks.properties.o .libs/libgcj.lax/lt89-MessagesBundle.properties.o javax/swing/text/html/default.css.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o META-INF/services/java.util.prefs.PreferencesFactory.o META-INF/services/java.util.prefs.PreferencesFactory.in.o META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/javax.sound.midi.spi.MidiFileReader.o META-INF/services/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/javax.sound.sampled.spi.AudioFileReader.o gnu-CORBA.o gnu-java-awt-dnd-peer-gtk.o gnu-java-awt-peer-gtk.o gnu-java-awt-peer-swing.o gnu-java-beans.o gnu-java-lang-management.o gnu-java-math.o gnu-java-util-prefs-gconf.o gnu-javax-management.o gnu-javax-rmi.o gnu-javax-sound-midi.o gnu-xml-aelfred2.o gnu-xml-dom.o gnu-xml-libxmlj.o gnu-xml-pipeline.o gnu-xml-stream.o gnu-xml-transform.o gnu-xml-util.o gnu-xml-validation.o gnu-xml-xpath.o java-lang-management.o javax-imageio.o javax-rmi.o javax-xml.o org-omg-CORBA.o org-omg-CORBA_2_3.o org-omg-CosNaming.o org-omg-Dynamic.o org-omg-DynamicAny.o org-omg-IOP.o org-omg-Messaging.o org-omg-PortableInterceptor.o org-omg-PortableServer.o org-omg-SendingContext.o org-omg-stub.o org-relaxng.o org-w3c.o org-xml.o .libs/libgcj.lax/libltdlc.a/ltdl.o .libs/libgcj.lax/libfdlibm.a/dtoa.o .libs/libgcj.lax/libfdlibm.a/e_acos.o .libs/libgcj.lax/libfdlibm.a/e_asin.o .libs/libgcj.lax/libfdlibm.a/e_atan2.o .libs/libgcj.lax/libfdlibm.a/e_cosh.o .libs/libgcj.lax/libfdlibm.a/e_exp.o .libs/libgcj.lax/libfdlibm.a/e_fmod.o .libs/libgcj.lax/libfdlibm.a/e_hypot.o .libs/libgcj.lax/libfdlibm.a/e_log.o .libs/libgcj.lax/libfdlibm.a/e_log10.o .libs/libgcj.lax/libfdlibm.a/e_pow.o .libs/libgcj.lax/libfdlibm.a/e_remainder.o .libs/libgcj.lax/libfdlibm.a/e_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/e_scalb.o .libs/libgcj.lax/libfdlibm.a/e_sinh.o .libs/libgcj.lax/libfdlibm.a/e_sqrt.o .libs/libgcj.lax/libfdlibm.a/k_cos.o .libs/libgcj.lax/libfdlibm.a/k_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/k_sin.o .libs/libgcj.lax/libfdlibm.a/k_tan.o .libs/libgcj.lax/libfdlibm.a/mprec.o .libs/libgcj.lax/libfdlibm.a/s_atan.o .libs/libgcj.lax/libfdlibm.a/s_cbrt.o .libs/libgcj.lax/libfdlibm.a/s_ceil.o .libs/libgcj.lax/libfdlibm.a/s_copysign.o .libs/libgcj.lax/libfdlibm.a/s_cos.o .libs/libgcj.lax/libfdlibm.a/s_expm1.o .libs/libgcj.lax/libfdlibm.a/s_fabs.o .libs/libgcj.lax/libfdlibm.a/sf_fabs.o .libs/libgcj.lax/libfdlibm.a/s_finite.o .libs/libgcj.lax/libfdlibm.a/s_floor.o .libs/libgcj.lax/libfdlibm.a/s_log1p.o .libs/libgcj.lax/libfdlibm.a/sf_rint.o .libs/libgcj.lax/libfdlibm.a/s_rint.o .libs/libgcj.lax/libfdlibm.a/s_scalbn.o .libs/libgcj.lax/libfdlibm.a/s_sin.o .libs/libgcj.lax/libfdlibm.a/s_tan.o .libs/libgcj.lax/libfdlibm.a/s_tanh.o .libs/libgcj.lax/libfdlibm.a/strtod.o .libs/libgcj.lax/libfdlibm.a/w_acos.o .libs/libgcj.lax/libfdlibm.a/w_asin.o .libs/libgcj.lax/libfdlibm.a/w_atan2.o .libs/libgcj.lax/libfdlibm.a/w_cosh.o .libs/libgcj.lax/libfdlibm.a/w_exp.o .libs/libgcj.lax/libfdlibm.a/w_fmod.o .libs/libgcj.lax/libfdlibm.a/w_hypot.o .libs/libgcj.lax/libfdlibm.a/w_log.o .libs/libgcj.lax/libfdlibm.a/w_log10.o .libs/libgcj.lax/libfdlibm.a/w_pow.o .libs/libgcj.lax/libfdlibm.a/w_remainder.o .libs/libgcj.lax/libfdlibm.a/w_sinh.o .libs/libgcj.lax/libfdlibm.a/w_sqrt.o .libs/libgcj.lax/lt91-debug.o .libs/libgcj.lax/libffi_convenience.a/prep_cif.o .libs/libgcj.lax/libffi_convenience.a/types.o .libs/libgcj.lax/libffi_convenience.a/raw_api.o .libs/libgcj.lax/libffi_convenience.a/java_raw_api.o .libs/libgcj.lax/libffi_convenience.a/closures.o .libs/libgcj.lax/libffi_convenience.a/ffi.o .libs/libgcj.lax/libffi_convenience.a/sysv.o .libs/libgcj.lax/libzgcj_convenience.a/adler32.o .libs/libgcj.lax/libzgcj_convenience.a/compress.o .libs/libgcj.lax/libzgcj_convenience.a/crc32.o .libs/libgcj.lax/libzgcj_convenience.a/deflate.o .libs/libgcj.lax/libzgcj_convenience.a/gzio.o .libs/libgcj.lax/libzgcj_convenience.a/infback.o .libs/libgcj.lax/libzgcj_convenience.a/inffast.o .libs/libgcj.lax/libzgcj_convenience.a/inflate.o .libs/libgcj.lax/libzgcj_convenience.a/inftrees.o .libs/libgcj.lax/libzgcj_convenience.a/trees.o .libs/libgcj.lax/libzgcj_convenience.a/uncompr.o .libs/libgcj.lax/libzgcj_convenience.a/zutil.o .libs/libgcj.lax/libgcjgc_convenience.a/allchblk.o .libs/libgcj.lax/libgcjgc_convenience.a/alloc.o .libs/libgcj.lax/libgcjgc_convenience.a/blacklst.o .libs/libgcj.lax/libgcjgc_convenience.a/checksums.o .libs/libgcj.lax/libgcjgc_convenience.a/dbg_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/dyn_load.o .libs/libgcj.lax/libgcjgc_convenience.a/finalize.o .libs/libgcj.lax/libgcjgc_convenience.a/gc_dlopen.o .libs/libgcj.lax/libgcjgc_convenience.a/gcj_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/headers.o .libs/libgcj.lax/libgcjgc_convenience.a/malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/mallocx.o .libs/libgcj.lax/libgcjgc_convenience.a/mark.o .libs/libgcj.lax/libgcjgc_convenience.a/mark_rts.o .libs/libgcj.lax/lt92-misc.o .libs/libgcj.lax/libgcjgc_convenience.a/new_hblk.o .libs/libgcj.lax/libgcjgc_convenience.a/obj_map.o .libs/libgcj.lax/libgcjgc_convenience.a/os_dep.o .libs/libgcj.lax/libgcjgc_convenience.a/pcr_interface.o .libs/libgcj.lax/libgcjgc_convenience.a/ptr_chck.o .libs/libgcj.lax/libgcjgc_convenience.a/real_malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/reclaim.o .libs/libgcj.lax/libgcjgc_convenience.a/specific.o .libs/libgcj.lax/libgcjgc_convenience.a/stubborn.o .libs/libgcj.lax/libgcjgc_convenience.a/typd_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/backgraph.o .libs/libgcj.lax/libgcjgc_convenience.a/win32_threads.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_support.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/darwin_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/mach_dep.o
+ libtool: link: ranlib .libs/libgcj.a
+ libtool: link: rm -fr .libs/libgcj.lax .libs/libgcj.lax
+ libtool: link: ( cd ".libs" && rm -f "libgcj.la" && ln -s "../libgcj.la" "libgcj.la" )
+-/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic -rpath [...]/hurd.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd.build/[ARCH]/libjava/.libs libgcj.la
+-libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd.build.install/lib -L[...]/hurd.build/[ARCH]/libjava/.libs -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
++/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic-functions -rpath [...]/hurd.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd.build/[ARCH]/libjava/.libs libgcj.la
++libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd.build.install/lib -L[...]/hurd.build/[ARCH]/libjava/.libs -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
+ libtool: link: ar rc .libs/libjvm.a jni-libjvm.o
+ libtool: link: ranlib .libs/libjvm.a
+ libtool: link: ( cd ".libs" && rm -f "libjvm.la" && ln -s "../libjvm.la" "libjvm.la" )
+@@ -23516,8 +23090,8 @@
+ mv -f $depbase.Tpo $depbase.Plo
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../hurd/libjava/gij.cc -fPIC -DPIC -o .libs/gij.o
+ libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../hurd/libjava/gij.cc -o gij.o >/dev/null 2>&1
+-/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd.build.install/lib -version-info `grep -v '^#' ../../../hurd/libjava/libtool-version` -Wl,-Bsymbolic -rpath [...]/hurd.build.install/lib gij.lo -L[...]/hurd.build/[ARCH]/libjava/.libs libgcj.la
+-libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd.build.install/lib -L[...]/hurd.build/[ARCH]/libjava/.libs -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
++/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd.build.install/lib -version-info `grep -v '^#' ../../../hurd/libjava/libtool-version` -Wl,-Bsymbolic-functions -rpath [...]/hurd.build.install/lib gij.lo -L[...]/hurd.build/[ARCH]/libjava/.libs libgcj.la
++libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd.build.install/lib -L[...]/hurd.build/[ARCH]/libjava/.libs -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
+ libtool: link: (cd ".libs" && rm -f "libgij.so.12" && ln -s "libgij.so.12.0.0" "libgij.so.12")
+ libtool: link: (cd ".libs" && rm -f "libgij.so" && ln -s "libgij.so.12.0.0" "libgij.so")
+ libtool: link: ar rc .libs/libgij.a gij.o
diff --git a/open_issues/gcc/testsuite/log_build-hurd.sed b/open_issues/gcc/testsuite/log_build-hurd.sed
new file mode 100644
index 00000000..26da4f7e
--- /dev/null
+++ b/open_issues/gcc/testsuite/log_build-hurd.sed
@@ -0,0 +1,11 @@
+s%i686-unknown-gnu0\.3%[ARCH]%g
+
+s%libdecnumber/dpd%[libdecnumber]%g
+
+
+
+
+
+
+s%libgomp/config/posix/%libgomp/config/[SYSDEP]/%g
+
diff --git a/open_issues/gcc/testsuite/log_build-linux.sed b/open_issues/gcc/testsuite/log_build-linux.sed
new file mode 100644
index 00000000..f57cbeb9
--- /dev/null
+++ b/open_issues/gcc/testsuite/log_build-linux.sed
@@ -0,0 +1,10 @@
+s%i686-pc-linux-gnu%[ARCH]%g
+
+s%libdecnumber/bid%[libdecnumber]%g
+s%-I../../../hurd/libgcc/config/libbid -DENABLE_DECIMAL_BID_FORMAT%%
+
+s%-I../../../hurd/libgomp/config/linux/x86 -I../../../hurd/libgomp/config/linux %%
+s%-ftls-model=initial-exec -march=i486 -mtune=i686 %%
+s%-Werror -ftls-model=initial-exec -march=i486 -pthread -mtune=i686%-pthread -Werror%
+s%libgomp/config/linux/%libgomp/config/[SYSDEP]/%g
+s%libgomp/config/posix/%libgomp/config/[SYSDEP]/%g
--
cgit v1.2.3
From 3254ee3837353954371cbc5fad88b2d38251d7e4 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 22 Nov 2010 09:31:48 +0100
Subject: open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow: New.
---
...rk_mach_port_mod_refs_ekern_urefs_owerflow.mdwn | 161 +++++++++++++++++++++
1 file changed, 161 insertions(+)
create mode 100644 open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
diff --git a/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn b/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
new file mode 100644
index 00000000..b6ecb92a
--- /dev/null
+++ b/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
@@ -0,0 +1,161 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="fork: mach_port_mod_refs: EKERN_UREFS_OWERFLOW"]]
+
+In the [[GCC testsuite|gcc/testsuite]], at this point:
+
+ Running /home/tschwinge/tmp/gcc/hurd/gcc/testsuite/gcc.c-torture/unsorted/unsorted.exp ...
+
+... `expect` had gone bonkers:
+
+ $ ps --all --format=hurd-long -w
+ PID UID PPID PGrp Sess TH Vmem RSS %CPU User System Args
+ [...]
+ 3567 1000 10295 3567 3567 2 137M 856K 98.2 5hrs 28 hours expect -- /usr/share/dejagnu/runtest.exp --tool gcc
+ [...]
+
+Last lines of `gcc/testsuite/gcc/gcc.sum`:
+
+ PASS: gcc.c-torture/unsorted/q.c, -O2 -flto -flto-partition=none
+ PASS: gcc.c-torture/unsorted/q.c, -O2 -flto
+ PASS: gcc.c-torture/unsorted/r.c, -O0
+ PASS: gcc.c-torture/unsorted/r.c, -O1
+ PASS: gcc.c-torture/unsorted/r.c, -O2
+ PASS: gcc.c-torture/unsorted/r.c, -O3 -fomit-frame-pointer
+ PASS: gcc.c-torture/unsorted/r.c, -O3 -g
+ PASS: gcc.c-torture/unsorted/r.c, -Os
+ PASS: gcc.c-torture/unsorted/r.c, -O2 -flto -flto-partition=none
+
+Last lines of `gcc/testsuite/gcc/gcc.log`:
+
+ Executing on host: /media/data/home/tschwinge/tmp/gcc/hurd.build/gcc/xgcc -B/media/data/home/tschwinge/tmp/gcc/hurd.build/gcc/ -w -O2 -flto -flto-partition=none -c -o /home/tschwinge/tmp/gcc/hurd.build/gcc/testsuite/gcc/r.o /home/tschwinge/tmp/gcc/hurd/gcc/testsuite/gcc.c-torture/unsorted/r.c (timeout = 300)
+ spawn /media/data/home/tschwinge/tmp/gcc/hurd.build/gcc/xgcc -B/media/data/home/tschwinge/tmp/gcc/hurd.build/gcc/ -w -O2 -flto -flto-partition=none -c -o /home/tschwinge/tmp/gcc/hurd.build/gcc/testsuite/gcc/r.o /home/tschwinge/tmp/gcc/hurd/gcc/testsuite/gcc.c-torture/unsorted/r.c
+ PASS: gcc.c-torture/unsorted/r.c, -O2 -flto -flto-partition=none
+ Executing on host: /media/data/home/tschwinge/tmp/gcc/hurd.build/gcc/xgcc -B/media/data/home/tschwinge/tmp/gcc/hurd.build/gcc/ -w -O2 -flto -c -o /home/tschwinge/tmp/gcc/hurd.build/gcc/testsuite/gcc/r.o /home/tschwinge/tmp/gcc/hurd/gcc/testsuite/gcc.c-torture/unsorted/r.c (timeout = 300)
+ spawn /media/data/home/tschwinge/tmp/gcc/hurd.build/gcc/xgcc -B/media/data/home/tschwinge/tmp/gcc/hurd.build/gcc/ -w -O2 -flto -c -o /home/tschwinge/tmp/gcc/hurd.build/gcc/testsuite/gcc/r.o /home/tschwinge/tmp/gcc/hurd/gcc/testsuite/gcc.c-torture/unsorted/r.c
+
+The root filesystem is sort-of deadlocked: `syncfs -c /` doesn't finish
+-- even without `-s`. But it is fine to spawn new processes, execute new
+commands, etc.
+
+GDB on 3567:
+
+ (gdb) info threads
+ 2 Thread 3567.2 0x011aaf4c in mach_msg_trap () at /build/buildd-eglibc_2.11.2-7-hurd-i386-6JVoJz/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
+ * 1 Thread 3567.1 0x011aaf9c in swtch_pri () at /build/buildd-eglibc_2.11.2-7-hurd-i386-6JVoJz/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/swtch_pri.S:2
+ (gdb) bt
+ #0 0x011aaf9c in swtch_pri () at /build/buildd-eglibc_2.11.2-7-hurd-i386-6JVoJz/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/swtch_pri.S:2
+ #1 0x011ac824 in __spin_lock_solid (lock=0x131e8e0) at spin-solid.c:27
+ #2 0x011aca1d in __mutex_lock_solid (lock=0x131e8e0) at mutex-solid.c:31
+ #3 0x0122dd0b in __mutex_lock (oldmem=0x8076458, bytes=94) at ../mach/lock-intern.h:89
+ #4 __libc_realloc (oldmem=0x8076458, bytes=94) at malloc.c:3814
+ #5 0x0121de62 in _IO_vasprintf (result_ptr=0x15f40c0, format=0x13098a8 "%s%s%s:%u: %s%sUnexpected error: %s.\n", args=0x15f3c9c "") at vasprintf.c:86
+ #6 0x01206d1b in ___asprintf (string_ptr=0x15f40c0, format=0x13098a8 "%s%s%s:%u: %s%sUnexpected error: %s.\n") at asprintf.c:37
+ #7 0x011e2fc8 in __assert_perror_fail (errnum=19, file=0x1305a98 "../sysdeps/mach/hurd/fork.c", line=466, function=0x1305acf "__fork") at assert-perr.c:62
+ #8 0x012586c8 in __fork () at ../sysdeps/mach/hurd/fork.c:466
+ #9 0x011f92e9 in do_system (line=0x15f42dc "/bin/stty sane > /dev/ttypa") at ../sysdeps/posix/system.c:119
+ #10 0x0105bea6 in ?? () from /usr/lib/libexpect.so.5.44.1.15
+ #11 0x0105bf6d in ?? () from /usr/lib/libexpect.so.5.44.1.15
+ #12 0x0105c229 in exp_getptyslave () from /usr/lib/libexpect.so.5.44.1.15
+ #13 0x0103e4b2 in ?? () from /usr/lib/libexpect.so.5.44.1.15
+ #14 0x01087d79 in ?? () from /usr/lib/libtcl8.5.so.0
+ #15 0x01088beb in ?? () from /usr/lib/libtcl8.5.so.0
+ #16 0x0108826a in Tcl_EvalEx () from /usr/lib/libtcl8.5.so.0
+ #17 0x0108985f in TclEvalObjEx () from /usr/lib/libtcl8.5.so.0
+ [...]
+ (gdb) bt full
+ #0 0x011aaf9c in swtch_pri () at /build/buildd-eglibc_2.11.2-7-hurd-i386-6JVoJz/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/swtch_pri.S:2
+ No locals.
+ #1 0x011ac824 in __spin_lock_solid (lock=0x131e8e0) at spin-solid.c:27
+ No locals.
+ #2 0x011aca1d in __mutex_lock_solid (lock=0x131e8e0) at mutex-solid.c:31
+ No locals.
+ #3 0x0122dd0b in __mutex_lock (oldmem=0x8076458, bytes=94) at ../mach/lock-intern.h:89
+ No locals.
+ #4 __libc_realloc (oldmem=0x8076458, bytes=94) at malloc.c:3814
+ ar_ptr =
+ nb = 104
+ newp = 0x68
+ oldp = 0x8076450
+ oldsize = 104
+ __func__ = "__libc_realloc"
+ #5 0x0121de62 in _IO_vasprintf (result_ptr=0x15f40c0, format=0x13098a8 "%s%s%s:%u: %s%sUnexpected error: %s.\n", args=0x15f3c9c "") at vasprintf.c:86
+ sf = {_sbf = {_f = {_flags = -72515584,
+ _IO_read_ptr = 0x8076458 "expect: ../sysdeps/mach/hurd/fork.c:466: __fork: Unexpected error: (os/kern) urefs overflow.\n",
+ _IO_read_end = 0x8076458 "expect: ../sysdeps/mach/hurd/fork.c:466: __fork: Unexpected error: (os/kern) urefs overflow.\n",
+ _IO_read_base = 0x8076458 "expect: ../sysdeps/mach/hurd/fork.c:466: __fork: Unexpected error: (os/kern) urefs overflow.\n",
+ _IO_write_base = 0x8076458 "expect: ../sysdeps/mach/hurd/fork.c:466: __fork: Unexpected error: (os/kern) urefs overflow.\n",
+ _IO_write_ptr = 0x80764b5 "", _IO_write_end = 0x80764bc "\201\004",
+ _IO_buf_base = 0x8076458 "expect: ../sysdeps/mach/hurd/fork.c:466: __fork: Unexpected error: (os/kern) urefs overflow.\n",
+ _IO_buf_end = 0x80764bc "\201\004", _IO_save_base = 0x0, _IO_backup_base = 0x0, _IO_save_end = 0x0, _markers = 0x0, _chain = 0x0, _fileno = 20046008,
+ _flags2 = 0, _old_offset = 23018464, _cur_column = 0, _vtable_offset = 49 '1', _shortbuf = "\001", _lock = 0x0, _offset = 85643859813466072,
+ _codecvt = 0x1304583, _wide_data = 0x15f3bc0, _freeres_list = 0x0, _freeres_buf = 0x15f3c58, _freeres_size = 0, _mode = -1,
+ _unused2 = "\240;_\001\236D0\001\005\000\000\000\340;_\001(K3\001\000\000\000\000\005\000\000\000\000\000\000\000\250\230\060\001\260\303\031\001"},
+ vtable = 0x131b9c0}, _s = {_allocate_buffer = 0x122cdf0 <__libc_malloc>, _free_buffer = 0x122cd20 <__libc_free>}}
+ ret =
+ needed = 94
+ #6 0x01206d1b in ___asprintf (string_ptr=0x15f40c0, format=0x13098a8 "%s%s%s:%u: %s%sUnexpected error: %s.\n") at asprintf.c:37
+ done = 1
+ #7 0x011e2fc8 in __assert_perror_fail (errnum=19, file=0x1305a98 "../sysdeps/mach/hurd/fork.c", line=466, function=0x1305acf "__fork") at assert-perr.c:62
+ errbuf = "\334\r", '\000' , "\f\265\032\001\000\000\000\000x\262\004\b\000\000\000\000\000\000\000\000\377\377\377\377 \262\004\b\250\065\063\001\070A_\001k\000\000\000\000\000\000\000ı2\001\002", '\000' "\366, \377\377\377\270\235\004\bk\000\000\000X=_\001\037\343\037\001\377\377\377\377\000\000\000\000s=_\001\361\t\006\001\070A_\001\362\t\006\001\350\t\006\001\000\000\000\000\304B_\001\350\t\006\001\330\377_\001\033\000\000\000)\036\024\001\364\267\025\001x=_\001Bq\022\001\000\000\000\000\350:\b\b\230=_\001\364\267\025\001X\313\031\b S\005\b\230=_\001\004\334\f\001X\313\031\b\000\022\030\b\300L\005\b\364\267\025\001\370\021\030\b S\005\b\bB_\001\a\365\f\001 S\005\b\320\021\030\b\001\000\000\000\274A_\001,\316\024\001\001\000\000\000\001\000\000\000\344"...
+ buf =
+ #8 0x012586c8 in __fork () at ../sysdeps/mach/hurd/fork.c:466
+ newproc = 122
+ sigthread_refs = 4
+ portnames = 0x63000
+ porttypes = 0x64000
+ sigthread = 130
+ state = {gs = 1, fs = 18236712, es = 20390776, ds = 17004532, edi = 1, esi = 143348, ebp = 23020160, esp = 0, ebx = 23020088, edx = 23020016,
+ ecx = 23020028, eax = 3966371413, eip = 23020088, cs = 18236712, efl = 0, uesp = 20138312, ss = 18488015}
+ newtask = 121
+ thread = 139
+ thread_refs = 65534
+ statecount =
+ nportnames = 142
+ nporttypes = 142
+ env = {{__jmpbuf = {20037620, 23068628, 23020252, 23020128, 23019736, 19231503}, __mask_was_saved = 0, __saved_mask = 4222451713}}
+ pid =
+ err = EKERN_INVALID_ADDRESS
+ __PRETTY_FUNCTION__ = "__fork"
+ ss = 0x1376808
+ threads = 0x65000
+ nthreads = 2
+ stopped = 0
+ i = 2
+ #9 0x011f92e9 in do_system (line=0x15f42dc "/bin/stty sane > /dev/ttypa") at ../sysdeps/posix/system.c:119
+ status =
+ save =
+ pid =
+ sa = {__sigaction_handler = {sa_handler = 0x1, sa_sigaction = 0x1}, sa_mask = 524288, sa_flags = 0}
+ omask = 0
+ [...]
+
+`fork` failed here:
+
+ 458 /* We have one extra user reference created at the beginning of this
+ 459 function, accounted for by mach_port_names (and which will thus be
+ 460 accounted for in the child below). This extra right gets consumed
+ 461 in the child by the store into _hurd_sigthread in the child fork. */
+ 462 if (thread_refs > 1 &&
+ 463 (err = __mach_port_mod_refs (newtask, ss->thread,
+ 464 MACH_PORT_RIGHT_SEND,
+ 465 thread_refs)))
+ 466 LOSE;
+
+This is in the parent, before signal thread setup, registering with the
+proc server, and starting the new process.
+
+The error is 19, `EKERN_UREFS_OVERFLOW`.
+
+(This is likely also the reason why the error path did not execute
+successfully.)
+
+[[!tag open_issue_glibc]]
--
cgit v1.2.3
From 9b7980c918a324f1f624df832f2080d514ea979c Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Thu, 25 Nov 2010 08:54:36 +0100
Subject: open_issues/binutils: Update.
---
open_issues/binutils.mdwn | 2 +-
open_issues/binutils/testsuite.mdwn | 44 +++++++++------
open_issues/binutils/testsuite/log_build-diff | 78 ++++++++++++++-------------
open_issues/binutils/testsuite/sum_hurd | 16 +++---
open_issues/binutils/testsuite/sum_linux | 10 ++--
5 files changed, 85 insertions(+), 65 deletions(-)
diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn
index 1796deaf..79fcc4a9 100644
--- a/open_issues/binutils.mdwn
+++ b/open_issues/binutils.mdwn
@@ -28,7 +28,7 @@ though, as explained below.
# Configuration
-Last checked against a21e91c6604036d32acbec4d34e4e9fe081cc34f (2010-11-08).
+Last reviewed against cdb2275c9ffb41cacdcee078cf43718ab66c091e (2010-11-24).
* Globally
diff --git a/open_issues/binutils/testsuite.mdwn b/open_issues/binutils/testsuite.mdwn
index 82bd19b1..4a13868f 100644
--- a/open_issues/binutils/testsuite.mdwn
+++ b/open_issues/binutils/testsuite.mdwn
@@ -11,7 +11,7 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_binutils]]
Here's a log of a binutils build and testsuite run; this is from
-a0fc8b2145396563ff60761d8b4ff1d3d3a92c41 (2010-11-07)
+fb02b34127764596bd182e258400a59356f6cdce (2010-11-24)
[[sources|source_repositories/binutils]], run on kepler.SCHWINGE and grubber.
$ export LC_ALL=C
@@ -23,7 +23,7 @@ a0fc8b2145396563ff60761d8b4ff1d3d3a92c41 (2010-11-07)
(kepler.SCHWINGE defaults to using /bin/sh for libtool, grubber to /bin/bash;
thus harmonized.)
-On grubber, this takes roughly 50 minutes.
+On grubber, this takes roughly one hour.
x86 GNU/Linux and GNU/Hurd's configurations are [[slightly
different|binutils]], thus mask out most of the differences that are due to
@@ -38,7 +38,7 @@ GNU/Linux defining `-DTRAD_CORE`, `-DHAVE_i386linux_vec`
$ make -k check
[...]
-On grubber, this takes roughly 45 minutes.
+On grubber, this takes roughly one hour.
$ ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils/testsuite/sum_linux
$ ssh grubber 'cd tmp/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils/testsuite/sum_hurd
@@ -46,12 +46,12 @@ On grubber, this takes roughly 45 minutes.
Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
$ diff -u -F ^Running open_issues/binutils/testsuite/sum_linux open_issues/binutils/testsuite/sum_hurd
- --- open_issues/binutils/testsuite/sum_linux 2010-11-08 06:45:04.000000000 +0100
- +++ open_issues/binutils/testsuite/sum_hurd 2010-11-08 06:45:18.000000000 +0100
+ --- open_issues/binutils/testsuite/sum_linux 2010-11-24 13:01:43.000000000 +0100
+ +++ open_issues/binutils/testsuite/sum_hurd 2010-11-25 08:51:52.000000000 +0100
@@ -1,5 +1,5 @@
- -Test Run By thomas on Sun Nov 7 20:20:33 2010
+ -Test Run By thomas on Wed Nov 24 12:32:00 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sun Nov 7 21:03:30 2010
+ +Test Run By tschwinge on Wed Nov 24 12:33:09 2010
+Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -60,9 +60,9 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
# of expected passes 83
# of unsupported tests 2
- -Test Run By thomas on Sun Nov 7 20:20:55 2010
+ -Test Run By thomas on Wed Nov 24 12:32:23 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sun Nov 7 21:10:31 2010
+ +Test Run By tschwinge on Wed Nov 24 12:43:48 2010
+Native configuration is i686-unknown-gnu0.3
=== ld tests ===
@@ -80,7 +80,17 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
PASS: ld link shared library
PASS: ld export symbols from archive
- @@ -551,8 +551,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ @@ -317,7 +317,8 @@ Running [...]/hurd/ld/testsuite/ld-elf/s
+ PASS: assignment of ELF sections to segments (disjoint pages)
+ Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
+ PASS: ld-elf/64ksec-r
+ -PASS: ld-elf/64ksec
+ +WARNING: program timed out.
+ +FAIL: ld-elf/64ksec
+ Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
+ PASS: Build libfoo.so
+ PASS: Build versioned libfoo.so
+ @@ -551,8 +552,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
PASS: ELF DSO weak func last DSO
PASS: ELF weak func first
PASS: ELF weak func last
@@ -91,7 +101,7 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
PASS: ELF DSO weak data first
PASS: ELF DSO weak data last
PASS: ELF DSO weak data first DSO
- @@ -563,10 +563,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
+ @@ -563,10 +564,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
PASS: ELF weak data last
PASS: ELF weak data first common
PASS: ELF weak data last common
@@ -106,25 +116,27 @@ Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
PASS: ELF DSO small bar (size)
PASS: ELF DSO foo with small bar (size)
PASS: ELF DSO big bar (size)
- @@ -871,13 +871,13 @@ Running [...]/hurd/ld/testsuite/ld-xtens
+ @@ -871,13 +872,14 @@ Running [...]/hurd/ld/testsuite/ld-xtens
=== ld Summary ===
-# of expected passes 616
-# of expected failures 8
- +# of expected passes 607
+ +# of expected passes 606
+ +# of unexpected failures 1
+# of expected failures 17
# of untested testcases 6
- /media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
+ /media/data[...]/hurd.build/ld/ld-new 2.21.51.20101124
- -Test Run By thomas on Sun Nov 7 20:20:38 2010
+ -Test Run By thomas on Wed Nov 24 12:32:05 2010
-Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Sun Nov 7 21:05:14 2010
+ +Test Run By tschwinge on Wed Nov 24 12:36:10 2010
+Native configuration is i686-unknown-gnu0.3
=== gas tests ===
+
# Analysis
## `FAIL: static [...]`
diff --git a/open_issues/binutils/testsuite/log_build-diff b/open_issues/binutils/testsuite/log_build-diff
index 461dd9bd..b71f5576 100644
--- a/open_issues/binutils/testsuite/log_build-diff
+++ b/open_issues/binutils/testsuite/log_build-diff
@@ -1,5 +1,5 @@
---- /dev/fd/63 2010-11-08 06:42:49.315023002 +0100
-+++ /dev/fd/62 2010-11-08 06:42:49.315023002 +0100
+--- /dev/fd/63 2010-11-24 12:31:28.065577000 +0100
++++ /dev/fd/62 2010-11-24 12:31:28.065577000 +0100
@@ -1,6 +1,6 @@
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-pc-linux-gnu
@@ -10,7 +10,7 @@
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
-@@ -96,7 +96,7 @@
+@@ -99,7 +99,7 @@
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
@@ -19,7 +19,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -105,9 +105,9 @@
+@@ -108,9 +108,9 @@
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
@@ -32,7 +32,7 @@
checking for library containing strerror... none required
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
-@@ -214,11 +214,11 @@
+@@ -217,11 +217,11 @@
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... makeinfo --split-size=5000000
checking for perl... perl
@@ -49,7 +49,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -273,7 +273,7 @@
+@@ -276,12 +276,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -58,7 +58,13 @@
checking for sys/systemcfg.h... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
-@@ -347,13 +347,13 @@
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -351,13 +351,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -75,7 +81,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -368,7 +368,7 @@
+@@ -372,7 +372,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -84,7 +90,7 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -402,10 +402,10 @@
+@@ -406,10 +406,10 @@
mkdir -p -- ./bfd
Configuring in ./bfd
configure: creating cache ./config.cache
@@ -99,7 +105,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -422,9 +422,9 @@
+@@ -426,9 +426,9 @@
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
@@ -112,7 +118,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -453,34 +453,34 @@
+@@ -457,34 +457,34 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -155,7 +161,7 @@
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
-@@ -563,22 +563,22 @@
+@@ -567,22 +567,22 @@
checking sys/procfs.h usability... yes
checking sys/procfs.h presence... yes
checking for sys/procfs.h... yes
@@ -185,7 +191,7 @@
checking for win32_pstatus_t in sys/procfs.h... no
checking linker --as-needed support... yes
checking for cos in -lm... yes
-@@ -593,7 +593,7 @@
+@@ -597,7 +597,7 @@
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
@@ -194,7 +200,7 @@
checking for mprotect... yes
configure: updating cache ./config.cache
configure: creating ./config.status
-@@ -1211,36 +1211,15 @@
+@@ -1215,36 +1215,15 @@
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../hurd/bfd/dwarf1.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../hurd/bfd/dwarf1.c -o dwarf1.o
mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
@@ -232,7 +238,7 @@
case " $f " in \
*" $i "*) ;; \
*) f="$f $i" ;; \
-@@ -1250,7 +1229,7 @@
+@@ -1254,7 +1233,7 @@
/bin/bash ../../hurd/bfd/../move-if-change tofiles ofiles
touch stamp-ofiles
/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -release `cat libtool-soversion` -o libbfd.la -rpath [...].install/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles` -lz
@@ -241,7 +247,7 @@
libtool: link: ranlib .libs/libbfd.a
libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
libtooldir=`/bin/bash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
-@@ -1266,10 +1245,10 @@
+@@ -1270,10 +1249,10 @@
mkdir -p -- ./opcodes
Configuring in ./opcodes
configure: creating cache ./config.cache
@@ -256,7 +262,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -1286,7 +1265,7 @@
+@@ -1290,7 +1269,7 @@
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
@@ -265,7 +271,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1307,8 +1286,8 @@
+@@ -1311,8 +1290,8 @@
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
@@ -276,7 +282,7 @@
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
-@@ -1317,27 +1296,27 @@
+@@ -1321,27 +1300,27 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -311,7 +317,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -1441,10 +1420,10 @@
+@@ -1445,10 +1424,10 @@
mkdir -p -- ./binutils
Configuring in ./binutils
configure: creating cache ./config.cache
@@ -326,7 +332,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -1461,7 +1440,7 @@
+@@ -1465,7 +1444,7 @@
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
@@ -335,7 +341,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1492,28 +1471,28 @@
+@@ -1496,28 +1475,28 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -371,7 +377,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -1533,7 +1512,7 @@
+@@ -1537,7 +1516,7 @@
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking whether to enable maintainer-specific portions of Makefiles... no
@@ -380,7 +386,7 @@
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
-@@ -1906,10 +1885,10 @@
+@@ -1912,10 +1891,10 @@
mkdir -p -- ./gas
Configuring in ./gas
configure: creating cache ./config.cache
@@ -395,7 +401,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -1926,7 +1905,7 @@
+@@ -1932,7 +1911,7 @@
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
@@ -404,7 +410,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1957,28 +1936,28 @@
+@@ -1963,28 +1942,28 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -440,7 +446,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -2158,10 +2137,10 @@
+@@ -2164,10 +2143,10 @@
mkdir -p -- ./gprof
Configuring in ./gprof
configure: creating cache ./config.cache
@@ -455,7 +461,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -2178,7 +2157,7 @@
+@@ -2184,7 +2163,7 @@
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
@@ -464,7 +470,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -2209,28 +2188,28 @@
+@@ -2215,28 +2194,28 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -500,7 +506,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -2389,10 +2368,10 @@
+@@ -2397,10 +2376,10 @@
mkdir -p -- ./ld
Configuring in ./ld
configure: creating cache ./config.cache
@@ -515,7 +521,7 @@
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
-@@ -2414,7 +2393,7 @@
+@@ -2422,7 +2401,7 @@
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
@@ -524,7 +530,7 @@
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
-@@ -2442,28 +2421,28 @@
+@@ -2450,28 +2429,28 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -560,7 +566,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -2546,13 +2525,13 @@
+@@ -2554,13 +2533,13 @@
/bin/bash ../../hurd/ld/../ylwrap ../../hurd/ld/ldgram.y y.tab.c ldgram.c y.tab.h ldgram.h y.output ldgram.output -- bison -y -d
updating ldgram.h
(echo "/* This file is automatically generated. DO NOT EDIT! */";\
@@ -576,7 +582,7 @@
| sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
echo " &ld_${f}_emulation, \\"; \
done;\
-@@ -2639,8 +2618,8 @@
+@@ -2647,8 +2626,8 @@
mv -f .deps/ldctor.Tpo .deps/ldctor.Po
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
-DDEFAULT_EMULATION='"elf_i386"' \
@@ -587,7 +593,7 @@
../../hurd/ld/ldmain.c
mv -f .deps/ldmain.Tpo .deps/ldmain.Po
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldwrite.o -MD -MP -MF .deps/ldwrite.Tpo -c -o ldwrite.o ../../hurd/ld/ldwrite.c
-@@ -2654,7 +2633,7 @@
+@@ -2662,7 +2641,7 @@
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmisc.o -MD -MP -MF .deps/ldmisc.Tpo -c -o ldmisc.o ../../hurd/ld/ldmisc.c
mv -f .deps/ldmisc.Tpo .deps/ldmisc.Po
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
@@ -596,7 +602,7 @@
../../hurd/ld/ldfile.c
mv -f .deps/ldfile.Tpo .deps/ldfile.Po
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldcref.o -MD -MP -MF .deps/ldcref.Tpo -c -o ldcref.o ../../hurd/ld/ldcref.c
-@@ -2662,14 +2641,11 @@
+@@ -2670,14 +2649,11 @@
gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../hurd/ld/plugin.c
mv -f .deps/plugin.Tpo .deps/plugin.Po
cp ../../hurd/ld/emultempl/astring.sed stringify.sed
diff --git a/open_issues/binutils/testsuite/sum_hurd b/open_issues/binutils/testsuite/sum_hurd
index d1373e39..cf673575 100644
--- a/open_issues/binutils/testsuite/sum_hurd
+++ b/open_issues/binutils/testsuite/sum_hurd
@@ -1,4 +1,4 @@
-Test Run By tschwinge on Sun Nov 7 21:03:30 2010
+Test Run By tschwinge on Wed Nov 24 12:33:09 2010
Native configuration is i686-unknown-gnu0.3
=== binutils tests ===
@@ -114,7 +114,7 @@ Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
# of expected passes 83
# of unsupported tests 2
-Test Run By tschwinge on Sun Nov 7 21:10:31 2010
+Test Run By tschwinge on Wed Nov 24 12:43:48 2010
Native configuration is i686-unknown-gnu0.3
=== ld tests ===
@@ -317,7 +317,8 @@ PASS: assignment of ELF sections to segments (adjacent pages)
PASS: assignment of ELF sections to segments (disjoint pages)
Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
PASS: ld-elf/64ksec-r
-PASS: ld-elf/64ksec
+WARNING: program timed out.
+FAIL: ld-elf/64ksec
Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
PASS: Build libfoo.so
PASS: Build versioned libfoo.so
@@ -871,12 +872,13 @@ Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
=== ld Summary ===
-# of expected passes 607
+# of expected passes 606
+# of unexpected failures 1
# of expected failures 17
# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
+/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101124
-Test Run By tschwinge on Sun Nov 7 21:05:14 2010
+Test Run By tschwinge on Wed Nov 24 12:36:10 2010
Native configuration is i686-unknown-gnu0.3
=== gas tests ===
@@ -1312,5 +1314,5 @@ Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
=== gas Summary ===
# of expected passes 316
-../as-new 2.21.51.20101107
+../as-new 2.21.51.20101124
diff --git a/open_issues/binutils/testsuite/sum_linux b/open_issues/binutils/testsuite/sum_linux
index da645ba0..883afec0 100644
--- a/open_issues/binutils/testsuite/sum_linux
+++ b/open_issues/binutils/testsuite/sum_linux
@@ -1,4 +1,4 @@
-Test Run By thomas on Sun Nov 7 20:20:33 2010
+Test Run By thomas on Wed Nov 24 12:32:00 2010
Native configuration is i686-pc-linux-gnu
=== binutils tests ===
@@ -114,7 +114,7 @@ Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
# of expected passes 83
# of unsupported tests 2
-Test Run By thomas on Sun Nov 7 20:20:55 2010
+Test Run By thomas on Wed Nov 24 12:32:23 2010
Native configuration is i686-pc-linux-gnu
=== ld tests ===
@@ -874,9 +874,9 @@ Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
# of expected passes 616
# of expected failures 8
# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101107
+/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101124
-Test Run By thomas on Sun Nov 7 20:20:38 2010
+Test Run By thomas on Wed Nov 24 12:32:05 2010
Native configuration is i686-pc-linux-gnu
=== gas tests ===
@@ -1312,5 +1312,5 @@ Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
=== gas Summary ===
# of expected passes 316
-../as-new 2.21.51.20101107
+../as-new 2.21.51.20101124
--
cgit v1.2.3
From 1e67a761cbfa94a69cec2f5709d23d7983cd0fc1 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Thu, 25 Nov 2010 11:55:21 +0100
Subject: Talk about advantages, challenges, how many developers, why so few
developers.
---
advantages.mdwn | 71 ++++++++++++++++++
challenges.mdwn | 21 ++++++
.../gsoc/project_ideas/language_bindings.mdwn | 2 +-
faq/how_many_developers.mdwn | 25 +++++++
faq/why_so_few_developers.mdwn | 27 +++++++
hurd/advantages.mdwn | 67 -----------------
hurd/challenges.mdwn | 16 ----
index.mdwn | 8 +-
open_issues/benefits.mdwn | 86 ---------------------
.../benefits_of_a_native_hurd_implementation.mdwn | 87 ++++++++++++++++++++++
...implementing_hurd_on_top_of_another_system.mdwn | 45 +++++------
open_issues/multiprocessing.mdwn | 18 ++---
tag.mdwn | 5 ++
13 files changed, 276 insertions(+), 202 deletions(-)
create mode 100644 advantages.mdwn
create mode 100644 challenges.mdwn
create mode 100644 faq/how_many_developers.mdwn
create mode 100644 faq/why_so_few_developers.mdwn
delete mode 100644 hurd/advantages.mdwn
delete mode 100644 hurd/challenges.mdwn
delete mode 100644 open_issues/benefits.mdwn
create mode 100644 open_issues/benefits_of_a_native_hurd_implementation.mdwn
diff --git a/advantages.mdwn b/advantages.mdwn
new file mode 100644
index 00000000..18e6506b
--- /dev/null
+++ b/advantages.mdwn
@@ -0,0 +1,71 @@
+[[!meta copyright="Copyright © 2001, 2002, 2008, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+The GNU Hurd has a number of enticing features:
+
+It's free software, so anybody can use, modify, and redistribute it under the
+terms of the [[GNU General Public License (GPL)|GPL]].
+
+It's compatible as it provides a familiar programming and user environment.
+For all intents and purposes, the Hurd provides the same facilities as a modern
+[[Unix]]-like kernel. The Hurd uses the [[GNU C Library|glibc]], whose
+development closely tracks standards such as ANSI/ISO, BSD, POSIX, Single Unix,
+SVID, and X/Open.
+
+Unlike other popular kernel software, the Hurd has an object-oriented structure
+that allows it to evolve without compromising its design. This structure will
+help the Hurd undergo major redesign and modifications without having to be
+entirely rewritten.
+
+The Hurd is built in a very modular fashion. Other Unix-like kernels (Linux,
+for example) are also modular in that they allow loading (and unloading) some
+components as kernel modules, but the Hurd goes one step further in that most
+of the components that constitute the whole kernel are running as separate
+user-space processes and are thus using different address spaces that are
+isolated from each other. This is a multi-server design based on a
+[[microkernel]]. It is not possible that a faulty memory dereference inside
+the [[TCP/IP stack|hurd/translator/pfinet]] can bring down the whole kernel,
+and thus the whole system, which is a real problem in a monolothic Unix kernel
+architecture.
+
+One advantage of the Hurd's separation of kernel-like functionality into
+separate components ([[servers|hurd/translator]]) is that these can be
+constructed using different programming lanugages -- a feature that is not
+easily possible in a monolithic kernel. Essentially, only an interface from
+the programming environment to the [[RPC]] mechanism is required. (We have a
+[[project proposal|community/gsoc/project_ideas/language_bindings]] for this,
+if you're interested.)
+
+
+
+The Hurd is an attractive platform for learning how to become a kernel hacker
+or for implementing new ideas in kernel technology. Every part of the system
+is designed to be easily modified and extended.
+
+It is possible to develop and test new Hurd kernel components without rebooting
+the machine. Running your own kernel components doesn't interfere with other
+users, and so no special system privileges are required. The mechanism for
+kernel extensions is secure by design: it is impossible to impose your changes
+upon other users unless they authorize them or you are the system
+administrator.
+
+The Hurd is real software that works right now. It is not a research project
+or a proposal. You don't have to wait at all before you can [[start
+using|hurd/running]] and [[developing|contributing]] it.
+
+
diff --git a/challenges.mdwn b/challenges.mdwn
new file mode 100644
index 00000000..5368ae4e
--- /dev/null
+++ b/challenges.mdwn
@@ -0,0 +1,21 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+The GNU Hurd has a lot of [[advantages]], but there are challenges, too.
+
+Even though they're quite popular in the simpler embedded space, there is no
+successful true multi-server [[microkernel]] system for general-purpose desktop
+use yet. This is still an ongoing research effort. (TODO: add references.)
+
+Likewise, resource scheduling in distributed operating system kernels is a
+research topic. For example, read more about it on the relevant [[Open Issues
+page|open_issues/multiprocessing]].
+
+TODO: more to come. [[!tag open_issue_documentation]]
diff --git a/community/gsoc/project_ideas/language_bindings.mdwn b/community/gsoc/project_ideas/language_bindings.mdwn
index 460b380b..c8a02390 100644
--- a/community/gsoc/project_ideas/language_bindings.mdwn
+++ b/community/gsoc/project_ideas/language_bindings.mdwn
@@ -20,7 +20,7 @@ However, in practice this is not as easy as it should, because creating
translators and other servers is quite involved -- the interfaces for doing
that are not exactly simple, and available only for C programs. Being able to
easily create simple translators in RAD languages is highly desirable, to
-really be able to reap the advantages of the Hurd architecture.
+really be able to reap the [[advantages]] of the Hurd architecture.
Originally Lisp was meant to be the second system language besides C in the GNU
system; but that doesn't mean we are bound to Lisp. Bindings for any popular
diff --git a/faq/how_many_developers.mdwn b/faq/how_many_developers.mdwn
new file mode 100644
index 00000000..a553df21
--- /dev/null
+++ b/faq/how_many_developers.mdwn
@@ -0,0 +1,25 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="How many developers are working on the GNU Hurd?"]]
+
+Not many. One handful work on it in their free time, and another two
+handful do help with [[Debian GNU/Hurd|hurd/running/debian]] and
+[[hurd/running/Arch_Hurd]] packaging. Also, an additional handful of
+former developers are still availble for answering technical questions,
+but are not really participating in the current development anymore.
+
+For reaching out to new developers, we're participating in [[Google's
+Summer of Code program|community/gsoc]]. Likewise, any interested party
+(*you*!) are very welcome to start [[contributing]]. Mentoring is
+possible, too, to help you get started.
+
+Continue reading some speculation about [[why so few developers]] are working
+on the GNU Hurd.
diff --git a/faq/why_so_few_developers.mdwn b/faq/why_so_few_developers.mdwn
new file mode 100644
index 00000000..a2740abc
--- /dev/null
+++ b/faq/why_so_few_developers.mdwn
@@ -0,0 +1,27 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="Why are there so few developers working on the GNU
+Hurd?"]]
+
+[[There aren't working a lot of people on the GNU
+Hurd|how_many_developers]]. Why is this?
+
+We can only speculate. One major problem might be that the
+[[architectural benefits|advantages]] are generally perceived as very
+abstract, with little practical benefits. We don't have many tools to
+present actually making use of the possibilities.
+
+Another reason is that it's been taking too long. Most people don't
+believe it will ever be ready for production use, and thus would consider
+involvement a waste of time. This latter point is invalid, of course, as
+learning can never be a waste of time. The same holds for the
+[[challenges]] raised by the GNU Hurd -- we can only learn and improve
+upon working on them.
diff --git a/hurd/advantages.mdwn b/hurd/advantages.mdwn
deleted file mode 100644
index 254e33f6..00000000
--- a/hurd/advantages.mdwn
+++ /dev/null
@@ -1,67 +0,0 @@
-[[!meta copyright="Copyright © 2001, 2002, 2008, 2010 Free Software Foundation,
-Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-The GNU Hurd has a number of enticing features:
-
-It's free software, so anybody can use, modify, and redistribute it under the
-terms of the [[GNU General Public License (GPL)|GPL]].
-
-It's compatible as it provides a familiar programming and user environment.
-For all intents and purposes, the Hurd provides the same facilities as a modern
-Unix-like kernel. The Hurd uses the [[GNU C Library|glibc]], whose development
-closely tracks standards such as ANSI/ISO, BSD, POSIX, Single Unix, SVID, and
-X/Open.
-
-Unlike other popular kernel software, the Hurd has an object-oriented structure
-that allows it to evolve without compromising its design. This structure will
-help the Hurd undergo major redesign and modifications without having to be
-entirely rewritten.
-
-The Hurd is built in a very modular fashion. Other Unix-like kernels (Linux,
-for example) are also modular in that they allow loading (and unloading) some
-components as kernel modules, but the Hurd goes one step further in that most
-of the components that constitute the whole kernel are running as separate
-user-space processes and are thus using different address spaces that are
-isolated from each other. This is a multi-server design based on a
-[[microkernel]]. It is not possible that a faulty memory dereference inside
-the [[TCP/IP stack|translator/pfinet]] can bring down the whole kernel, and
-thus the whole system, which is a real problem in a monolothic Unix kernel
-architecture.
-
-One advantage of the Hurd's separation of kernel-like functionality into
-separate components ([[servers|translator]]) is that these can be constructed
-using different programming lanugages -- a feature that is not easily possible
-in a monolithic kernel. Essentially, only an interface from the programming
-environment to the [[RPC]] mechanism is required.
-
-
-
-The Hurd is an attractive platform for learning how to become a kernel hacker
-or for implementing new ideas in kernel technology. Every part of the system
-is designed to be easily modified and extended.
-
-It is possible to develop and test new Hurd kernel components without rebooting
-the machine. Running your own kernel components doesn't interfere with other
-users, and so no special system privileges are required. The mechanism for
-kernel extensions is secure by design: it is impossible to impose your changes
-upon other users unless they authorize them or you are the system
-administrator.
-
-The Hurd is real software that works right now. It is not a research project
-or a proposal. You don't have to wait at all before you can [[start
-using|running]] and [[developing|contributing]] it.
diff --git a/hurd/challenges.mdwn b/hurd/challenges.mdwn
deleted file mode 100644
index 640b95c9..00000000
--- a/hurd/challenges.mdwn
+++ /dev/null
@@ -1,16 +0,0 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-
-
-The GNU Hurd has a lot of [[advantages]], but there are challenges, too.
-
-There is no successful true multi-server [[microkernel]] system for desktop use
-yet. Though, they are quite popular in the simpler embedded space.
diff --git a/index.mdwn b/index.mdwn
index 249b2091..9520a438 100644
--- a/index.mdwn
+++ b/index.mdwn
@@ -31,7 +31,7 @@ computing environment as possible.
---
-[[!toc]]
+[[!toc levels=2]]
## News
@@ -122,6 +122,12 @@ For more details, please read our writeup on the
[[current_state_of_the_GNU_Hurd|hurd/status]].
+### Advantages and Challenges
+
+The GNU Hurd operating system design provides [[advantages]], but uncovers new
+[[challenges]], too.
+
+
## How is this site arranged?
The menu on the upper right corner provides a rough structuring about the
diff --git a/open_issues/benefits.mdwn b/open_issues/benefits.mdwn
deleted file mode 100644
index da1248c8..00000000
--- a/open_issues/benefits.mdwn
+++ /dev/null
@@ -1,86 +0,0 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-[[!tag open_issue_documentation]]
-
-What are the benefits of a native GNU/Hurd system, now that Linux et al. can do
-so much (think [[hurd/translator]]s: FUSE, [[hurd/subhurd]]s: User-Mode-Linux,
-etc.).
-
-It is possible to begin [[implementing_Hurd_on_top_of_another_system]], but...
-
-IRC, #hurd, August / September 2010
-
- ArneBab: but Neal and I were not happy with that alone. We were
- looking for deeper improvements to the system, for, I think, sound reasons.
- That is what brought us to the L4/Coyotos technologies
- ArneBab: as you are writing a kernel in user space, you can still do
- kernel improvements there
- ArneBab: if you take it very far, you end up with a kernel that runs
- Linux in user space (just flip the two) for the drivers
- ArneBab: that is what the L4 people did with the DDE
-
-([[DDE]])
-
- ArneBab: so, with these different cuts, there are different
- opportunities. on the one end, you can run Linux as normal and get some of
- the Hurd features such as translators in some programs. At the other end,
- you can do whatever you want and run some linux code for the drivers or none
- at all.
- ArneBab: one of the big questions then becomes: at which point can
- the advantages offered by the Hurd be realized?
- ArneBab: and that's not entirely clear to me
- when I worked on this with Neal, we pushed further and further into
- need-to-change-everything land
- while the current efforts on the Hurd seem to be more equivalent to
- the could-run-it-in-userspace-on-top-of-Linux camp
- marcusb: for that I think we need a way to move towards them step by
- step. Would it be possible to get the advantages of better resource
- allocation with a Viengoos in userspace, too?
- and when that is stable, just switch over?
- ArneBab: I don't know. I suspect these people will know before us:
- http://lxc.sourceforge.net/
- something like implementing flip points: flip Linux with Hurd to Hund
- with Linux. Flip Mach with L4 to L4 with Mach.
- lxc sounds interesting.
- note that these efforts address security concerns more than other
- concerns
- so they will get isolation long before sharing is even considered
- but some of the issues are the same
- once you allow malware to do what it wants, it's a small step to also
- allow the user to what he wants :)
- it kinda looks like hacking it where it doesn’t really fit again…
- there I ask myself when the point comes that doing a cleaner design
- offsets the popularity
- they are pushing more and more stuff into userspace
- which is a good thing (to me)
- it’s hard to clearly describe how, but even though I like having more
- stuff in userspace, the way it is bolted onto Linux doesn’t feel good for me.
- FUSE is cool, but if I use it, I am at a disadvantage compared to a
- non-fuse user
- while in the Hurd, these additional options are on eqal footing.
- ArneBab: are they pushing more and more into user space? I don't
- think so. I see more of the reverse, actually
- or maybe both
- FUSE, lxd and scheduling in userspace move to userspace
- well, KMS moved to the kernel
- to avoid flickering when switching between X and the console?
- marcusb: Do you experience FUSE lxc and such being secondclass in
- Linux, too, or is that just a strange feeling of me?
- marcusb: and that splits the users into those who can get stuff into
- the kernel and those who can only work in userspace – which I don’t really
- like.
- That’s one more advantage of the Hurd: eqal footing for all (except
- the Mach hackers, but they have a very limited terrain)
- ArneBab: but UML kernel module is minimal, and Linus didn't have a
- principled objection to it (but just wanted a more general solution)
- ArneBab: as a side note, although people keep complaining, the linux
- kernel seems to be growing steadily, so getting stuff into the kernel doesn't
- seem too hard. 8-O
diff --git a/open_issues/benefits_of_a_native_hurd_implementation.mdwn b/open_issues/benefits_of_a_native_hurd_implementation.mdwn
new file mode 100644
index 00000000..34e49e86
--- /dev/null
+++ b/open_issues/benefits_of_a_native_hurd_implementation.mdwn
@@ -0,0 +1,87 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_documentation]]
+
+What are the benefits of a native GNU/Hurd system, now that Linux et al. can do
+so much? Think [[hurd/translator]]s: FUSE, [[hurd/subhurd]]s: User-Mode-Linux
+and other virtualization techiques, and so on.
+
+It is possible to begin [[implementing_Hurd_on_top_of_another_system]], but...
+
+IRC, #hurd, August / September 2010
+
+ ArneBab: but Neal and I were not happy with that alone. We were
+ looking for deeper improvements to the system, for, I think, sound
+ reasons. That is what brought us to the L4/Coyotos technologies
+ ArneBab: as you are writing a kernel in user space, you can still
+ do kernel improvements there
+ ArneBab: if you take it very far, you end up with a kernel that
+ runs Linux in user space (just flip the two) for the drivers
+ ArneBab: that is what the L4 people did with the DDE
+
+([[DDE]])
+
+ ArneBab: so, with these different cuts, there are different
+ opportunities. on the one end, you can run Linux as normal and get some
+ of the Hurd features such as translators in some programs. At the other
+ end, you can do whatever you want and run some linux code for the drivers
+ or none at all.
+ ArneBab: one of the big questions then becomes: at which point
+ can the advantages offered by the Hurd be realized?
+ ArneBab: and that's not entirely clear to me
+ when I worked on this with Neal, we pushed further and further
+ into need-to-change-everything land
+ while the current efforts on the Hurd seem to be more equivalent
+ to the could-run-it-in-userspace-on-top-of-Linux camp
+ marcusb: for that I think we need a way to move towards them step
+ by step. Would it be possible to get the advantages of better resource
+ allocation with a Viengoos in userspace, too?
+ and when that is stable, just switch over?
+ ArneBab: I don't know. I suspect these people will know before
+ us: http://lxc.sourceforge.net/
+ something like implementing flip points: flip Linux with Hurd to
+ Hund with Linux. Flip Mach with L4 to L4 with Mach.
+ lxc sounds interesting.
+ note that these efforts address security concerns more than other
+ concerns
+ so they will get isolation long before sharing is even considered
+ but some of the issues are the same
+ once you allow malware to do what it wants, it's a small step to
+ also allow the user to what he wants :)
+ it kinda looks like hacking it where it doesn’t really fit again…
+ there I ask myself when the point comes that doing a cleaner
+ design offsets the popularity
+ they are pushing more and more stuff into userspace
+ which is a good thing (to me)
+ it’s hard to clearly describe how, but even though I like having
+ more stuff in userspace, the way it is bolted onto Linux doesn’t feel
+ good for me.
+ FUSE is cool, but if I use it, I am at a disadvantage compared to
+ a non-fuse user
+ while in the Hurd, these additional options are on eqal footing.
+ ArneBab: are they pushing more and more into user space? I don't
+ think so. I see more of the reverse, actually
+ or maybe both
+ FUSE, lxd and scheduling in userspace move to userspace
+ well, KMS moved to the kernel
+ to avoid flickering when switching between X and the console?
+ marcusb: Do you experience FUSE lxc and such being secondclass in
+ Linux, too, or is that just a strange feeling of me?
+ marcusb: and that splits the users into those who can get stuff
+ into the kernel and those who can only work in userspace – which I don’t
+ really like.
+ That’s one more advantage of the Hurd: eqal footing for all
+ (except the Mach hackers, but they have a very limited terrain)
+ ArneBab: but UML kernel module is minimal, and Linus didn't have
+ a principled objection to it (but just wanted a more general solution)
+ ArneBab: as a side note, although people keep complaining, the
+ linux kernel seems to be growing steadily, so getting stuff into the
+ kernel doesn't seem too hard. 8-O
diff --git a/open_issues/implementing_hurd_on_top_of_another_system.mdwn b/open_issues/implementing_hurd_on_top_of_another_system.mdwn
index 1d7a1e50..7e88e322 100644
--- a/open_issues/implementing_hurd_on_top_of_another_system.mdwn
+++ b/open_issues/implementing_hurd_on_top_of_another_system.mdwn
@@ -21,8 +21,8 @@ IRC, #hurd, August / September 2010
silver_hook: the Hurd can also refer to the interfaces of the
filesystems etc, and a lot of that is really just server/client APIs that
- could be implemented on any system that has transferable rights to message
- capabilities.
+ could be implemented on any system that has transferable rights to
+ message capabilities.
silver_hook: it's surprising how few systems *have* transferable
rights, though!
silver_hook: usually it is added as an afterthought
@@ -33,23 +33,24 @@ IRC, #hurd, August / September 2010
youpi: it's described in the Stevens series even
[...]
ArneBab: well, let me put it this way. the Linux kernel has no
- interface to manipulate another tasks's virtual address space, ie you can't
- map/unmap stuff in another process
- ArneBab: you would have to use ptrace and load some stub code in that
- process to make that happen.
- ArneBab: so for complete transparent manipulation, you need a kernel
- module
+ interface to manipulate another tasks's virtual address space, ie you
+ can't map/unmap stuff in another process
+ ArneBab: you would have to use ptrace and load some stub code in
+ that process to make that happen.
+ ArneBab: so for complete transparent manipulation, you need a
+ kernel module
that is what the User Mode Linux kernel module does
- ArneBab: so say you use the User Mode Linux kernel module for that
- one feature. Then you can do everything that User Mode Linux can do, which,
- I assure you, includes running subhurds :)
+ ArneBab: so say you use the User Mode Linux kernel module for
+ that one feature. Then you can do everything that User Mode Linux can
+ do, which, I assure you, includes running subhurds :)
it can be a bit tricky to implement those features, but it is not
harder than writing a kernel in the first place
- So, if I got an admin to install User Mode Linux and Mach emulation,
- I’d get the flexibility (and independence from admin decisions) I have in the
- Hurd?
- ArneBab: one problem is that you still use Linux. For those who want
- to get rid of Linux for political reasons, that would mean complete failure
+ So, if I got an admin to install User Mode Linux and Mach
+ emulation, I’d get the flexibility (and independence from admin
+ decisions) I have in the Hurd?
+ ArneBab: one problem is that you still use Linux. For those who
+ want to get rid of Linux for political reasons, that would mean complete
+ failure
ArneBab: if you have UML kernel module, you can implement Mach in
user space
ArneBab: in fact, John Tobey did this a couple of years ago, or
@@ -57,10 +58,10 @@ IRC, #hurd, August / September 2010
([[tschwinge]] has tarballs of John's work.)
- ArneBab: or you can just implement parts of it and relay to Linux for
- the rest
- the point is, that if you don't care for kernel improvements, and are
- sufficiently happy with the translator stuff, it's not hard to bring the Hurd
- to Linux or BSD
+ ArneBab: or you can just implement parts of it and relay to Linux
+ for the rest
+ the point is, that if you don't care for kernel improvements, and
+ are sufficiently happy with the translator stuff, it's not hard to bring
+ the Hurd to Linux or BSD
-(Continue: [[benefits]].)
+Continue reading about the [[benefits of a native Hurd implementation]].
diff --git a/open_issues/multiprocessing.mdwn b/open_issues/multiprocessing.mdwn
index 7b4f2611..224c0826 100644
--- a/open_issues/multiprocessing.mdwn
+++ b/open_issues/multiprocessing.mdwn
@@ -11,7 +11,7 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_hurd]]
We would expect that fine-grained, compartmentalized systems, that is,
-microkernel-based multi-server systems in particular, would be ideal condidates
+microkernel-based multi-server systems in particular, would be ideal candidates
for applying multiprocessing. That is, however, only true from a first and
inexperienced point of view: there are many difficulties.
@@ -19,14 +19,14 @@ inexperienced point of view: there are many difficulties.
IRC, #hurd, August / September 2010
silver_hook: because multi-server systems depend on inter-process
- communication, and inter-process communication is many times more expensive
- across cpus
- silver_hook: so you either force interrelated work on the same cpu,
- or suffer heavy penalties. and in a typical fine-grained object system, all
- objects are interconnected!
- silver_hook: resources in today's systems, even in a single node with
- one cpu, but more so in a network, are very non-uniform. scheduling these
- resources efficiently is a huge problem. restricting the resource
+ communication, and inter-process communication is many times more
+ expensive across cpus
+ silver_hook: so you either force interrelated work on the same
+ cpu, or suffer heavy penalties. and in a typical fine-grained object
+ system, all objects are interconnected!
+ silver_hook: resources in today's systems, even in a single node
+ with one cpu, but more so in a network, are very non-uniform. scheduling
+ these resources efficiently is a huge problem. restricting the resource
distribution policies in the way microkernel systems tend to do is posing
serious research challenges
diff --git a/tag.mdwn b/tag.mdwn
index e96e88d5..6051de3b 100644
--- a/tag.mdwn
+++ b/tag.mdwn
@@ -23,6 +23,11 @@ Most of them should be self-explanatory.
GNU/Hurd|hurd/running/debian]] distribution, but not yet in the upstream
sources.
+ * *open_issue_documentation*
+
+ Use for tagging pages / items that need to be handled / improved for
+ documentation purposes.
+
* *open_issue_porting*
A list of open issues in porting software to run on GNU/Hurd systems. This
--
cgit v1.2.3
From adf6755da0ed4a18fee1d7f871ea307043d72620 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Thu, 25 Nov 2010 12:31:30 +0100
Subject: open_issues: Add headings.
---
open_issues.mdwn | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/open_issues.mdwn b/open_issues.mdwn
index 9f9289e2..dbc33bdd 100644
--- a/open_issues.mdwn
+++ b/open_issues.mdwn
@@ -19,8 +19,14 @@ feeds=no
actions=yes
rootpage="open_issues" postformtext="Add a new item titled:"]]
+
+# List of Issues
+
[[!map
pages="(./open_issues/* or */open_issues/* or hurd/running/debian/porting/* or tagged(open_issue*)) and !*/discussion"
show=title]]
+
+# List of Tags
+
[[!inline pages=tag raw=yes feeds=no]]
--
cgit v1.2.3
From fe368cda90cd374c68780c238481b1208056655f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Thu, 25 Nov 2010 14:18:54 +0100
Subject: Update to b329454a41390ca8b3f31215d62542a27e6a8b80 of
.
---
.library/IkiWiki/Plugin/field.pm | 261 ++++++++++++++++++++++--------------
.library/IkiWiki/Plugin/getfield.pm | 4 +-
.library/IkiWiki/Plugin/ymlfront.pm | 52 +++----
3 files changed, 189 insertions(+), 128 deletions(-)
diff --git a/.library/IkiWiki/Plugin/field.pm b/.library/IkiWiki/Plugin/field.pm
index 77247ad4..d77e7282 100644
--- a/.library/IkiWiki/Plugin/field.pm
+++ b/.library/IkiWiki/Plugin/field.pm
@@ -10,11 +10,11 @@ IkiWiki::Plugin::field - front-end for per-page record fields.
=head1 VERSION
-This describes version B<0.05> of IkiWiki::Plugin::field
+This describes version B<1.20101101> of IkiWiki::Plugin::field
=cut
-our $VERSION = '0.05';
+our $VERSION = '1.20101115';
=head1 PREREQUISITES
@@ -133,7 +133,7 @@ sub scan (@) {
# scan for tag fields
if ($config{field_tags})
{
- foreach my $field (sort keys %{$config{field_tags}})
+ foreach my $field (keys %{$config{field_tags}})
{
my @values = field_get_value($field, $page);
if (@values)
@@ -177,28 +177,9 @@ sub field_register (%) {
return 0;
}
- $Fields{$param{id}} = \%param;
- if (!exists $param{call})
- {
- # closure to get the data from the pagestate hash
- $Fields{$param{id}}->{call} = sub {
- my $field_name = shift;
- my $page = shift;
- if (exists $pagestate{$page}{$param{id}}{$field_name})
- {
- return (wantarray
- ? ($pagestate{$page}{$param{id}}{$field_name})
- : $pagestate{$page}{$param{id}}{$field_name});
- }
- elsif (exists $pagestate{$page}{$param{id}}{lc($field_name)})
- {
- return (wantarray
- ? ($pagestate{$page}{$param{id}}{lc($field_name)})
- : $pagestate{$page}{$param{id}}{lc($field_name)});
- }
- return undef;
- };
- }
+ my $id = $param{id};
+ $Fields{$id} = \%param;
+
# add this to the ordering hash
# first, last, order; by default, middle
my $when = ($param{first}
@@ -219,7 +200,7 @@ sub field_register (%) {
: '_middle'
)
));
- add_lookup_order($param{id}, $when);
+ add_lookup_order($id, $when);
return 1;
} # field_register
@@ -238,100 +219,105 @@ sub field_get_value ($$) {
# any field that happens to be defined in a YAML page file, which
# could be anything!
- my $value = undef;
- my @array_value = undef;
-
# check the cache first
- if (exists $Cache{$page}{$field_name}
- and defined $Cache{$page}{$field_name})
+ my $lc_field_name = lc($field_name);
+ if (wantarray)
+ {
+ if (exists $Cache{$page}{$lc_field_name}{array}
+ and defined $Cache{$page}{$lc_field_name}{array})
+ {
+ return @{$Cache{$page}{$lc_field_name}{array}};
+ }
+ }
+ else
{
- return (wantarray
- ? @{$Cache{$page}{$field_name}{array}}
- : $Cache{$page}{$field_name}{scalar});
+ if (exists $Cache{$page}{$lc_field_name}{scalar}
+ and defined $Cache{$page}{$lc_field_name}{scalar})
+ {
+ return $Cache{$page}{$lc_field_name}{scalar};
+ }
}
if (!@FieldsLookupOrder)
{
build_fields_lookup_order();
}
- foreach my $id (@FieldsLookupOrder)
- {
- $value = $Fields{$id}{call}->($field_name, $page);
- @array_value = $Fields{$id}{call}->($field_name, $page);
- if (defined $value)
- {
- last;
- }
- }
- # extra definitions
- if (!defined $value)
+ # Get either the scalar or the array value depending
+ # on what is requested - don't get both because it wastes time.
+ if (wantarray)
{
- # Exception for titles
- # If the title hasn't been found, construct it
- if ($field_name eq 'title')
- {
- $value = pagetitle(IkiWiki::basename($page));
- }
- # and set "page" if desired
- elsif ($field_name eq 'page')
+ my @array_value = undef;
+ foreach my $id (@FieldsLookupOrder)
{
- $value = $page;
- }
- # the page above this page; aka the current directory
- elsif ($field_name eq 'parent_page')
- {
- if ($page =~ m{^(.*)/[-\.\w]+$})
+ # get the data from the pagestate hash if it's there
+ if (exists $pagestate{$page}{$id}{$field_name}
+ and defined $pagestate{$page}{$id}{$field_name})
+ {
+ @array_value = (ref $pagestate{$page}{$id}{$field_name}
+ ? @{$pagestate{$page}{$id}{$field_name}}
+ : ($pagestate{$page}{$id}{$field_name}));
+ }
+ elsif (exists $pagestate{$page}{$id}{$lc_field_name}
+ and defined $pagestate{$page}{$id}{$lc_field_name})
+ {
+ @array_value = (ref $pagestate{$page}{$id}{$lc_field_name}
+ ? @{$pagestate{$page}{$id}{$lc_field_name}}
+ : ($pagestate{$page}{$id}{$lc_field_name}));
+ }
+ elsif (exists $Fields{$id}{call})
{
- $value = $1;
+ @array_value = $Fields{$id}{call}->($field_name, $page);
+ }
+ if (@array_value and $array_value[0])
+ {
+ last;
}
}
- elsif ($field_name eq 'basename')
+ if (!@array_value)
{
- $value = IkiWiki::basename($page);
+ @array_value = field_calculated_values($field_name, $page);
}
- elsif ($config{field_allow_config}
- and $field_name =~ /^config-(.*)$/i)
+ # cache the value
+ $Cache{$page}{$lc_field_name}{array} = \@array_value;
+ return @array_value;
+ }
+ else # scalar
+ {
+ my $value = undef;
+ foreach my $id (@FieldsLookupOrder)
{
- my $cfield = $1;
- if (exists $config{$cfield})
+ # get the data from the pagestate hash if it's there
+ # but only if it's already a scalar
+ if (exists $pagestate{$page}{$id}{$field_name}
+ and !ref $pagestate{$page}{$id}{$field_name})
{
- $value = $config{$cfield};
+ $value = $pagestate{$page}{$id}{$field_name};
}
- }
- elsif ($field_name =~ /^(.*)-tagpage$/)
- {
- my $real_fn = $1;
- if (exists $config{field_tags}{$real_fn}
- and defined $config{field_tags}{$real_fn})
+ elsif (exists $pagestate{$page}{$id}{$lc_field_name}
+ and !ref $pagestate{$page}{$id}{$lc_field_name})
{
- my @values = field_get_value($real_fn, $page);
- if (@values)
- {
- foreach my $tag (@values)
- {
- if ($tag)
- {
- my $link = $config{field_tags}{$real_fn} . '/' . $tag;
- push @array_value, $link;
- }
- }
- $value = join(",", @array_value);
- }
+ $value = $pagestate{$page}{$id}{$lc_field_name};
+ }
+ elsif (exists $Fields{$id}{call})
+ {
+ $value = $Fields{$id}{call}->($field_name, $page);
+ }
+ if (defined $value)
+ {
+ last;
}
}
- }
- if (defined $value)
- {
- if (!@array_value)
+ if (!defined $value)
{
- @array_value = ($value);
+ $value = field_calculated_values($field_name, $page);
}
# cache the value
- $Cache{$page}{$field_name}{scalar} = $value;
- $Cache{$page}{$field_name}{array} = \@array_value;
+ $Cache{$page}{$lc_field_name}{scalar} = $value;
+ return $value;
}
- return (wantarray ? @array_value : $value);
+
+ return undef;
} # field_get_value
# set the values for the given HTML::Template template
@@ -356,11 +342,11 @@ sub field_set_template_values ($$;@) {
my @parameter_names = $template->param();
foreach my $field (@parameter_names)
{
- # Don't redefine if the field already has a value.
+ # Don't redefine if the field already has a value set.
next if ($template->param($field));
my $type = $template->query(name => $field);
- if ($type eq 'LOOP' and $field =~ /_LOOP$/i)
+ if ($type eq 'LOOP' and $field =~ /_LOOP$/oi)
{
# Loop fields want arrays.
# Figure out what field names to look for:
@@ -371,7 +357,7 @@ sub field_set_template_values ($$;@) {
my %loop_field_arrays = ();
foreach my $fn (@loop_fields)
{
- if ($fn !~ /^__/) # not a special loop variable
+ if ($fn !~ /^__/o) # not a special loop variable
{
my @ival_array = $get_value_fn->($fn, $page);
if (@ival_array)
@@ -418,7 +404,7 @@ sub add_lookup_order {
my $when = shift;
# may have given an explicit ordering
- if ($when =~ /^[A-Z][A-Z]$/)
+ if ($when =~ /^[A-Z][A-Z]$/o)
{
$Fields{$id}{seq} = $when;
}
@@ -426,7 +412,7 @@ sub add_lookup_order {
{
my $cmp = '=';
my $seq_field = $when;
- if ($when =~ /^([<>])(.+)$/)
+ if ($when =~ /^([<>])(.+)$/o)
{
$cmp = $1;
$seq_field = $2;
@@ -479,6 +465,77 @@ sub build_fields_lookup_order {
}
} # build_fields_lookup_order
+# standard values deduced from other values
+sub field_calculated_values {
+ my $field_name = shift;
+ my $page = shift;
+
+ my $value = undef;
+
+ # Exception for titles
+ # If the title hasn't been found, construct it
+ if ($field_name eq 'title')
+ {
+ $value = pagetitle(IkiWiki::basename($page));
+ }
+ # and set "page" if desired
+ elsif ($field_name eq 'page')
+ {
+ $value = $page;
+ }
+ # the page above this page; aka the current directory
+ elsif ($field_name eq 'parent_page')
+ {
+ if ($page =~ m{^(.*)/[-\.\w]+$}o)
+ {
+ $value = $1;
+ }
+ }
+ elsif ($field_name eq 'basename')
+ {
+ $value = IkiWiki::basename($page);
+ }
+ elsif ($config{field_allow_config}
+ and $field_name =~ /^config-(.*)$/oi)
+ {
+ my $cfield = $1;
+ if (exists $config{$cfield})
+ {
+ $value = $config{$cfield};
+ }
+ }
+ elsif ($field_name =~ /^(.*)-tagpage$/o)
+ {
+ my @array_value = undef;
+ my $real_fn = $1;
+ if (exists $config{field_tags}{$real_fn}
+ and defined $config{field_tags}{$real_fn})
+ {
+ my @values = field_get_value($real_fn, $page);
+ if (@values)
+ {
+ foreach my $tag (@values)
+ {
+ if ($tag)
+ {
+ my $link = $config{field_tags}{$real_fn} . '/' . $tag;
+ push @array_value, $link;
+ }
+ }
+ if (wantarray)
+ {
+ return @array_value;
+ }
+ else
+ {
+ $value = join(",", @array_value) if $array_value[0];
+ }
+ }
+ }
+ }
+ return (wantarray ? ($value) : $value);
+} # field_calculated_values
+
# match field funcs
# page-to-check, wanted
sub match_a_field ($$) {
@@ -488,7 +545,7 @@ sub match_a_field ($$) {
# The field name is first; the rest is the match
my $field_name;
my $glob;
- if ($wanted =~ /^(\w+)\s+(.*)$/)
+ if ($wanted =~ /^(\w+)\s+(.*)$/o)
{
$field_name = $1;
$glob = $2;
@@ -526,7 +583,7 @@ sub match_a_field_item ($$) {
# The field name is first; the rest is the match
my $field_name;
my $glob;
- if ($wanted =~ /^(\w+)\s+(.*)$/)
+ if ($wanted =~ /^(\w+)\s+(.*)$/o)
{
$field_name = $1;
$glob = $2;
@@ -607,7 +664,7 @@ sub match_field_tagged ($$;@) {
# The field name is first; the rest is the match
my $field_name;
my $glob;
- if ($wanted =~ /^(\w+)\s+(.*)$/)
+ if ($wanted =~ /^(\w+)\s+(.*)$/o)
{
$field_name = $1;
$glob = $2;
diff --git a/.library/IkiWiki/Plugin/getfield.pm b/.library/IkiWiki/Plugin/getfield.pm
index ecdd4672..971e7ecb 100644
--- a/.library/IkiWiki/Plugin/getfield.pm
+++ b/.library/IkiWiki/Plugin/getfield.pm
@@ -10,11 +10,11 @@ IkiWiki::Plugin::getfield - query the values of fields
=head1 VERSION
-This describes version B<0.02> of IkiWiki::Plugin::getfield
+This describes version B<1.20101101> of IkiWiki::Plugin::getfield
=cut
-our $VERSION = '0.02';
+our $VERSION = '1.20101101';
=head1 PREREQUISITES
diff --git a/.library/IkiWiki/Plugin/ymlfront.pm b/.library/IkiWiki/Plugin/ymlfront.pm
index 3811591b..6af4e5d6 100644
--- a/.library/IkiWiki/Plugin/ymlfront.pm
+++ b/.library/IkiWiki/Plugin/ymlfront.pm
@@ -10,11 +10,11 @@ IkiWiki::Plugin::ymlfront - add YAML-format data to a page
=head1 VERSION
-This describes version B<0.03> of IkiWiki::Plugin::ymlfront
+This describes version B<1.20100808> of IkiWiki::Plugin::ymlfront
=cut
-our $VERSION = '0.03';
+our $VERSION = '1.20101116';
=head1 PREREQUISITES
@@ -51,6 +51,31 @@ sub import {
first=>1);
}
+# ------------------------------------------------------------
+# Package Vars
+# --------------------------------
+my $ymlfront_regex = qr{
+ (\\?) # 1: escape?
+ \[\[(!) # directive open; 2: prefix
+ (ymlfront) # 3: command
+ ( # 4: the parameters..
+ \s+ # Must have space if parameters present
+ (?:
+ (?:[-\w]+=)? # named parameter key?
+ (?:
+ """.*?""" # triple-quoted value
+ |
+ "[^"]*?" # single-quoted value
+ |
+ [^"\s\]]+ # unquoted value
+ )
+ \s* # whitespace or end
+ # of directive
+ )
+ *)? # 0 or more parameters
+ \]\] # directive closed
+ }sx;
+
# ------------------------------------------------------------
# Hooks
# --------------------------------
@@ -300,27 +325,6 @@ sub parse_yml {
}
elsif ($content)
{
- my $regex = qr{
- (\\?) # 1: escape?
- \[\[(!) # directive open; 2: prefix
- (ymlfront) # 3: command
- ( # 4: the parameters..
- \s+ # Must have space if parameters present
- (?:
- (?:[-\w]+=)? # named parameter key?
- (?:
- """.*?""" # triple-quoted value
- |
- "[^"]*?" # single-quoted value
- |
- [^"\s\]]+ # unquoted value
- )
- \s* # whitespace or end
- # of directive
- )
- *)? # 0 or more parameters
- \]\] # directive closed
- }sx;
my $ystart = $config{ymlfront_delim}[0];
my $yend = $config{ymlfront_delim}[1];
if ($ystart eq '---'
@@ -335,7 +339,7 @@ sub parse_yml {
$yml_str = $2;
$rest_of_content = $1 . $3;
}
- elsif ($content =~ /$regex/)
+ elsif ($content =~ $ymlfront_regex)
{
my $escape=$1;
my $prefix=$2;
--
cgit v1.2.3
From cc58caf1beec20e4fcc0877119c74e616fa6af1f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 26 Nov 2010 09:32:23 +0100
Subject: tag: Tags' explanations as YAML data.
---
community/meetings/debconf10.mdwn | 9 ++++++-
community/meetings/ghm2010.mdwn | 8 +++++-
tag.mdwn | 54 +++++++++++++++++++++++++++------------
tag/fixed_in_debian.mdwn | 2 ++
tag/open_issue_documentation.mdwn | 2 ++
tag/open_issue_porting.mdwn | 2 ++
tag/stable_URL.mdwn | 2 ++
7 files changed, 60 insertions(+), 19 deletions(-)
diff --git a/community/meetings/debconf10.mdwn b/community/meetings/debconf10.mdwn
index bafd7de0..261686cc 100644
--- a/community/meetings/debconf10.mdwn
+++ b/community/meetings/debconf10.mdwn
@@ -16,5 +16,12 @@ License|/fdl]]."]]"""]]
[[!ymlfront data="""
-banck_hurd: "presentation (including video) by Michael Banck: [*Debian GNU/Hurd -- Past. Present. And Future?*](http://penta.debconf.org/dc10_schedule/events/595.en.html) ([slides](http://people.debian.org/~mbanck/debian-hurd.pdf))"
+
+banck_hurd:
+
+ "presentation (including video) by Michael Banck: [*Debian GNU/Hurd -- Past.
+ Present. And
+ Future?*](http://penta.debconf.org/dc10_schedule/events/595.en.html)
+ ([slides](http://people.debian.org/~mbanck/debian-hurd.pdf))"
+
"""]]
diff --git a/community/meetings/ghm2010.mdwn b/community/meetings/ghm2010.mdwn
index e216bfe4..b7d7e880 100644
--- a/community/meetings/ghm2010.mdwn
+++ b/community/meetings/ghm2010.mdwn
@@ -16,5 +16,11 @@ License|/fdl]]."]]"""]]
[[!ymlfront data="""
-walfield_hurd: "video of the presentation by Neal Walfield: [*GNU/Hurd: It's About Freedom (Or: Why you should care)*](http://audio-video.gnu.org/video/ghm2010/GNU-Hurd_-_Its_About_Freedom,_Or_Why_you_should_care.ogv)"
+
+walfield_hurd:
+
+ "video of the presentation by Neal Walfield: [*GNU/Hurd: It's About Freedom
+ (Or: Why you should
+ care)*](http://audio-video.gnu.org/video/ghm2010/GNU-Hurd_-_Its_About_Freedom,_Or_Why_you_should_care.ogv)"
+
"""]]
diff --git a/tag.mdwn b/tag.mdwn
index 6051de3b..acabfb28 100644
--- a/tag.mdwn
+++ b/tag.mdwn
@@ -15,31 +15,51 @@ moment:
pages="tag/* and !tag/*/*"
show=title]]
-Most of them should be self-explanatory.
+Most of them should be self-explanatory, and for the others, here are the
+explanations:
* *fixed_in_debian*
- This tag is used to tag items that have been fixed in the [[Debian
- GNU/Hurd|hurd/running/debian]] distribution, but not yet in the upstream
- sources.
+ {{$fixed_in_debian}}
* *open_issue_documentation*
- Use for tagging pages / items that need to be handled / improved for
- documentation purposes.
-
+ {{$open_issue_documentation}}
+
* *open_issue_porting*
- A list of open issues in porting software to run on GNU/Hurd systems. This
- list also includes [[toolchain]]-level items, items that are either
- already solved in [[Debian GNU/Hurd|hurd/running/debian]] systems (tagged
- *fixed_in_debian*) or being worked around, so if you're out for working on
- application-level porting issues, then perusing through the list of
- [[Debian packages that need porting|hurd/running/debian/porting]] may be
- better.
+ {{$open_issue_porting}}
* *stable_URL*
- These pages are tagged as having a *stable URL*. That is, they're linked
- to from external pages, and their locations should not be changed
- needlessly.
+ {{$stable_URL}}
+
+
+[[!ymlfront data="""
+
+fixed_in_debian:
+
+ This tag is used to tag items that have been fixed in the [[Debian
+ GNU/Hurd|hurd/running/debian]] distribution, but not yet in the upstream
+ sources.
+
+open_issue_documentation:
+
+ Used for tagging pages / items that need to be handled / improved for
+ documentation purposes.
+
+open_issue_porting:
+
+ A list of open issues in porting software to run on GNU/Hurd systems. This
+ list also includes [[toolchain]]-level items, items that are either already
+ solved in [[Debian GNU/Hurd|hurd/running/debian]] systems (tagged
+ *fixed_in_debian*) or being worked around, so if you're out for working on
+ application-level porting issues, then perusing through the list of [[Debian
+ packages that need porting|hurd/running/debian/porting]] may be better.
+
+stable_URL:
+
+ These pages are tagged as having a *stable URL*. That is, they're linked to
+ from external pages, and their locations should not be changed needlessly.
+
+"""]]
diff --git a/tag/fixed_in_debian.mdwn b/tag/fixed_in_debian.mdwn
index b8aeddc8..4d946fd4 100644
--- a/tag/fixed_in_debian.mdwn
+++ b/tag/fixed_in_debian.mdwn
@@ -10,6 +10,8 @@ License|/fdl]]."]]"""]]
[[!meta title="fixed_in_debian"]]
+{{$tag#fixed_in_debian}}
+
[[!map
pages="tagged(fixed_in_debian)"
show=title]]
diff --git a/tag/open_issue_documentation.mdwn b/tag/open_issue_documentation.mdwn
index eb7f87a2..f0d1cb4c 100644
--- a/tag/open_issue_documentation.mdwn
+++ b/tag/open_issue_documentation.mdwn
@@ -10,6 +10,8 @@ License|/fdl]]."]]"""]]
[[!meta title="open_issue_documentation"]]
+{{$tag#open_issue_documentation}}
+
[[!map
pages="tagged(open_issue_documentation)"
show=title]]
diff --git a/tag/open_issue_porting.mdwn b/tag/open_issue_porting.mdwn
index 0bc33c0d..efa488b7 100644
--- a/tag/open_issue_porting.mdwn
+++ b/tag/open_issue_porting.mdwn
@@ -10,6 +10,8 @@ License|/fdl]]."]]"""]]
[[!meta title="open_issue_porting"]]
+{{$tag#open_issue_porting}}
+
[[!map
pages="tagged(open_issue_porting)"
show=title]]
diff --git a/tag/stable_URL.mdwn b/tag/stable_URL.mdwn
index 8b25517e..ff4067f6 100644
--- a/tag/stable_URL.mdwn
+++ b/tag/stable_URL.mdwn
@@ -10,6 +10,8 @@ License|/fdl]]."]]"""]]
[[!meta title="stable_URL"]]
+{{$tag#stable_URL}}
+
[[!map
pages="tagged(stable_URL)"
show=title]]
--
cgit v1.2.3
From f8f6115e7241673ec3cd5cdc79757a5139384623 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 26 Nov 2010 09:33:02 +0100
Subject: rpc: Add some links.
---
rpc.mdwn | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/rpc.mdwn b/rpc.mdwn
index 9703268f..176197dd 100644
--- a/rpc.mdwn
+++ b/rpc.mdwn
@@ -1,11 +1,19 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
RPC stands for remote procedure call.
+
+
+# See Also
+
+ * [[Mach RPC|microkernel/mach/rpc]]s
+
+ * the [[Hurd's rpctrace|hurd/debugging/rpctrace]]
--
cgit v1.2.3
From e90db4db98bf65bd354994a7496b6b4e534e3f32 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 26 Nov 2010 09:33:49 +0100
Subject: glibc/fork: New.
---
glibc/fork.mdwn | 41 +++++++++++++++++++++++++++++++++++++++
open_issues/performance/fork.mdwn | 8 +-------
2 files changed, 42 insertions(+), 7 deletions(-)
create mode 100644 glibc/fork.mdwn
diff --git a/glibc/fork.mdwn b/glibc/fork.mdwn
new file mode 100644
index 00000000..d1b26906
--- /dev/null
+++ b/glibc/fork.mdwn
@@ -0,0 +1,41 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+On [[Unix]] systems, `fork` is a rather simple system call.
+
+Our implementation in [[glibc]] is and needs to be rather bulky.
+
+For example, it has to duplicate all port rights for the new [[Mach
+task|microkernel/mach/task]]. The address space can simply be duplicated by
+standard means of the [[microkernel/Mach]], but as [[file descriptor]]s (for
+example) are a concept that is implemented inside [[glibc]] (based on [[Mach
+port|microkernel/mach/port]]s), these have to be duplicated from userspace,
+which requires a small number of [[RPC]] for each of them.
+
+In sum, [[this affects performance|open_issues/performance/fork]] when new
+processes are continuously being spawned from the shell, for example.
+
+Often, a `fork` call will eventually be followed by an `exec`, which will in
+turn close (most of) the duplicated port rights. Unfortunately, this cannot be
+known at the time the `fork` executing, so the code calling `fork` has to be
+modified, and the `fork`, `exec` combo be replaced by a `posix_spawn` call, for
+example, to avoid this work of duplicating each port right, then closing each
+again.
+
+As far as we know, Cygwin has the same problem of `fork` being a nontrivial
+operation. Perhaps we can learn from what they're been doing? Also, perhaps
+they have patches for software packages, to avoid using `fork` followed by
+`exec`, for example.
+
+---
+
+We no longer support `MACH_IPC_COMPAT`, thus we can get rid of the `err =
+__mach_port_allocate_name ([...]); if (err == KERN_NAME_EXISTS)` code[[!tag
+open_issue_glibc]].
diff --git a/open_issues/performance/fork.mdwn b/open_issues/performance/fork.mdwn
index 390f6b99..2748be53 100644
--- a/open_issues/performance/fork.mdwn
+++ b/open_issues/performance/fork.mdwn
@@ -10,13 +10,7 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_glibc open_issue_hurd]]
-On Unix systems, `fork` is a rather simple system call. Our implementation in
-[[glibc]] is / needs to be rather bulky. TODO: elaborate.
-
-This affects performance when new processes are continuously being spawned from
-the shell, for example.
-
-Alternatives: use `posix_spawn`. Others?
+Our [[`fork` implementation|glibc/fork]] is nontrivial.
To do: hard numbers.
[[Microbenchmarks]]?
--
cgit v1.2.3
From 04b7d246206355e4c85587a40177aa99a3209381 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 26 Nov 2010 10:17:20 +0100
Subject: advantages, open_issues/virtualization: Link to unsorted/hurd-migr.
---
advantages.mdwn | 2 ++
open_issues/virtualization.mdwn | 7 +++++++
2 files changed, 9 insertions(+)
diff --git a/advantages.mdwn b/advantages.mdwn
index 18e6506b..8b41f3cd 100644
--- a/advantages.mdwn
+++ b/advantages.mdwn
@@ -51,6 +51,8 @@ it runs efficiently on both single processors and symmetric multiprocessors.
The Hurd interfaces are designed to allow transparent network clusters
(*collectives*), although this feature has not yet been implemented.
+See also [[unsorted/hurd-migr]] ([[!taglink open_issue_documentation]]).
+
-->
The Hurd is an attractive platform for learning how to become a kernel hacker
diff --git a/open_issues/virtualization.mdwn b/open_issues/virtualization.mdwn
index ebf86a2d..343f624a 100644
--- a/open_issues/virtualization.mdwn
+++ b/open_issues/virtualization.mdwn
@@ -20,6 +20,13 @@ An index of things to work on w.r.t. virtualization.
* [[hurd/subhurd]] / [[hurd/neighborhurd]]
+
+
* [[Implementing_Hurd_On_Top_of_Another_System]]
* Unix / Linux
--
cgit v1.2.3
From 1f0e31cfa2c521b3a60d784c66d57922e96b5bd5 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 26 Nov 2010 10:34:00 +0100
Subject: glibc/fork: Add some TODOs.
---
glibc/fork.mdwn | 18 ++++++++++++++----
.../fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn | 5 +++++
2 files changed, 19 insertions(+), 4 deletions(-)
diff --git a/glibc/fork.mdwn b/glibc/fork.mdwn
index d1b26906..564d9d5b 100644
--- a/glibc/fork.mdwn
+++ b/glibc/fork.mdwn
@@ -34,8 +34,18 @@ operation. Perhaps we can learn from what they're been doing? Also, perhaps
they have patches for software packages, to avoid using `fork` followed by
`exec`, for example.
----
-We no longer support `MACH_IPC_COMPAT`, thus we can get rid of the `err =
-__mach_port_allocate_name ([...]); if (err == KERN_NAME_EXISTS)` code[[!tag
-open_issue_glibc]].
+# TODO
+
+ * [[fork: mach_port_mod_refs:
+ EKERN_UREFS_OWERFLOW|open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow]]
+ ([[!taglink open_issue_glibc]]).
+
+ * Include de-duplicate information from elsewhere: [[hurd-paper]],
+ [[hurd-talk]] [[hurd/ng/trivialconfinementvsconstructorvsfork]],
+ [[open_issues/resource_management_problems/zalloc_panics]] ([[!taglink
+ open_issue_glibc open_issue_documentation]]).
+
+ * We no longer support `MACH_IPC_COMPAT`, thus we can get rid of the `err =
+ __mach_port_allocate_name ([...]); if (err == KERN_NAME_EXISTS)` code
+ ([[!taglink open_issue_glibc]]).
diff --git a/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn b/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
index b6ecb92a..e80a5661 100644
--- a/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
+++ b/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
@@ -159,3 +159,8 @@ The error is 19, `EKERN_UREFS_OVERFLOW`.
successfully.)
[[!tag open_issue_glibc]]
+
+
+# Discussion
+
+
--
cgit v1.2.3
From 7280981382b9dabd94874b9dca6591e7d351fc36 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 26 Nov 2010 11:37:26 +0100
Subject: .library/IkiWiki/Plugin/ymlfront.pm: Workaround for YAML strings
containing ]].
For now, all [[!ymlfront [...]]] directives shall be at the end of the files.
---
.library/IkiWiki/Plugin/ymlfront.pm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.library/IkiWiki/Plugin/ymlfront.pm b/.library/IkiWiki/Plugin/ymlfront.pm
index 6af4e5d6..9c033833 100644
--- a/.library/IkiWiki/Plugin/ymlfront.pm
+++ b/.library/IkiWiki/Plugin/ymlfront.pm
@@ -391,6 +391,10 @@ sub parse_yml {
$content =~ /^(.*?)\[\[!ymlfront.*?\]\](.*?)$/s;
$start_of_content = $1;
$rest_of_content = $2;
+ # TODO: This breaks if the YAML string itself contains ]].
+ # Workaround: all [[!ymlfront [...]]] directives shall be
+ # at the end of the files.
+ $rest_of_content = '';
}
}
}
--
cgit v1.2.3
From c40a30e74834831e339125961457963978b83c61 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 27 Nov 2010 12:35:47 +0100
Subject: ikiwiki.setup: Update historyurl and diffurl.
---
ikiwiki.setup | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ikiwiki.setup b/ikiwiki.setup
index 4c61028f..3ef1bb73 100644
--- a/ikiwiki.setup
+++ b/ikiwiki.setup
@@ -136,9 +136,9 @@ IkiWiki::Setup::Standard->import({
# unix users whose commits should be checked by the pre-receive hook
#untrusted_committers => [],
# gitweb url to show file history ([[file]] substituted)
- historyurl => 'http://www.bddebian.com:8888/gitweb/?p=hurd-web;a=history;f=[[file]]',
+ historyurl => 'http://www.bddebian.com:8888/gitweb/?p=hurd-web;a=history;f=[[file]];hb=HEAD',
# gitweb url to show a diff ([[file]], [[sha1_to]], [[sha1_from]], [[sha1_commit]], and [[sha1_parent]] substituted)
- diffurl => 'http://www.bddebian.com:8888/gitweb/?p=hurd-web;a=blobdiff;h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_parent]];f=[[file]]',
+ diffurl => 'http://www.bddebian.com:8888/gitweb/?p=hurd-web;a=blobdiff;f=[[file]];h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_commit]];hpb=[[sha1_parent]]',
# where to pull and push changes (set to empty string to disable)
gitorigin_branch => $gitorigin_branch,
# branch that the wiki is stored in
--
cgit v1.2.3
From e36d3838db972fedfed4a30968ed144a9f0f6c96 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 27 Nov 2010 21:47:25 +0100
Subject: hurd/io_path: Link to Linux kernel design patterns - part 3
(2009-06-22) by Neil Brown.
---
hurd/io_path.mdwn | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/hurd/io_path.mdwn b/hurd/io_path.mdwn
index 78e13efd..598ad967 100644
--- a/hurd/io_path.mdwn
+++ b/hurd/io_path.mdwn
@@ -1,12 +1,15 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2008, 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="I/O Path"]]
+
# read
@@ -38,3 +41,12 @@ is included in the section entitled
* ext2fs eventually finishes the data_request() function, the kernel installs
the page into the process that got a fault.
+
+
+# Documentation
+
+ * In [*Linux kernel design patterns - part
+ 3*](http://lwn.net/Articles/336262/) (2009-06-22), Neil Brown gives a
+ nice overview of the related layering inside the Linux kernel,
+ including the VFS layer, page cache and directory entry cache
+ (dcache).
--
cgit v1.2.3
From d05a838d0fc7037f4a99a97742680a68b8b157d8 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 27 Nov 2010 21:53:21 +0100
Subject: hurd/libchannel: Link to Van Jacobson's network channels (2006-01-31)
by Jonathan Corbet.
---
hurd/libchannel.mdwn | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/hurd/libchannel.mdwn b/hurd/libchannel.mdwn
index 91c7810f..3e19fb18 100644
--- a/hurd/libchannel.mdwn
+++ b/hurd/libchannel.mdwn
@@ -1,12 +1,12 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2008, 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
# libchannel
@@ -60,3 +60,9 @@ library to implement specialized channel libraries, e.g. *libaudio*
and *libnetwork* or similar.
So work on *libchannel* will continue, in one form or another.
+
+
+# Related
+
+ * [*Van Jacobson's network channels*](http://lwn.net/Articles/169961/)
+ (2006-01-31) by Jonathan Corbet.
--
cgit v1.2.3
From e688f83d17f89a37eeef599b12e9626f5ba1629c Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 28 Nov 2010 12:23:06 +0100
Subject: contributing: Add section Final Words -- Difficulties.
---
contributing.mdwn | 25 +++++++++++++++++++++++--
1 file changed, 23 insertions(+), 2 deletions(-)
diff --git a/contributing.mdwn b/contributing.mdwn
index 3a713520..5d68f4ce 100644
--- a/contributing.mdwn
+++ b/contributing.mdwn
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
So, you are interested in contributing to the GNU Hurd project?
@@ -110,3 +110,24 @@ documentation pointers given in the previous section. Also read through the
Please send email to the [[mailing lists/l4-hurd]] mailing list for discussing
this post-Mach system design.
+
+
+# Final Words -- Difficulties
+
+Please note that doing substantial contributions to a project as big and as
+encompassing as the GNU Hurd is not a trivial task. For working on the GNU
+Hurd's inner guts and getting useful work done, you have to plan for a
+many-months learning experience which will need sufficient self-motivation.
+Working on an advanced operating system kernel isn't something you can do in a
+few free minutes -- even less so without any previous kernel hacking
+experience.
+
+Likewise, the Linux kernel maintainers are stating the exactly same
+difficulties, which is well presented by Jonathan Corbet in his 2010 Linux
+Kernel Summit report for the opening sessions about [*welcoming of
+newcomers*](http://lwn.net/Articles/412639/).
+
+But of course, none of this is meant to be dismissive, so just [[start
+using|hurd/running]] the GNU Hurd, and either notice yourself what's not
+working as expected, or have a look at one of the [[Open Issues]], and we shall
+see if you'll evolve to be the next core Hurd hacker!
--
cgit v1.2.3
From eccf2986513cc41c412b1c30aa5dcb88a4c981b5 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 29 Nov 2010 07:58:51 +0100
Subject: Add links to some LWN articles, and then some.
---
community/gsoc/project_ideas.mdwn | 6 +--
.../gsoc/project_ideas/libdiskfs_locking.mdwn | 41 -----------------
documentation.mdwn | 6 ++-
glibc.mdwn | 9 ++++
glibc/environment_variables.mdwn | 15 ++++++
glibc/fork.mdwn | 9 ++++
glibc/poll.mdwn | 15 ++++++
hurd/debugging.mdwn | 10 ++--
hurd/translator.mdwn | 6 ++-
hurd/translator/libguestfs.mdwn | 15 ++++++
open_issues/debugging.mdwn | 42 +++++++++++++++++
open_issues/gdb-heap.mdwn | 15 ++++++
open_issues/locking.mdwn | 53 ++++++++++++++++++++++
open_issues/performance.mdwn | 2 +
open_issues/unit_testing.mdwn | 10 ++++
open_issues/virtualization/file_systems.mdwn | 3 +-
unix.mdwn | 16 +++++--
17 files changed, 214 insertions(+), 59 deletions(-)
delete mode 100644 community/gsoc/project_ideas/libdiskfs_locking.mdwn
create mode 100644 glibc/environment_variables.mdwn
create mode 100644 glibc/poll.mdwn
create mode 100644 hurd/translator/libguestfs.mdwn
create mode 100644 open_issues/debugging.mdwn
create mode 100644 open_issues/gdb-heap.mdwn
create mode 100644 open_issues/locking.mdwn
diff --git a/community/gsoc/project_ideas.mdwn b/community/gsoc/project_ideas.mdwn
index 2102e8f7..b039608f 100644
--- a/community/gsoc/project_ideas.mdwn
+++ b/community/gsoc/project_ideas.mdwn
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
We offer a wide range of possible projects to choose from. If you have an idea
not listed here, we'd love to hear about it!
@@ -82,7 +82,7 @@ See also the list of [Hurd-related X.org project ideas](http://wiki.x.org/wiki/H
[[!inline pages="community/gsoc/project_ideas/server_overriding" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/tcp_ip_stack" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/nfs" show=0 feeds=no actions=yes]]
-[[!inline pages="community/gsoc/project_ideas/libdiskfs_locking" show=0 feeds=no actions=yes]]
+[[!inline pages="open_issues/locking" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/pthreads" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/sound" show=0 feeds=no actions=yes]]
[[!inline pages="open_issues/performance/io_system" show=0 feeds=no actions=yes]]
diff --git a/community/gsoc/project_ideas/libdiskfs_locking.mdwn b/community/gsoc/project_ideas/libdiskfs_locking.mdwn
deleted file mode 100644
index 0618bbe6..00000000
--- a/community/gsoc/project_ideas/libdiskfs_locking.mdwn
+++ /dev/null
@@ -1,41 +0,0 @@
-[[!meta copyright="Copyright © 2008, 2009, 2010 Free Software Foundation,
-Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-[[!meta title="Fix libdiskfs Locking Issues"]]
-
-Nowadays the most often encountered cause of Hurd crashes seems to be lockups
-in the [[hurd/translator/ext2fs]] server. One of these could be traced
-recently, and turned out to be a lock inside [[hurd/libdiskfs]] that was taken
-and not released in some cases. There is reason to believe that there are more
-faulty paths causing these lockups.
-
-The task is systematically checking the [[hurd/libdiskfs]] code for this kind of locking
-issues. To achieve this, some kind of test harness has to be implemented: For
-example instrumenting the code to check locking correctness constantly at
-runtime. Or implementing a unit testing framework that explicitly checks
-locking in various code paths. (The latter could serve as a template for
-implementing unit checks in other parts of the Hurd codebase...)
-
-(A systematic code review would probably suffice to find the existing locking
-issues; but it wouldn't document the work in terms of actual code produced, and
-thus it's not suitable for a GSoC project...)
-
-[Linux' *sparse*](https://sparse.wiki.kernel.org/) could be worth looking at.
-
-This task requires experience with debugging locking issues in multithreaded
-applications.
-
-Possible mentors: Samuel Thibault (youpi)
-
-Exercise: If you could actually track down and fix one of the existing locking
-errors before the end of the application process, that would be excellent. This
-might be rather tough though, so probably you need to talk to us about an
-alternative exercise task...
diff --git a/documentation.mdwn b/documentation.mdwn
index 62d96e9c..5c666f3f 100644
--- a/documentation.mdwn
+++ b/documentation.mdwn
@@ -5,8 +5,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[FAQ]]
@@ -18,6 +18,8 @@ Documentation for...
* [[MIG|microkernel/mach/mig/documentation]]
+ * [[UNIX]]
+
# Presentations
diff --git a/glibc.mdwn b/glibc.mdwn
index cefbb19c..f47efc03 100644
--- a/glibc.mdwn
+++ b/glibc.mdwn
@@ -29,6 +29,15 @@ Porting glibc to a specific architecture is non-trivial.
## [[Hurd-specific Port|hurd/glibc]]
+# Implementation Details
+
+ * [[environment_variables]]
+
+ * [[fork]]
+
+ * [[poll]]
+
+
# Open Issues
[[!inline pages=tag/open_issue_glibc raw=yes feeds=no]]
diff --git a/glibc/environment_variables.mdwn b/glibc/environment_variables.mdwn
new file mode 100644
index 00000000..76c1371e
--- /dev/null
+++ b/glibc/environment_variables.mdwn
@@ -0,0 +1,15 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+
+# External
+
+ * [*putenv() and setenv()*](http://www.greenend.org.uk/rjk/2008/putenv.html)
+ by Richard Kettlewell.
diff --git a/glibc/fork.mdwn b/glibc/fork.mdwn
index 564d9d5b..c9efd1f4 100644
--- a/glibc/fork.mdwn
+++ b/glibc/fork.mdwn
@@ -49,3 +49,12 @@ they have patches for software packages, to avoid using `fork` followed by
* We no longer support `MACH_IPC_COMPAT`, thus we can get rid of the `err =
__mach_port_allocate_name ([...]); if (err == KERN_NAME_EXISTS)` code
([[!taglink open_issue_glibc]]).
+
+
+# External
+
+ * [*How fork(2) ought to be*](http://www.greenend.org.uk/rjk/fork.html) by
+ Richard Kettlewell.
+
+ * [*The self-pipe trick*](http://cr.yp.to/docs/selfpipe.html) by
+ D. J. Bernstein.
diff --git a/glibc/poll.mdwn b/glibc/poll.mdwn
new file mode 100644
index 00000000..d96f27a5
--- /dev/null
+++ b/glibc/poll.mdwn
@@ -0,0 +1,15 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+
+# External
+
+ * [*poll() and EOF*](http://www.greenend.org.uk/rjk/2001/06/poll.html) by
+ Richard Kettlewell.
diff --git a/hurd/debugging.mdwn b/hurd/debugging.mdwn
index d6c5b18f..d6e9c8b5 100644
--- a/hurd/debugging.mdwn
+++ b/hurd/debugging.mdwn
@@ -6,8 +6,9 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
# Strategies
@@ -16,11 +17,6 @@ is included in the section entitled
* [[subhurd]] -- running another Hurd system in parallel
* [[rpctrace]] -- tracing [[RPC]]s
-## To Do
-
- * [[open_issues/ltrace]]
- * [[open_issues/latrace]]
- * [[open_issues/profiling]]
# About Specific Packages
diff --git a/hurd/translator.mdwn b/hurd/translator.mdwn
index c3ca1278..9e109a28 100644
--- a/hurd/translator.mdwn
+++ b/hurd/translator.mdwn
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
A translator is simply a normal program acting as
an object server and participating in the Hurd's
@@ -117,6 +117,8 @@ Read about translator [[short-circuiting]].
* [[wishlist_1]]
* [[wishlist_2]]
* [[open_issues/network_file_system_by_just_forwarding_RPCs]]
+ * [[libguestfs]]
+
# Internally
diff --git a/hurd/translator/libguestfs.mdwn b/hurd/translator/libguestfs.mdwn
new file mode 100644
index 00000000..649b31f5
--- /dev/null
+++ b/hurd/translator/libguestfs.mdwn
@@ -0,0 +1,15 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_hurd]]
+
+[libguestfs](http://libguestfs.org/) is said to be able to access a lot
+of different filesystem types -- can we use it to build GNU Hurd
+[[translator]]s? (There is a [[FUSE]] module, too.)
diff --git a/open_issues/debugging.mdwn b/open_issues/debugging.mdwn
new file mode 100644
index 00000000..95b7bf9b
--- /dev/null
+++ b/open_issues/debugging.mdwn
@@ -0,0 +1,42 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+
+# Existing
+
+We have debugging infrastructure. For example:
+
+ * [[GDB]]
+
+ * [[GNU Mach debugging|microkernel/mach/gnumach/debugging]]
+
+ * [[GNU Hurd debugging|hurd/debugging]], including
+ [[hurd/debugging/rpctrace]] and more.
+
+
+# To Do
+
+ * [[ltrace]]
+
+ * [[latrace]]
+
+ * [[profiling]]
+
+ * *[Checkpoint/restart](http://lwn.net/Articles/412749/) allows the state of
+ a set of processes to be saved to persistent storage, then restarted at
+ some future time* -- quoting from Jonathan Corbet's 2010 Linux Kernel
+ Summit report.
+
+ This is surely a very useful facility to have for reproducing failures, for
+ example. But on the other hand it's questionable how it can help with
+ debugging failures in [[GNU Hurd server|hurd/translator]]s' interactions,
+ as their state is typically spread between several processes.
+
+ * [[locking]]
diff --git a/open_issues/gdb-heap.mdwn b/open_issues/gdb-heap.mdwn
new file mode 100644
index 00000000..75c31bbe
--- /dev/null
+++ b/open_issues/gdb-heap.mdwn
@@ -0,0 +1,15 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_gdb]]
+
+Might be interesting to have a look at
+[*gdb-heap*](https://fedorahosted.org/gdb-heap/) with respect to our
+long-lived [[hurd/translator]] processes.
diff --git a/open_issues/locking.mdwn b/open_issues/locking.mdwn
new file mode 100644
index 00000000..1717133a
--- /dev/null
+++ b/open_issues/locking.mdwn
@@ -0,0 +1,53 @@
+[[!meta copyright="Copyright © 2008, 2009, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_hurd]]
+
+Every now and then, new locking issues are discovered in
+[[hurd/libdiskfs]] or [[hurd/translator/ext2fs]], for example. Nowadays
+these in fact seem to be the most often encountered cause of Hurd crashes
+/ lockups.
+
+One of these could be traced
+recently, and turned out to be a lock inside [[hurd/libdiskfs]] that was taken
+and not released in some cases. There is reason to believe that there are more
+faulty paths causing these lockups.
+
+The task is systematically checking the [[hurd/libdiskfs]] code for this kind of locking
+issues. To achieve this, some kind of test harness has to be implemented: For
+example instrumenting the code to check locking correctness constantly at
+runtime. Or implementing a [[unit testing]] framework that explicitly checks
+locking in various code paths. (The latter could serve as a template for
+implementing unit tests in other parts of the Hurd codebase...)
+
+(A systematic code review would probably suffice to find the existing locking
+issues; but it wouldn't document the work in terms of actual code produced, and
+thus it's not suitable for a GSoC project...)
+
+This task requires experience with debugging locking issues in multithreaded
+applications.
+
+Tools have been written for static code analysis, than can help to locate
+and fix such errors.
+
+ * Coccinelle
+
+ *
+
+ *
+
+ * clang
+
+ *
+
+ * Linux' sparse
+
+ *
diff --git a/open_issues/performance.mdwn b/open_issues/performance.mdwn
index a4816680..3d146a72 100644
--- a/open_issues/performance.mdwn
+++ b/open_issues/performance.mdwn
@@ -11,3 +11,5 @@ License|/fdl]]."]]"""]]
* [[I/O System|io_system]]
* [[fork]]
+
+ * [[unit testing]]
diff --git a/open_issues/unit_testing.mdwn b/open_issues/unit_testing.mdwn
index b9fb3700..80a2860a 100644
--- a/open_issues/unit_testing.mdwn
+++ b/open_issues/unit_testing.mdwn
@@ -43,3 +43,13 @@ abandoned).
*
*
+
+ * [*[ANNOUNCE] ktest.pl: Easy and flexible testing script for Linux Kernel
+ Developers*](http://lwn.net/Articles/412302/) by Steven Rostedt,
+ 2010-10-28.
+
+ * -- ``comprehensive testing and
+ benchmarking platform''. This one might be useful for [[performance]]
+ testing, too?
+
+ *
diff --git a/open_issues/virtualization/file_systems.mdwn b/open_issues/virtualization/file_systems.mdwn
index 3bf2299d..a12ea10d 100644
--- a/open_issues/virtualization/file_systems.mdwn
+++ b/open_issues/virtualization/file_systems.mdwn
@@ -20,4 +20,5 @@ be explored.
* Linux saw a patch for [*generic name to handle and open by handle
syscalls*](http://thread.gmane.org/gmane.linux.file-systems/46648) posted,
which in turn can be beneficial for a [[QEMU]] emulation of a 9P file
- system.
+ system. LWN's Jonathan Corbet covered this [*open by
+ handle*](http://lwn.net/Articles/375888/) functionality on 2010-02-23.
diff --git a/unix.mdwn b/unix.mdwn
index a927eb64..601b36d1 100644
--- a/unix.mdwn
+++ b/unix.mdwn
@@ -1,12 +1,15 @@
-[[!meta copyright="Copyright © 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2008, 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="UNIX"]]
+
# External
@@ -15,3 +18,10 @@ is included in the section entitled
* [*Standardizing
UNIX*](http://www.informit.com/articles/printerfriendly.aspx?p=691503), an
article by David Chisnall.
+
+ * [*Ghosts of Unix Past: a historical search for design
+ patterns*](http://lwn.net/Articles/411845/) (2010-10-27) by Neil Brown,
+ including file descriptors and the single, hierarchical namespace.
+
+ * [*UNIX File Permissions*](http://www.greenend.org.uk/rjk/2004/perms.html)
+ (2004) by Richard Kettlewell.
--
cgit v1.2.3
From e3a296dd0399b1fd274f6d1a33c6286509ee6e46 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 29 Nov 2010 10:22:50 +0100
Subject: open_issues/gcc: Update.
---
open_issues/gcc.mdwn | 2 +-
open_issues/gcc/testsuite.mdwn | 18 +-
open_issues/gcc/testsuite/log_build-diff | 4919 +++++++++++++------------
open_issues/gcc/testsuite/log_build-linux.sed | 4 +-
4 files changed, 2503 insertions(+), 2440 deletions(-)
diff --git a/open_issues/gcc.mdwn b/open_issues/gcc.mdwn
index 961b3ae6..f393c0f7 100644
--- a/open_issues/gcc.mdwn
+++ b/open_issues/gcc.mdwn
@@ -47,7 +47,7 @@ branch, planning to submit it to gcc-patches after testing with the GCC
# Configuration
-Last checked against b8ba44e77a9fdde48ce0b7c6792736996704501e (2010-11-17).
+Last reviewed against 2f78a7ce0a8d0ccd0b3142ec45da79a32fbd601d (2010-11-27).
has documentation for the
`configure` switches.
diff --git a/open_issues/gcc/testsuite.mdwn b/open_issues/gcc/testsuite.mdwn
index 64e3e162..ec5fca0e 100644
--- a/open_issues/gcc/testsuite.mdwn
+++ b/open_issues/gcc/testsuite.mdwn
@@ -11,11 +11,11 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_gcc]]
Here's a log of a GCC build run; this is from
-fe3e43c5e4ac1225921be12c32dbb48151af1f66 (2010-11-17)
+1fb531df5602228c903ff640ab6ecac3b8107a1a (2010-11-27)
[[sources|source_repositories/gcc]], run on kepler.SCHWINGE and grubber.
$ export LC_ALL=C
- $ ../hurd/configure --prefix="$PWD".install 2>&1 | tee log_build
+ $ ../master/configure --prefix="$PWD".install 2>&1 | tee log_build
[...]
$ make SHELL=/bin/bash 2>&1 | tee log_build_
[...]
@@ -23,9 +23,9 @@ fe3e43c5e4ac1225921be12c32dbb48151af1f66 (2010-11-17)
(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
harmonized.)
-On grubber, this takes roughly 27 hours, and takes up 2.5 GiB.
+On grubber, this needs roughly 24 hours, and takes up around 2.5 GiB.
- $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd.build/log_build* | sed -e "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/testsuite/log_build-linux.sed) <(ssh grubber 'cd tmp/gcc/ && cat hurd.build/log_build* | sed "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/testsuite/log_build-hurd.sed) > open_issues/gcc/testsuite/log_build-diff
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd/master.build/log_build* | sed -e "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/testsuite/log_build-linux.sed) <(ssh grubber 'cd tmp/gcc/ && cat hurd/master.build/log_build* | sed "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/testsuite/log_build-hurd.sed) > open_issues/gcc/testsuite/log_build-diff
[[log_build-diff]].
@@ -72,8 +72,8 @@ Analysis of most issues:
* ISO/IEC TR 24733
- -checking for ISO/IEC TR 24733 ... yes$
- +checking for ISO/IEC TR 24733 ... no$
+ -checking for ISO/IEC TR 24733 ... yes
+ +checking for ISO/IEC TR 24733 ... no
* `basic_file.cc`
@@ -118,6 +118,7 @@ Analysis of most issues:
+../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:440:1: warning: unused parameter 'name' [-Wunused-parameter]
+../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:446:1: warning: unused parameter 'name' [-Wunused-parameter]
+../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:452:1: warning: unused parameter 'name' [-Wunused-parameter]
+
* `gnu/java/net/natPlainSocketImpl.cc`
+gnu/java/net/natPlainSocketImpl.cc: In member function 'virtual jint gnu::java::net::PlainSocketImpl::available()':
@@ -135,6 +136,11 @@ Analysis of most issues:
Is there a pattern that GNU/Hurd hands out the files alphabetically sorted
where it wouldn't need to ([[!taglink open_issue_hurd]])?
+ Why does the GNU Hurd's `lib_build_` repeatedly contain a long series
+ (several KiB) of NUL (0) characters after the 5319th column in the
+ `/bin/bash ./libtool --tag=CXX --mode=link [...] -o libgcj.la [...]`
+ command line? Is that only in the log?
+
* `libjvm.la`, `.libs/libjvm.so`, `libgij.la`, `.libs/libgij.so.12.0.0`
`-Wl,-Bsymbolic` vs. `-Wl,-Bsymbolic-functions`
diff --git a/open_issues/gcc/testsuite/log_build-diff b/open_issues/gcc/testsuite/log_build-diff
index 738785d9..4b8ed33e 100644
--- a/open_issues/gcc/testsuite/log_build-diff
+++ b/open_issues/gcc/testsuite/log_build-diff
@@ -1,6 +1,6 @@
---- /dev/fd/63 2010-11-19 18:35:48.919670637 +0100
-+++ /dev/fd/62 2010-11-19 18:35:48.919670637 +0100
-@@ -311,6 +311,7 @@
+--- /dev/fd/63 2010-11-29 08:50:38.457909220 +0100
++++ /dev/fd/62 2010-11-29 08:50:38.457909220 +0100
+@@ -313,6 +313,7 @@
checking valgrind.h usability... no
checking valgrind.h presence... no
checking for valgrind.h... no
@@ -8,7 +8,7 @@
configure: WARNING: fixed-point is not supported for this target, ignored
checking whether make sets $(MAKE)... yes
checking for gawk... gawk
-@@ -376,7 +377,7 @@
+@@ -378,7 +379,7 @@
checking for mbstowcs... yes
checking for wcswidth... yes
checking for mmap... yes
@@ -17,26 +17,26 @@
checking for setlocale... yes
checking for clearerr_unlocked... yes
checking for feof_unlocked... yes
-@@ -470,7 +471,6 @@
+@@ -472,7 +473,6 @@
Using the following target machine macro files:
- ../../hurd/gcc/config/vxworks-dummy.h
- ../../hurd/gcc/config/i386/i386.h
-- ../../hurd/gcc/config/linux-android.h
- ../../hurd/gcc/config/i386/unix.h
- ../../hurd/gcc/config/i386/att.h
- ../../hurd/gcc/config/dbxelf.h
-@@ -479,7 +479,9 @@
- ../../hurd/gcc/config/linux.h
- ../../hurd/gcc/config/glibc-stdint.h
- ../../hurd/gcc/config/i386/linux.h
+ ../../master/gcc/config/vxworks-dummy.h
+ ../../master/gcc/config/i386/i386.h
+- ../../master/gcc/config/linux-android.h
+ ../../master/gcc/config/i386/unix.h
+ ../../master/gcc/config/i386/att.h
+ ../../master/gcc/config/dbxelf.h
+@@ -481,7 +481,9 @@
+ ../../master/gcc/config/linux.h
+ ../../master/gcc/config/glibc-stdint.h
+ ../../master/gcc/config/i386/linux.h
-Using host-linux.o for host machine hooks.
-+ ../../hurd/gcc/config/gnu.h
-+ ../../hurd/gcc/config/i386/gnu.h
++ ../../master/gcc/config/gnu.h
++ ../../master/gcc/config/i386/gnu.h
+Using host-default.o for host machine hooks.
checking for __cxa_atexit... yes
checking whether NLS is requested... yes
checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
-@@ -491,7 +493,7 @@
+@@ -493,7 +495,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -45,7 +45,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -507,12 +509,12 @@
+@@ -509,12 +511,12 @@
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
@@ -60,7 +60,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -524,11 +526,11 @@
+@@ -526,11 +528,11 @@
checking whether the g++ linker (ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
@@ -74,7 +74,7 @@
checking how to hardcode library paths into programs... immediate
checking for as... /usr/bin/as
checking what assembler to use... /usr/bin/as
-@@ -541,7 +543,7 @@
+@@ -543,7 +545,7 @@
checking what objdump to use... /usr/bin/objdump
checking for readelf... /usr/bin/readelf
checking what readelf to use... /usr/bin/readelf
@@ -83,7 +83,7 @@
checking assembler for .balign and .p2align... yes
checking assembler for .p2align with maximum skip... yes
checking assembler for .literal16... no
-@@ -670,7 +672,7 @@
+@@ -672,12 +674,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -92,7 +92,13 @@
checking for sys/systemcfg.h... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
-@@ -744,13 +746,13 @@
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -747,13 +749,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -109,7 +115,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -765,7 +767,7 @@
+@@ -768,7 +770,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -118,7 +124,7 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -1105,7 +1107,7 @@
+@@ -1108,12 +1110,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -127,7 +133,13 @@
checking for sys/systemcfg.h... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
-@@ -1179,13 +1181,13 @@
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -1183,13 +1185,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -144,7 +156,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -1200,7 +1202,7 @@
+@@ -1204,7 +1206,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -153,7 +165,7 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -1615,7 +1617,7 @@
+@@ -1619,7 +1621,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -162,7 +174,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -1642,12 +1644,12 @@
+@@ -1646,12 +1648,12 @@
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
@@ -177,7 +189,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -1958,7 +1960,8 @@
+@@ -1966,7 +1968,8 @@
checking build system type... [ARCH]
checking host system type... [ARCH]
checking target system type... [ARCH]
@@ -187,55 +199,55 @@
checking whether byte ordering is bigendian... no
configure: updating cache ./config.cache
configure: creating ./config.status
-@@ -1971,12 +1974,8 @@
- source='../../hurd/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal32.c
- source='../../hurd/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal64.c
- source='../../hurd/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal128.c
--source='../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c
--source='../../hurd/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee32.c
--source='../../hurd/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee64.c
--source='../../hurd/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no gcc -I../../hurd/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee128.c
+@@ -1979,12 +1982,8 @@
+ source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
+ source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
+ source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
+-source='../../master/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/bid2dpd_dpd2bid.c
+-source='../../master/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee32.c
+-source='../../master/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee64.c
+-source='../../master/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee128.c
rm -f libdecnumber.a
-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
+ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
ranlib libdecnumber.a
- make[3]: Leaving directory `/media/data[...]/hurd.build/libdecnumber'
- make[3]: Entering directory `/media/data[...]/hurd.build/gcc'
-@@ -2036,9 +2035,9 @@
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
+@@ -2044,9 +2043,9 @@
HEADERS="auto-host.h ansidecl.h" DEFINES="" \
- /bin/bash ../../hurd/gcc/mkconfig.sh config.h
+ /bin/bash ../../master/gcc/mkconfig.sh config.h
TARGET_CPU_DEFAULT="" \
- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
+ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
- /bin/bash ../../hurd/gcc/mkconfig.sh tm.h
--gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt ../../hurd/gcc/config/linux-android.opt > tmp-optionlist
-+gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt > tmp-optionlist
- /bin/bash ../../hurd/gcc/../move-if-change tmp-optionlist optionlist
+ /bin/bash ../../master/gcc/mkconfig.sh tm.h
+-gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt > tmp-optionlist
+ /bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
echo timestamp > s-options
- gawk -f ../../hurd/gcc/opt-functions.awk -f ../../hurd/gcc/opth-gen.awk \
-@@ -2788,8 +2787,7 @@
- ../../hurd/gcc/config/i386/i386.c: In function 'ix86_handle_fndecl_attribute':
- ../../hurd/gcc/config/i386/i386.c:29119: warning: unknown conversion type character 'E' in format
- ../../hurd/gcc/config/i386/i386.c:29119: warning: too many arguments for format
--gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber \
-- ../../hurd/gcc/config/host-linux.c
-+gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/host-default.c -o host-default.o
- gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraph.c -o cgraph.o
- gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphbuild.c -o cgraphbuild.o
- gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphunit.c -o cgraphunit.o
-@@ -2819,7 +2817,7 @@
- gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/tree-nomudflap.c -o tree-nomudflap.o
- gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/varpool.c -o varpool.o
+ gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
+@@ -2806,8 +2805,7 @@
+ ../../master/gcc/config/i386/i386.c: In function 'ix86_handle_fndecl_attribute':
+ ../../master/gcc/config/i386/i386.c:29207: warning: unknown conversion type character 'E' in format
+ ../../master/gcc/config/i386/i386.c:29207: warning: too many arguments for format
+-gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
+- ../../master/gcc/config/host-linux.c
++gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/host-default.c -o host-default.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
+@@ -2837,7 +2835,7 @@
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
rm -rf libbackend.a
--ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
-+ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
ranlib libbackend.a
build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
checksum-options > cc1-checksum.c.tmp && \
-@@ -2970,89 +2968,39 @@
+@@ -2988,89 +2986,39 @@
done; \
fi
- Fixing headers into [...]/hurd.build/gcc/include-fixed for [ARCH] target
+ Fixing headers into [...]/hurd/master.build/gcc/include-fixed for [ARCH] target
-Forbidden identifiers: i386 linux unix
+Forbidden identifiers: MACH i386 unix
Finding directories and links to directories
@@ -244,7 +256,7 @@
+ Searching /usr/include/./mach/machine
Searching /usr/include/./c++/4.4.5
Making symbolic directory links
- Fixing directory /usr/include into [...]/hurd.build/gcc/include-fixed
+ Fixing directory /usr/include into [...]/hurd/master.build/gcc/include-fixed
-Applying machine_name to openssl/bn.h
-Fixed: openssl/bn.h
-Applying machine_name to openssl/e_os2.h
@@ -335,12 +347,21 @@
fixincludes is done
echo timestamp > stmp-fixinc
rm -f mm_malloc.h
--cat ../../hurd/gcc/config/i386/pmm_malloc.h > mm_malloc.h
-+cat ../../hurd/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+-cat ../../master/gcc/config/i386/pmm_malloc.h > mm_malloc.h
++cat ../../master/gcc/config/i386/gmm_malloc.h > mm_malloc.h
if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
- for file in .. ../../hurd/gcc/ginclude/float.h ../../hurd/gcc/ginclude/iso646.h ../../hurd/gcc/ginclude/stdarg.h ../../hurd/gcc/ginclude/stdbool.h ../../hurd/gcc/ginclude/stddef.h ../../hurd/gcc/ginclude/varargs.h ../../hurd/gcc/ginclude/stdfix.h ../../hurd/gcc/config/i386/cpuid.h ../../hurd/gcc/config/i386/mmintrin.h ../../hurd/gcc/config/i386/mm3dnow.h ../../hurd/gcc/config/i386/xmmintrin.h ../../hurd/gcc/config/i386/emmintrin.h ../../hurd/gcc/config/i386/pmmintrin.h ../../hurd/gcc/config/i386/tmmintrin.h ../../hurd/gcc/config/i386/ammintrin.h ../../hurd/gcc/config/i386/smmintrin.h ../../hurd/gcc/config/i386/nmmintrin.h ../../hurd/gcc/config/i386/bmmintrin.h ../../hurd/gcc/config/i386/fma4intrin.h ../../hurd/gcc/config/i386/wmmintrin.h ../../hurd/gcc/config/i386/immintrin.h ../../hurd/gcc/config/i386/x86intrin.h ../../hurd/gcc/config/i386/avxintrin.h ../../hurd/gcc/config/i386/xopintrin.h ../../hurd/gcc/config/i386/ia32intrin.h ../../hurd/gcc/config/i386/cross-stdarg.h ../../hurd/gcc/config/i386/lwpintrin.h ../../hurd/gcc/config/i386/popcntintrin.h ../../hurd/gcc/config/i386/abmintrin.h ../../hurd/gcc/config/i386/bmiintrin.h ../../hurd/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
-@@ -3232,7 +3180,7 @@
+ for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
+@@ -3219,7 +3167,7 @@
+ (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-11-27 --section=7 fsf-funding.pod > doc/fsf-funding.7.T$$ && \
+ mv -f doc/fsf-funding.7.T$$ doc/fsf-funding.7) || \
+ (rm -f doc/fsf-funding.7.T$$ && exit 1)
+-rm gfdl.pod cpp.pod gcov.pod fsf-funding.pod gcc.pod
++rm gcov.pod gfdl.pod cpp.pod fsf-funding.pod gcc.pod
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
+ Configuring stage 1 in ./lto-plugin
+ configure: creating cache ./config.cache
+@@ -3255,7 +3203,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -349,7 +370,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -3259,12 +3207,12 @@
+@@ -3282,12 +3230,12 @@
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
@@ -364,196 +385,196 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -3327,7 +3275,8 @@
- checking whether [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include accepts -g... yes
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
- checking how to run the C preprocessor... [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -E
+@@ -3350,7 +3298,8 @@
+ checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
+ checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
-checking whether decimal floating point is supported... yes
+checking whether decimal floating point is supported... no
+configure: WARNING: decimal float is not supported for this target, ignored
checking whether fixed-point is supported... no
checking whether assembler supports CFI directives... yes
checking for __attribute__((visibility("hidden")))... yes
-@@ -3530,136 +3479,6 @@
+@@ -3554,136 +3503,6 @@
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../hurd/libgcc/../gcc/libgcc2.c \
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_globals.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_data.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../hurd/libgcc/config/libbid/bid_binarydecimal.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../hurd/libgcc/config/libbid/bid_convert_data.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../hurd/libgcc/config/libbid/_isinfd32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../hurd/libgcc/config/libbid/_isinfd64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../hurd/libgcc/config/libbid/_isinfd128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid64_noncomp.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid128_noncomp.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../hurd/libgcc/config/libbid/bid128_fma.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../hurd/libgcc/config/libbid/bid_round.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../hurd/libgcc/config/libbid/bid_from_int.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../hurd/libgcc/config/libbid/bid64_add.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../hurd/libgcc/config/libbid/bid128_add.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../hurd/libgcc/config/libbid/bid64_div.c
--../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
--../../../hurd/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
--../../../hurd/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
--../../../hurd/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../hurd/libgcc/config/libbid/bid128_div.c
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../hurd/libgcc/config/libbid/bid64_mul.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../hurd/libgcc/config/libbid/bid128_mul.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../hurd/libgcc/config/libbid/bid64_compare.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../hurd/libgcc/config/libbid/bid128_compare.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../hurd/libgcc/config/libbid/bid128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_bid128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_addsub_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_div_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_mul_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_eq_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ne_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_lt_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_gt_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_le_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ge_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_si.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_di.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_usi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_udi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_si_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_di_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_usi_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_udi_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_sf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_df.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_xf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_tf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sf_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_df_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_xf_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_tf_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_unord_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_addsub_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_div_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_mul_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_eq_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ne_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_lt_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_gt_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_le_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ge_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_si.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_di.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_usi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_udi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_si_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_di_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_usi_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_udi_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_df.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_xf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_tf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_sf_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_df_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_xf_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_tf_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_unord_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_addsub_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_div_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_mul_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_eq_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ne_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_lt_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_gt_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_le_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ge_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_si.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_di.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_usi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_udi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_si_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_di_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_usi_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_udi_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_df.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_xf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_tf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_sf_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_df_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_xf_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_tf_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_unord_td.c
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
-@@ -3716,7 +3535,7 @@
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../master/libgcc/config/libbid/bid_decimal_globals.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../master/libgcc/config/libbid/bid_decimal_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../master/libgcc/config/libbid/bid_binarydecimal.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../master/libgcc/config/libbid/bid_convert_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../master/libgcc/config/libbid/_isinfd32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../master/libgcc/config/libbid/_isinfd64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../master/libgcc/config/libbid/_isinfd128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../master/libgcc/config/libbid/bid64_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../master/libgcc/config/libbid/bid128_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../master/libgcc/config/libbid/bid128_fma.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../master/libgcc/config/libbid/bid_round.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../master/libgcc/config/libbid/bid_from_int.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../master/libgcc/config/libbid/bid64_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../master/libgcc/config/libbid/bid128_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../master/libgcc/config/libbid/bid64_div.c
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../master/libgcc/config/libbid/bid128_div.c
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../master/libgcc/config/libbid/bid64_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../master/libgcc/config/libbid/bid128_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../master/libgcc/config/libbid/bid64_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../master/libgcc/config/libbid/bid128_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../master/libgcc/config/libbid/bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid64_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../master/libgcc/config/libbid/bid64_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../master/libgcc/config/libbid/bid64_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../master/libgcc/config/libbid/bid128_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../master/libgcc/config/libbid/bid128_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_addsub_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_div_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_mul_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_eq_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ne_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_lt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_gt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_le_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ge_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_si_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_di_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_usi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_udi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_df_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_xf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_tf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_unord_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_addsub_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_div_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_mul_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_eq_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ne_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_lt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_gt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_le_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ge_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_si_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_di_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_usi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_udi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_sf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_df_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_xf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_tf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_unord_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_addsub_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_div_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_mul_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_eq_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ne_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_lt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_gt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_le_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ge_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_si_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_di_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_usi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_udi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_sf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_df_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_xf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_tf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_unord_td.c
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
+@@ -3740,7 +3559,7 @@
mv -f morestack.visT morestack.vis
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../hurd/libgcc/config/i386/morestack.S
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
rm -f libgcc.a
-objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
+objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
-@@ -4021,7 +3840,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
+@@ -4045,7 +3864,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -4047,12 +3866,12 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -4071,12 +3890,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -4223,7 +4042,7 @@
- libtool: compile: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libgomp -I../../../hurd/libgomp/config/posix -I../../../hurd/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../hurd/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
+@@ -4247,7 +4066,7 @@
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
mv -f .deps/affinity.Tpo .deps/affinity.Plo
- /bin/bash ./libtool --tag CC --mode=link [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../hurd/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd.build.install/bin" -rpath [...]/hurd.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
--libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
-+libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd/master.build.install/bin" -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
++libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
-@@ -4486,6 +4305,7 @@
+@@ -4511,6 +4330,7 @@
checking valgrind.h usability... no
checking valgrind.h presence... no
checking for valgrind.h... no
@@ -561,7 +582,7 @@
configure: WARNING: fixed-point is not supported for this target, ignored
checking whether make sets $(MAKE)... yes
checking for gawk... gawk
-@@ -4551,7 +4371,7 @@
+@@ -4576,7 +4396,7 @@
checking for mbstowcs... yes
checking for wcswidth... yes
checking for mmap... yes
@@ -570,26 +591,26 @@
checking for setlocale... yes
checking for clearerr_unlocked... yes
checking for feof_unlocked... yes
-@@ -4645,7 +4465,6 @@
+@@ -4670,7 +4490,6 @@
Using the following target machine macro files:
- ../../hurd/gcc/config/vxworks-dummy.h
- ../../hurd/gcc/config/i386/i386.h
-- ../../hurd/gcc/config/linux-android.h
- ../../hurd/gcc/config/i386/unix.h
- ../../hurd/gcc/config/i386/att.h
- ../../hurd/gcc/config/dbxelf.h
-@@ -4654,7 +4473,9 @@
- ../../hurd/gcc/config/linux.h
- ../../hurd/gcc/config/glibc-stdint.h
- ../../hurd/gcc/config/i386/linux.h
+ ../../master/gcc/config/vxworks-dummy.h
+ ../../master/gcc/config/i386/i386.h
+- ../../master/gcc/config/linux-android.h
+ ../../master/gcc/config/i386/unix.h
+ ../../master/gcc/config/i386/att.h
+ ../../master/gcc/config/dbxelf.h
+@@ -4679,7 +4498,9 @@
+ ../../master/gcc/config/linux.h
+ ../../master/gcc/config/glibc-stdint.h
+ ../../master/gcc/config/i386/linux.h
-Using host-linux.o for host machine hooks.
-+ ../../hurd/gcc/config/gnu.h
-+ ../../hurd/gcc/config/i386/gnu.h
++ ../../master/gcc/config/gnu.h
++ ../../master/gcc/config/i386/gnu.h
+Using host-default.o for host machine hooks.
checking for __cxa_atexit... yes
checking whether NLS is requested... yes
checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
-@@ -4666,7 +4487,7 @@
+@@ -4691,7 +4512,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -598,22 +619,22 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -4682,12 +4503,12 @@
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+@@ -4707,12 +4528,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -4699,11 +4520,11 @@
+@@ -4724,11 +4545,11 @@
checking whether the g++ linker (ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
@@ -627,7 +648,7 @@
checking how to hardcode library paths into programs... immediate
checking for as... /usr/bin/as
checking what assembler to use... /usr/bin/as
-@@ -4716,7 +4537,7 @@
+@@ -4741,7 +4562,7 @@
checking what objdump to use... /usr/bin/objdump
checking for readelf... /usr/bin/readelf
checking what readelf to use... /usr/bin/readelf
@@ -636,7 +657,7 @@
checking assembler for .balign and .p2align... yes
checking assembler for .p2align with maximum skip... yes
checking assembler for .literal16... no
-@@ -4845,7 +4666,7 @@
+@@ -4870,12 +4691,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -645,7 +666,13 @@
checking for sys/systemcfg.h... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
-@@ -4919,13 +4740,13 @@
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -4945,13 +4766,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -662,7 +689,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -4940,7 +4761,7 @@
+@@ -4966,7 +4787,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -671,7 +698,7 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -5255,7 +5076,7 @@
+@@ -5281,7 +5102,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -680,22 +707,22 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -5282,12 +5103,12 @@
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+@@ -5308,12 +5129,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -5598,7 +5419,8 @@
+@@ -5628,7 +5449,8 @@
checking build system type... [ARCH]
checking host system type... [ARCH]
checking target system type... [ARCH]
@@ -705,61 +732,70 @@
checking whether byte ordering is bigendian... no
configure: updating cache ./config.cache
configure: creating ./config.status
-@@ -5611,12 +5433,8 @@
- source='../../hurd/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal32.c
- source='../../hurd/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal64.c
- source='../../hurd/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal128.c
--source='../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c
--source='../../hurd/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee32.c
--source='../../hurd/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee64.c
--source='../../hurd/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee128.c
+@@ -5641,12 +5463,8 @@
+ source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
+ source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
+ source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
+-source='../../master/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/bid2dpd_dpd2bid.c
+-source='../../master/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee32.c
+-source='../../master/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee64.c
+-source='../../master/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee128.c
rm -f libdecnumber.a
-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
+ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
ranlib libdecnumber.a
- make[3]: Leaving directory `/media/data[...]/hurd.build/libdecnumber'
- make[3]: Entering directory `/media/data[...]/hurd.build/gcc'
-@@ -5676,9 +5494,9 @@
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
+@@ -5706,9 +5524,9 @@
HEADERS="auto-host.h ansidecl.h" DEFINES="" \
- /bin/bash ../../hurd/gcc/mkconfig.sh config.h
+ /bin/bash ../../master/gcc/mkconfig.sh config.h
TARGET_CPU_DEFAULT="" \
- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
+ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
- /bin/bash ../../hurd/gcc/mkconfig.sh tm.h
--gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt ../../hurd/gcc/config/linux-android.opt > tmp-optionlist
-+gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt > tmp-optionlist
- /bin/bash ../../hurd/gcc/../move-if-change tmp-optionlist optionlist
+ /bin/bash ../../master/gcc/mkconfig.sh tm.h
+-gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt > tmp-optionlist
+ /bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
echo timestamp > s-options
- gawk -f ../../hurd/gcc/opt-functions.awk -f ../../hurd/gcc/opth-gen.awk \
-@@ -6302,8 +6120,7 @@
+ gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
+@@ -6338,8 +6156,7 @@
echo timestamp > s-i386-bt
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber \
- ../../hurd/gcc/config/i386/i386.c -o i386.o
--[...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber \
-- ../../hurd/gcc/config/host-linux.c
-+[...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/host-default.c -o host-default.o
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraph.c -o cgraph.o
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphbuild.c -o cgraphbuild.o
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphunit.c -o cgraphunit.o
-@@ -6333,7 +6150,7 @@
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/tree-nomudflap.c -o tree-nomudflap.o
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/varpool.c -o varpool.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
+ ../../master/gcc/config/i386/i386.c -o i386.o
+-[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
+- ../../master/gcc/config/host-linux.c
++[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/host-default.c -o host-default.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
+@@ -6369,7 +6186,7 @@
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
rm -rf libbackend.a
--ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
-+ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
ranlib libbackend.a
build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
checksum-options > cc1-checksum.c.tmp && \
-@@ -6624,7 +6441,7 @@
- make[4]: Leaving directory `/media/data[...]/hurd.build/prev-gcc'
+@@ -6660,7 +6477,7 @@
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/prev-gcc'
echo timestamp > stmp-fixinc
rm -f mm_malloc.h
--cat ../../hurd/gcc/config/i386/pmm_malloc.h > mm_malloc.h
-+cat ../../hurd/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+-cat ../../master/gcc/config/i386/pmm_malloc.h > mm_malloc.h
++cat ../../master/gcc/config/i386/gmm_malloc.h > mm_malloc.h
if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
- for file in .. ../../hurd/gcc/ginclude/float.h ../../hurd/gcc/ginclude/iso646.h ../../hurd/gcc/ginclude/stdarg.h ../../hurd/gcc/ginclude/stdbool.h ../../hurd/gcc/ginclude/stddef.h ../../hurd/gcc/ginclude/varargs.h ../../hurd/gcc/ginclude/stdfix.h ../../hurd/gcc/config/i386/cpuid.h ../../hurd/gcc/config/i386/mmintrin.h ../../hurd/gcc/config/i386/mm3dnow.h ../../hurd/gcc/config/i386/xmmintrin.h ../../hurd/gcc/config/i386/emmintrin.h ../../hurd/gcc/config/i386/pmmintrin.h ../../hurd/gcc/config/i386/tmmintrin.h ../../hurd/gcc/config/i386/ammintrin.h ../../hurd/gcc/config/i386/smmintrin.h ../../hurd/gcc/config/i386/nmmintrin.h ../../hurd/gcc/config/i386/bmmintrin.h ../../hurd/gcc/config/i386/fma4intrin.h ../../hurd/gcc/config/i386/wmmintrin.h ../../hurd/gcc/config/i386/immintrin.h ../../hurd/gcc/config/i386/x86intrin.h ../../hurd/gcc/config/i386/avxintrin.h ../../hurd/gcc/config/i386/xopintrin.h ../../hurd/gcc/config/i386/ia32intrin.h ../../hurd/gcc/config/i386/cross-stdarg.h ../../hurd/gcc/config/i386/lwpintrin.h ../../hurd/gcc/config/i386/popcntintrin.h ../../hurd/gcc/config/i386/abmintrin.h ../../hurd/gcc/config/i386/bmiintrin.h ../../hurd/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
-@@ -6876,7 +6693,7 @@
+ for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
+@@ -6881,7 +6698,7 @@
+ (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-11-27 --section=1 rebuild-gcj-db.pod > doc/rebuild-gcj-db.1.T$$ && \
+ mv -f doc/rebuild-gcj-db.1.T$$ doc/rebuild-gcj-db.1) || \
+ (rm -f doc/rebuild-gcj-db.1.T$$ && exit 1)
+-rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gcov.pod gfortran.pod fsf-funding.pod gcc.pod
++rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcov.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gfortran.pod fsf-funding.pod gcc.pod
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
+ Configuring stage 2 in ./lto-plugin
+ configure: creating cache ./config.cache
+@@ -6917,7 +6734,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -768,228 +804,228 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -6903,12 +6720,12 @@
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+@@ -6944,12 +6761,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -6971,7 +6788,8 @@
- checking whether [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include accepts -g... yes
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
- checking how to run the C preprocessor... [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -E
+@@ -7012,7 +6829,8 @@
+ checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
+ checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
-checking whether decimal floating point is supported... yes
+checking whether decimal floating point is supported... no
+configure: WARNING: decimal float is not supported for this target, ignored
checking whether fixed-point is supported... no
checking whether assembler supports CFI directives... yes
checking for __attribute__((visibility("hidden")))... yes
-@@ -7174,136 +6992,6 @@
+@@ -7216,136 +7034,6 @@
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../hurd/libgcc/../gcc/libgcc2.c \
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_globals.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_data.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../hurd/libgcc/config/libbid/bid_binarydecimal.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../hurd/libgcc/config/libbid/bid_convert_data.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../hurd/libgcc/config/libbid/_isinfd32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../hurd/libgcc/config/libbid/_isinfd64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../hurd/libgcc/config/libbid/_isinfd128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid64_noncomp.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid128_noncomp.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../hurd/libgcc/config/libbid/bid128_fma.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../hurd/libgcc/config/libbid/bid_round.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../hurd/libgcc/config/libbid/bid_from_int.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../hurd/libgcc/config/libbid/bid64_add.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../hurd/libgcc/config/libbid/bid128_add.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../hurd/libgcc/config/libbid/bid64_div.c
--../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
--../../../hurd/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
--../../../hurd/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
--../../../hurd/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../hurd/libgcc/config/libbid/bid128_div.c
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../hurd/libgcc/config/libbid/bid64_mul.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../hurd/libgcc/config/libbid/bid128_mul.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../hurd/libgcc/config/libbid/bid64_compare.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../hurd/libgcc/config/libbid/bid128_compare.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../hurd/libgcc/config/libbid/bid128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_bid128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_addsub_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_div_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_mul_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_eq_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ne_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_lt_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_gt_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_le_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ge_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_si.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_di.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_usi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_udi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_si_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_di_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_usi_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_udi_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_sf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_df.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_xf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_tf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sf_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_df_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_xf_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_tf_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_unord_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_addsub_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_div_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_mul_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_eq_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ne_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_lt_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_gt_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_le_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ge_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_si.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_di.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_usi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_udi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_si_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_di_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_usi_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_udi_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_df.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_xf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_tf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_sf_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_df_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_xf_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_tf_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_unord_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_addsub_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_div_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_mul_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_eq_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ne_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_lt_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_gt_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_le_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ge_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_si.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_di.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_usi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_udi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_si_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_di_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_usi_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_udi_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_df.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_xf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_tf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_sf_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_df_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_xf_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_tf_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_unord_td.c
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
-@@ -7360,7 +7048,7 @@
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../master/libgcc/config/libbid/bid_decimal_globals.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../master/libgcc/config/libbid/bid_decimal_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../master/libgcc/config/libbid/bid_binarydecimal.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../master/libgcc/config/libbid/bid_convert_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../master/libgcc/config/libbid/_isinfd32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../master/libgcc/config/libbid/_isinfd64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../master/libgcc/config/libbid/_isinfd128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../master/libgcc/config/libbid/bid64_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../master/libgcc/config/libbid/bid128_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../master/libgcc/config/libbid/bid128_fma.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../master/libgcc/config/libbid/bid_round.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../master/libgcc/config/libbid/bid_from_int.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../master/libgcc/config/libbid/bid64_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../master/libgcc/config/libbid/bid128_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../master/libgcc/config/libbid/bid64_div.c
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../master/libgcc/config/libbid/bid128_div.c
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../master/libgcc/config/libbid/bid64_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../master/libgcc/config/libbid/bid128_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../master/libgcc/config/libbid/bid64_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../master/libgcc/config/libbid/bid128_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../master/libgcc/config/libbid/bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid64_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../master/libgcc/config/libbid/bid64_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../master/libgcc/config/libbid/bid64_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../master/libgcc/config/libbid/bid128_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../master/libgcc/config/libbid/bid128_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_addsub_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_div_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_mul_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_eq_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ne_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_lt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_gt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_le_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ge_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_si_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_di_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_usi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_udi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_df_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_xf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_tf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_unord_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_addsub_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_div_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_mul_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_eq_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ne_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_lt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_gt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_le_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ge_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_si_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_di_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_usi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_udi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_sf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_df_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_xf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_tf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_unord_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_addsub_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_div_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_mul_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_eq_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ne_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_lt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_gt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_le_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ge_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_si_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_di_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_usi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_udi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_sf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_df_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_xf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_tf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_unord_td.c
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
+@@ -7402,7 +7090,7 @@
mv -f morestack.visT morestack.vis
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../hurd/libgcc/config/i386/morestack.S
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
rm -f libgcc.a
-objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
+objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
-@@ -7665,7 +7353,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
+@@ -7707,7 +7395,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -7691,12 +7379,12 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -7733,12 +7421,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -7715,7 +7403,7 @@
- checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... no
- checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) no
- checking whether the [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -7757,7 +7445,7 @@
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking for ANSI C header files... (cached) yes
checking whether time.h and sys/time.h may both be included... yes
-@@ -7878,7 +7566,7 @@
- libtool: compile: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libgomp -I../../../hurd/libgomp/config/posix -I../../../hurd/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../hurd/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
+@@ -7920,7 +7608,7 @@
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
mv -f .deps/affinity.Tpo .deps/affinity.Plo
- /bin/bash ./libtool --tag CC --mode=link [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../hurd/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd.build.install/bin" -rpath [...]/hurd.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
--libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
-+libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd/master.build.install/bin" -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
++libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
-@@ -7931,6 +7619,7 @@
+@@ -7974,6 +7662,7 @@
fi
- make[6]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
- [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -L. -Wall -L../libgfortran -fsyntax-only omp_lib.f90
+ make[6]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
+ [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L. -Wall -L../libgfortran -fsyntax-only omp_lib.f90
+:
- make[5]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
- make[4]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
- make[3]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
-@@ -8142,6 +7831,7 @@
+ make[5]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
+@@ -8185,6 +7874,7 @@
checking valgrind.h usability... no
checking valgrind.h presence... no
checking for valgrind.h... no
@@ -997,7 +1033,7 @@
configure: WARNING: fixed-point is not supported for this target, ignored
checking whether make sets $(MAKE)... yes
checking for gawk... gawk
-@@ -8207,7 +7897,7 @@
+@@ -8250,7 +7940,7 @@
checking for mbstowcs... yes
checking for wcswidth... yes
checking for mmap... yes
@@ -1006,26 +1042,26 @@
checking for setlocale... yes
checking for clearerr_unlocked... yes
checking for feof_unlocked... yes
-@@ -8301,7 +7991,6 @@
+@@ -8344,7 +8034,6 @@
Using the following target machine macro files:
- ../../hurd/gcc/config/vxworks-dummy.h
- ../../hurd/gcc/config/i386/i386.h
-- ../../hurd/gcc/config/linux-android.h
- ../../hurd/gcc/config/i386/unix.h
- ../../hurd/gcc/config/i386/att.h
- ../../hurd/gcc/config/dbxelf.h
-@@ -8310,7 +7999,9 @@
- ../../hurd/gcc/config/linux.h
- ../../hurd/gcc/config/glibc-stdint.h
- ../../hurd/gcc/config/i386/linux.h
+ ../../master/gcc/config/vxworks-dummy.h
+ ../../master/gcc/config/i386/i386.h
+- ../../master/gcc/config/linux-android.h
+ ../../master/gcc/config/i386/unix.h
+ ../../master/gcc/config/i386/att.h
+ ../../master/gcc/config/dbxelf.h
+@@ -8353,7 +8042,9 @@
+ ../../master/gcc/config/linux.h
+ ../../master/gcc/config/glibc-stdint.h
+ ../../master/gcc/config/i386/linux.h
-Using host-linux.o for host machine hooks.
-+ ../../hurd/gcc/config/gnu.h
-+ ../../hurd/gcc/config/i386/gnu.h
++ ../../master/gcc/config/gnu.h
++ ../../master/gcc/config/i386/gnu.h
+Using host-default.o for host machine hooks.
checking for __cxa_atexit... yes
checking whether NLS is requested... yes
checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
-@@ -8322,7 +8013,7 @@
+@@ -8365,7 +8056,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1034,22 +1070,22 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -8338,12 +8029,12 @@
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+@@ -8381,12 +8072,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -8355,11 +8046,11 @@
+@@ -8398,11 +8089,11 @@
checking whether the g++ linker (ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
@@ -1063,7 +1099,7 @@
checking how to hardcode library paths into programs... immediate
checking for as... /usr/bin/as
checking what assembler to use... /usr/bin/as
-@@ -8372,7 +8063,7 @@
+@@ -8415,7 +8106,7 @@
checking what objdump to use... /usr/bin/objdump
checking for readelf... /usr/bin/readelf
checking what readelf to use... /usr/bin/readelf
@@ -1072,7 +1108,7 @@
checking assembler for .balign and .p2align... yes
checking assembler for .p2align with maximum skip... yes
checking assembler for .literal16... no
-@@ -8501,7 +8192,7 @@
+@@ -8544,12 +8235,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -1081,7 +1117,13 @@
checking for sys/systemcfg.h... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
-@@ -8575,13 +8266,13 @@
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -8619,13 +8310,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -1098,7 +1140,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -8596,7 +8287,7 @@
+@@ -8640,7 +8331,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -1107,7 +1149,7 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -8911,7 +8602,7 @@
+@@ -8955,7 +8646,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1116,22 +1158,22 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -8938,12 +8629,12 @@
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+@@ -8982,12 +8673,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -9254,7 +8945,8 @@
+@@ -9302,7 +8993,8 @@
checking build system type... [ARCH]
checking host system type... [ARCH]
checking target system type... [ARCH]
@@ -1141,61 +1183,70 @@
checking whether byte ordering is bigendian... no
configure: updating cache ./config.cache
configure: creating ./config.status
-@@ -9267,12 +8959,8 @@
- source='../../hurd/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal32.c
- source='../../hurd/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal64.c
- source='../../hurd/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/decimal128.c
--source='../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/bid2dpd_dpd2bid.c
--source='../../hurd/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee32.c
--source='../../hurd/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee64.c
--source='../../hurd/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I../../hurd/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../hurd/libdecnumber -I. -c ../../hurd/[libdecnumber]/host-ieee128.c
+@@ -9315,12 +9007,8 @@
+ source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
+ source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
+ source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
+-source='../../master/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/bid2dpd_dpd2bid.c
+-source='../../master/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee32.c
+-source='../../master/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee64.c
+-source='../../master/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee128.c
rm -f libdecnumber.a
-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
+ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
ranlib libdecnumber.a
- make[3]: Leaving directory `/media/data[...]/hurd.build/libdecnumber'
- make[3]: Entering directory `/media/data[...]/hurd.build/gcc'
-@@ -9332,9 +9020,9 @@
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
+@@ -9380,9 +9068,9 @@
HEADERS="auto-host.h ansidecl.h" DEFINES="" \
- /bin/bash ../../hurd/gcc/mkconfig.sh config.h
+ /bin/bash ../../master/gcc/mkconfig.sh config.h
TARGET_CPU_DEFAULT="" \
- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
+ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
- /bin/bash ../../hurd/gcc/mkconfig.sh tm.h
--gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt ../../hurd/gcc/config/linux-android.opt > tmp-optionlist
-+gawk -f ../../hurd/gcc/opt-gather.awk ../../hurd/gcc/ada/gcc-interface/lang.opt ../../hurd/gcc/fortran/lang.opt ../../hurd/gcc/java/lang.opt ../../hurd/gcc/lto/lang.opt ../../hurd/gcc/c-family/c.opt ../../hurd/gcc/common.opt ../../hurd/gcc/config/fused-madd.opt ../../hurd/gcc/config/i386/i386.opt ../../hurd/gcc/config/linux.opt > tmp-optionlist
- /bin/bash ../../hurd/gcc/../move-if-change tmp-optionlist optionlist
+ /bin/bash ../../master/gcc/mkconfig.sh tm.h
+-gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt > tmp-optionlist
+ /bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
echo timestamp > s-options
- gawk -f ../../hurd/gcc/opt-functions.awk -f ../../hurd/gcc/opth-gen.awk \
-@@ -9958,8 +9646,7 @@
+ gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
+@@ -10012,8 +9700,7 @@
echo timestamp > s-i386-bt
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber \
- ../../hurd/gcc/config/i386/i386.c -o i386.o
--[...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber \
-- ../../hurd/gcc/config/host-linux.c
-+[...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/host-default.c -o host-default.o
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraph.c -o cgraph.o
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphbuild.c -o cgraphbuild.o
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/cgraphunit.c -o cgraphunit.o
-@@ -9989,7 +9676,7 @@
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/tree-nomudflap.c -o tree-nomudflap.o
- [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../hurd/gcc -I../../hurd/gcc/. -I../../hurd/gcc/../include -I../../hurd/gcc/../libcpp/include -I../../hurd/gcc/../libdecnumber -I../../hurd/gcc/../[libdecnumber] -I../libdecnumber ../../hurd/gcc/varpool.c -o varpool.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
+ ../../master/gcc/config/i386/i386.c -o i386.o
+-[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
+- ../../master/gcc/config/host-linux.c
++[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/host-default.c -o host-default.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
+@@ -10043,7 +9730,7 @@
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
rm -rf libbackend.a
--ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
-+ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
ranlib libbackend.a
build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
checksum-options > cc1-checksum.c.tmp && \
-@@ -10280,7 +9967,7 @@
- make[4]: Leaving directory `/media/data[...]/hurd.build/prev-gcc'
+@@ -10334,7 +10021,7 @@
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/prev-gcc'
echo timestamp > stmp-fixinc
rm -f mm_malloc.h
--cat ../../hurd/gcc/config/i386/pmm_malloc.h > mm_malloc.h
-+cat ../../hurd/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+-cat ../../master/gcc/config/i386/pmm_malloc.h > mm_malloc.h
++cat ../../master/gcc/config/i386/gmm_malloc.h > mm_malloc.h
if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
- for file in .. ../../hurd/gcc/ginclude/float.h ../../hurd/gcc/ginclude/iso646.h ../../hurd/gcc/ginclude/stdarg.h ../../hurd/gcc/ginclude/stdbool.h ../../hurd/gcc/ginclude/stddef.h ../../hurd/gcc/ginclude/varargs.h ../../hurd/gcc/ginclude/stdfix.h ../../hurd/gcc/config/i386/cpuid.h ../../hurd/gcc/config/i386/mmintrin.h ../../hurd/gcc/config/i386/mm3dnow.h ../../hurd/gcc/config/i386/xmmintrin.h ../../hurd/gcc/config/i386/emmintrin.h ../../hurd/gcc/config/i386/pmmintrin.h ../../hurd/gcc/config/i386/tmmintrin.h ../../hurd/gcc/config/i386/ammintrin.h ../../hurd/gcc/config/i386/smmintrin.h ../../hurd/gcc/config/i386/nmmintrin.h ../../hurd/gcc/config/i386/bmmintrin.h ../../hurd/gcc/config/i386/fma4intrin.h ../../hurd/gcc/config/i386/wmmintrin.h ../../hurd/gcc/config/i386/immintrin.h ../../hurd/gcc/config/i386/x86intrin.h ../../hurd/gcc/config/i386/avxintrin.h ../../hurd/gcc/config/i386/xopintrin.h ../../hurd/gcc/config/i386/ia32intrin.h ../../hurd/gcc/config/i386/cross-stdarg.h ../../hurd/gcc/config/i386/lwpintrin.h ../../hurd/gcc/config/i386/popcntintrin.h ../../hurd/gcc/config/i386/abmintrin.h ../../hurd/gcc/config/i386/bmiintrin.h ../../hurd/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
-@@ -10532,7 +10219,7 @@
+ for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
+@@ -10555,7 +10242,7 @@
+ (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-11-27 --section=1 rebuild-gcj-db.pod > doc/rebuild-gcj-db.1.T$$ && \
+ mv -f doc/rebuild-gcj-db.1.T$$ doc/rebuild-gcj-db.1) || \
+ (rm -f doc/rebuild-gcj-db.1.T$$ && exit 1)
+-rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gcov.pod gfortran.pod fsf-funding.pod gcc.pod
++rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcov.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gfortran.pod fsf-funding.pod gcc.pod
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
+ Configuring stage 3 in ./lto-plugin
+ configure: creating cache ./config.cache
+@@ -10591,7 +10278,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1204,237 +1255,221 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -10559,12 +10246,12 @@
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./prev-gcc/xgcc -B[...]/hurd.build/./prev-gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+@@ -10618,12 +10305,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -10603,7 +10290,6 @@
- libtool: install: warning: remember to run `libtool --finish [...]/hurd.build.install/libexec/gcc/[ARCH]/4.6.0'
- make all-am
- make[4]: Entering directory `/media/data[...]/hurd.build/lto-plugin'
--make[4]: Nothing to be done for `all-am'.
- make[4]: Leaving directory `/media/data[...]/hurd.build/lto-plugin'
- make[3]: Leaving directory `/media/data[...]/hurd.build/lto-plugin'
- mkdir -p -- [ARCH]/libgcc
-@@ -10627,7 +10313,8 @@
- checking whether [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include accepts -g... yes
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
- checking how to run the C preprocessor... [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -E
+@@ -10686,7 +10373,8 @@
+ checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
+ checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
-checking whether decimal floating point is supported... yes
+checking whether decimal floating point is supported... no
+configure: WARNING: decimal float is not supported for this target, ignored
checking whether fixed-point is supported... no
checking whether assembler supports CFI directives... yes
checking for __attribute__((visibility("hidden")))... yes
-@@ -10830,136 +10517,6 @@
+@@ -10890,136 +10578,6 @@
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../hurd/libgcc/../gcc/libgcc2.c \
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_globals.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../hurd/libgcc/config/libbid/bid_decimal_data.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../hurd/libgcc/config/libbid/bid_binarydecimal.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../hurd/libgcc/config/libbid/bid_convert_data.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../hurd/libgcc/config/libbid/_isinfd32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../hurd/libgcc/config/libbid/_isinfd64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../hurd/libgcc/config/libbid/_isinfd128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid64_noncomp.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../hurd/libgcc/config/libbid/bid128_noncomp.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../hurd/libgcc/config/libbid/bid128_fma.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../hurd/libgcc/config/libbid/bid_round.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../hurd/libgcc/config/libbid/bid_from_int.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../hurd/libgcc/config/libbid/bid64_add.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../hurd/libgcc/config/libbid/bid128_add.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../hurd/libgcc/config/libbid/bid64_div.c
--../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
--../../../hurd/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
--../../../hurd/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
--../../../hurd/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../hurd/libgcc/config/libbid/bid128_div.c
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../hurd/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
--../../../hurd/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../hurd/libgcc/config/libbid/bid64_mul.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../hurd/libgcc/config/libbid/bid128_mul.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../hurd/libgcc/config/libbid/bid64_compare.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../hurd/libgcc/config/libbid/bid128_compare.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../hurd/libgcc/config/libbid/bid128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid32_to_bid128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_bid128.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_int64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid64_to_uint64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_int64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint32.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../hurd/libgcc/config/libbid/bid128_to_uint64.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_addsub_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_div_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_mul_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_eq_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ne_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_lt_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_gt_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_le_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_ge_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_si.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_di.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_usi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_udi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_si_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_di_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_usi_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_udi_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_sf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_df.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_xf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_tf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sf_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_df_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_xf_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_tf_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_sd_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../hurd/libgcc/config/libbid/_unord_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_addsub_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_div_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_mul_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_eq_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ne_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_lt_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_gt_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_le_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_ge_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_si.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_di.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_usi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_udi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_si_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_di_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_usi_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_udi_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_df.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_xf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_tf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_sf_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_df_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_xf_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_tf_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_dd_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../hurd/libgcc/config/libbid/_unord_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_addsub_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_div_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_mul_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_eq_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ne_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_lt_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_gt_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_le_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_ge_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_si.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_di.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_usi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_udi.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_si_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_di_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_usi_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_udi_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_df.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_xf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_tf.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_sf_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_df_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_xf_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_tf_to_td.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_sd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_td_to_dd.c
--[...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../hurd/libgcc/config/libbid/_unord_td.c
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- ../../../hurd/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
-@@ -11016,7 +10573,7 @@
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../master/libgcc/config/libbid/bid_decimal_globals.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../master/libgcc/config/libbid/bid_decimal_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../master/libgcc/config/libbid/bid_binarydecimal.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../master/libgcc/config/libbid/bid_convert_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../master/libgcc/config/libbid/_isinfd32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../master/libgcc/config/libbid/_isinfd64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../master/libgcc/config/libbid/_isinfd128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../master/libgcc/config/libbid/bid64_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../master/libgcc/config/libbid/bid128_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../master/libgcc/config/libbid/bid128_fma.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../master/libgcc/config/libbid/bid_round.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../master/libgcc/config/libbid/bid_from_int.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../master/libgcc/config/libbid/bid64_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../master/libgcc/config/libbid/bid128_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../master/libgcc/config/libbid/bid64_div.c
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../master/libgcc/config/libbid/bid128_div.c
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../master/libgcc/config/libbid/bid64_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../master/libgcc/config/libbid/bid128_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../master/libgcc/config/libbid/bid64_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../master/libgcc/config/libbid/bid128_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../master/libgcc/config/libbid/bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid64_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../master/libgcc/config/libbid/bid64_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../master/libgcc/config/libbid/bid64_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../master/libgcc/config/libbid/bid128_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../master/libgcc/config/libbid/bid128_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_addsub_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_div_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_mul_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_eq_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ne_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_lt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_gt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_le_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ge_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_si_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_di_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_usi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_udi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_df_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_xf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_tf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_unord_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_addsub_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_div_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_mul_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_eq_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ne_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_lt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_gt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_le_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ge_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_si_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_di_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_usi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_udi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_sf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_df_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_xf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_tf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_unord_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_addsub_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_div_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_mul_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_eq_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ne_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_lt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_gt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_le_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ge_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_si_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_di_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_usi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_udi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_sf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_df_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_xf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_tf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_unord_td.c
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
+@@ -11076,7 +10634,7 @@
mv -f morestack.visT morestack.vis
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../hurd/libgcc/config/i386/morestack.S
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
rm -f libgcc.a
-objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
+objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../hurd/libgcc -I../../../hurd/libgcc/. -I../../../hurd/libgcc/../gcc -I../../../hurd/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
-@@ -11321,7 +10878,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
+@@ -11381,7 +10939,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -11347,12 +10904,12 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -11407,12 +10965,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -11371,7 +10928,7 @@
- checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... no
- checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) no
- checking whether the [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -11431,7 +10989,7 @@
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking for ANSI C header files... (cached) yes
checking whether time.h and sys/time.h may both be included... yes
-@@ -11534,7 +11091,7 @@
- libtool: compile: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libgomp -I../../../hurd/libgomp/config/posix -I../../../hurd/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../hurd/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
+@@ -11594,7 +11152,7 @@
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
mv -f .deps/affinity.Tpo .deps/affinity.Plo
- /bin/bash ./libtool --tag CC --mode=link [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../hurd/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd.build.install/bin" -rpath [...]/hurd.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
--libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
-+libtool: link: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../hurd/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd/master.build.install/bin" -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
++libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
-@@ -11587,6 +11144,7 @@
- fi
- make[6]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
- [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -L. -Wall -L../libgfortran -fsyntax-only omp_lib.f90
-+:
- make[5]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
- make[4]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
- make[3]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libgomp'
-@@ -11598,8 +11156,8 @@
- make[3]: Leaving directory `/media/data[...]/hurd.build'
+@@ -11660,8 +11218,8 @@
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build'
Comparing stages 2 and 3
warning: gcc/cc1-checksum.o differs
-warning: gcc/cc1obj-checksum.o differs
@@ -1443,24 +1478,24 @@
Comparison successful.
if false; then \
rm -rf stage2-*; \
-@@ -11773,7 +11331,7 @@
- checking if the linker ([...]/hurd.build/./gcc/collect-ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+@@ -11835,7 +11393,7 @@
+ checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -11798,19 +11356,19 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -11860,19 +11418,19 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
@@ -1475,21 +1510,21 @@
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
-@@ -11821,11 +11379,11 @@
- checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
- checking for [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -11883,11 +11441,11 @@
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking for exception model to use... call frame
checking for compiler with PCH support... yes
-@@ -11835,7 +11393,7 @@
+@@ -11897,7 +11455,7 @@
checking for atomic builtins for short... yes
checking for atomic builtins for int... yes
checking for atomic builtins for long long... yes
@@ -1498,7 +1533,7 @@
checking for g++ that supports -ffunction-sections -fdata-sections... yes
checking for underlying I/O to use... stdio
checking for C locale to use... gnu
-@@ -11872,8 +11430,8 @@
+@@ -11934,8 +11492,8 @@
checking for additional debug build... no
checking for parallel mode support... yes
checking for extra compiler flags for building...
@@ -1509,7 +1544,7 @@
checking for ENOLINK... yes
checking for EPROTO... yes
checking for ENODATA... yes
-@@ -12124,7 +11682,7 @@
+@@ -12186,7 +11744,7 @@
checking for sys/resource.h... (cached) yes
checking for RLIMIT_DATA... yes
checking for RLIMIT_RSS... yes
@@ -1518,7 +1553,7 @@
checking for RLIMIT_AS... yes
checking for RLIMIT_FSIZE... yes
checking for testsuite resource limits support... yes
-@@ -12269,7 +11827,7 @@
+@@ -12331,12 +11889,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -1527,7 +1562,13 @@
checking for sys/systemcfg.h... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
-@@ -12343,13 +11901,13 @@
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -12406,13 +11964,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -1544,7 +1585,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -12364,7 +11922,7 @@
+@@ -12427,7 +11985,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -1553,53 +1594,53 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -12403,6 +11961,10 @@
+@@ -12466,6 +12024,10 @@
mkdir pic; \
else true; fi
touch stamp-picdir
-+CONFIG_FILES= CONFIG_HEADERS=config.h:../../../hurd/libiberty/config.in /bin/bash ./config.status
++CONFIG_FILES= CONFIG_HEADERS=config.h:../../../master/libiberty/config.in /bin/bash ./config.status
+config.status: creating config.h
+config.status: config.h is unchanged
+config.status: executing default commands
if [ x"" != x ]; then \
- [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -c -DHAVE_CONFIG_H -g -O2 -I. -I../../../hurd/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../hurd/libiberty/regex.c -o pic/regex.o; \
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -DHAVE_CONFIG_H -g -O2 -I. -I../../../master/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../master/libiberty/regex.c -o pic/regex.o; \
else true; fi
-@@ -13019,6 +12581,8 @@
- ln -s [...]/hurd/libstdc++-v3/config/io/basic_file_stdio.cc ./basic_file.cc || true
- /bin/bash ../libtool --tag CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I[...]/hurd.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o basic_file.lo basic_file.cc
- libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I[...]/hurd.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -fPIC -DPIC -o .libs/basic_file.o
+@@ -13083,6 +12645,8 @@
+ ln -s [...]/hurd/master/libstdc++-v3/config/io/basic_file_stdio.cc ./basic_file.cc || true
+ /bin/bash ../libtool --tag CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o basic_file.lo basic_file.cc
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -fPIC -DPIC -o .libs/basic_file.o
+basic_file.cc: In member function 'std::streamsize std::__basic_file::showmanyc()':
+basic_file.cc:344:33: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
- libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I[...]/hurd.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -o basic_file.o >/dev/null 2>&1
- ln -s [...]/hurd/libstdc++-v3/config/locale/gnu/c_locale.cc ./c++locale.cc || true
- /bin/bash ../libtool --tag CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -I[...]/hurd.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o c++locale.lo c++locale.cc
-@@ -13051,7 +12615,7 @@
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -o basic_file.o >/dev/null 2>&1
+ ln -s [...]/hurd/master/libstdc++-v3/config/locale/gnu/c_locale.cc ./c++locale.cc || true
+ /bin/bash ../libtool --tag CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o c++locale.lo c++locale.cc
+@@ -13115,7 +12679,7 @@
libtool: link: (cd ".libs" && rm -f "libstdc++.so.6" && ln -s "libstdc++.so.6.0.15" "libstdc++.so.6")
libtool: link: (cd ".libs" && rm -f "libstdc++.so" && ln -s "libstdc++.so.6.0.15" "libstdc++.so")
- libtool: link: (cd .libs/libstdc++.lax/libsupc++convenience.a && ar x "[...]/hurd.build/[ARCH]/libstdc++-v3/src/../libsupc++/.libs/libsupc++convenience.a")
+ libtool: link: (cd .libs/libstdc++.lax/libsupc++convenience.a && ar x "[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/../libsupc++/.libs/libsupc++convenience.a")
-libtool: link: ar rc .libs/libstdc++.a atomic.o bitmap_allocator.o pool_allocator.o mt_allocator.o codecvt.o compatibility.o compatibility-c++0x.o compatibility-debug_list.o compatibility-list.o complex_io.o ctype.o debug.o functexcept.o globals_io.o hash_c++0x.o hash_tr1.o hashtable_c++0x.o hashtable_tr1.o ios.o ios_failure.o ios_init.o ios_locale.o limits.o list.o debug_list.o locale.o locale_init.o locale_facets.o localename.o math_stubs_float.o math_stubs_long_double.o stdexcept.o strstream.o system_error.o tree.o allocator-inst.o concept-inst.o fstream-inst.o ext-inst.o ios-inst.o iostream-inst.o istream-inst.o istream.o locale-inst.o misc-inst.o ostream-inst.o sstream-inst.o streambuf-inst.o streambuf.o string-inst.o valarray-inst.o wlocale-inst.o wstring-inst.o mutex.o condition_variable.o chrono.o thread.o future.o atomicity.o codecvt_members.o collate_members.o ctype_members.o messages_members.o monetary_members.o numeric_members.o time_members.o basic_file.o c++locale.o parallel_list.o parallel_settings.o compatibility-parallel_list.o .libs/libstdc++.lax/libsupc++convenience.a/new_opv.o .libs/libstdc++.lax/libsupc++convenience.a/si_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/del_op.o .libs/libstdc++.lax/libsupc++convenience.a/eh_globals.o .libs/libstdc++.lax/libsupc++convenience.a/enum_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/bad_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/eh_call.o .libs/libstdc++.lax/libsupc++convenience.a/vterminate.o .libs/libstdc++.lax/libsupc++convenience.a/function_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/cp-demangle.o .libs/libstdc++.lax/libsupc++convenience.a/atexit_arm.o .libs/libstdc++.lax/libsupc++convenience.a/eh_throw.o .libs/libstdc++.lax/libsupc++convenience.a/eh_terminate.o .libs/libstdc++.lax/libsupc++convenience.a/guard.o .libs/libstdc++.lax/libsupc++convenience.a/eh_catch.o .libs/libstdc++.lax/libsupc++convenience.a/fundamental_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/hash_bytes.o .libs/libstdc++.lax/libsupc++convenience.a/del_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo.o .libs/libstdc++.lax/libsupc++convenience.a/new_handler.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo2.o .libs/libstdc++.lax/libsupc++convenience.a/pointer_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_ptr.o .libs/libstdc++.lax/libsupc++convenience.a/pmem_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/vec.o .libs/libstdc++.lax/libsupc++convenience.a/eh_arm.o .libs/libstdc++.lax/libsupc++convenience.a/class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_type.o .libs/libstdc++.lax/libsupc++convenience.a/eh_unex_handler.o .libs/libstdc++.lax/libsupc++convenience.a/del_opv.o .libs/libstdc++.lax/libsupc++convenience.a/eh_personality.o .libs/libstdc++.lax/libsupc++convenience.a/pbase_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_aux_runtime.o .libs/libstdc++.lax/libsupc++convenience.a/eh_term_handler.o .libs/libstdc++.lax/libsupc++convenience.a/array_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/new_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/del_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/vmi_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/new_op.o .libs/libstdc++.lax/libsupc++convenience.a/bad_cast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_exception.o .libs/libstdc++.lax/libsupc++convenience.a/bad_typeid.o .libs/libstdc++.lax/libsupc++convenience.a/dyncast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/new_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/pure.o
+libtool: link: ar rc .libs/libstdc++.a atomic.o bitmap_allocator.o pool_allocator.o mt_allocator.o codecvt.o compatibility.o compatibility-c++0x.o compatibility-debug_list.o compatibility-list.o complex_io.o ctype.o debug.o functexcept.o globals_io.o hash_c++0x.o hash_tr1.o hashtable_c++0x.o hashtable_tr1.o ios.o ios_failure.o ios_init.o ios_locale.o limits.o list.o debug_list.o locale.o locale_init.o locale_facets.o localename.o math_stubs_float.o math_stubs_long_double.o stdexcept.o strstream.o system_error.o tree.o allocator-inst.o concept-inst.o fstream-inst.o ext-inst.o ios-inst.o iostream-inst.o istream-inst.o istream.o locale-inst.o misc-inst.o ostream-inst.o sstream-inst.o streambuf-inst.o streambuf.o string-inst.o valarray-inst.o wlocale-inst.o wstring-inst.o mutex.o condition_variable.o chrono.o thread.o future.o atomicity.o codecvt_members.o collate_members.o ctype_members.o messages_members.o monetary_members.o numeric_members.o time_members.o basic_file.o c++locale.o parallel_list.o parallel_settings.o compatibility-parallel_list.o .libs/libstdc++.lax/libsupc++convenience.a/array_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/atexit_arm.o .libs/libstdc++.lax/libsupc++convenience.a/bad_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/bad_cast.o .libs/libstdc++.lax/libsupc++convenience.a/bad_typeid.o .libs/libstdc++.lax/libsupc++convenience.a/class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/del_op.o .libs/libstdc++.lax/libsupc++convenience.a/del_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/del_opv.o .libs/libstdc++.lax/libsupc++convenience.a/del_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/dyncast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/eh_arm.o .libs/libstdc++.lax/libsupc++convenience.a/eh_aux_runtime.o .libs/libstdc++.lax/libsupc++convenience.a/eh_call.o .libs/libstdc++.lax/libsupc++convenience.a/eh_catch.o .libs/libstdc++.lax/libsupc++convenience.a/eh_exception.o .libs/libstdc++.lax/libsupc++convenience.a/eh_globals.o .libs/libstdc++.lax/libsupc++convenience.a/eh_personality.o .libs/libstdc++.lax/libsupc++convenience.a/eh_ptr.o .libs/libstdc++.lax/libsupc++convenience.a/eh_term_handler.o .libs/libstdc++.lax/libsupc++convenience.a/eh_terminate.o .libs/libstdc++.lax/libsupc++convenience.a/eh_throw.o .libs/libstdc++.lax/libsupc++convenience.a/eh_type.o .libs/libstdc++.lax/libsupc++convenience.a/eh_unex_handler.o .libs/libstdc++.lax/libsupc++convenience.a/enum_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/function_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/fundamental_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/guard.o .libs/libstdc++.lax/libsupc++convenience.a/hash_bytes.o .libs/libstdc++.lax/libsupc++convenience.a/new_handler.o .libs/libstdc++.lax/libsupc++convenience.a/new_op.o .libs/libstdc++.lax/libsupc++convenience.a/new_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/new_opv.o .libs/libstdc++.lax/libsupc++convenience.a/new_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/pbase_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pmem_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pointer_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pure.o .libs/libstdc++.lax/libsupc++convenience.a/si_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo2.o .libs/libstdc++.lax/libsupc++convenience.a/vec.o .libs/libstdc++.lax/libsupc++convenience.a/vmi_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/vterminate.o .libs/libstdc++.lax/libsupc++convenience.a/cp-demangle.o
libtool: link: ranlib .libs/libstdc++.a
libtool: link: rm -fr .libs/libstdc++.lax
libtool: link: ( cd ".libs" && rm -f "libstdc++.la" && ln -s "../libstdc++.la" "libstdc++.la" )
-@@ -13270,7 +12834,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+@@ -13335,7 +12899,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -13285,19 +12849,19 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -13350,19 +12914,19 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
@@ -1614,72 +1655,72 @@
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
-@@ -13510,7 +13074,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+@@ -13576,7 +13140,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -13525,12 +13089,12 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -13591,12 +13155,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -13708,7 +13272,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+@@ -13775,7 +13339,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -13734,12 +13298,12 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -13801,12 +13365,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -14220,7 +13784,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+@@ -14288,7 +13852,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -14246,19 +13810,19 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -14314,19 +13878,19 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
@@ -1694,138 +1735,146 @@
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
-@@ -14275,7 +13839,7 @@
- checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... no
- checking if [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) no
- checking whether the [...]/hurd.build/./gcc/gfortran -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -14343,7 +13907,7 @@
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether the GNU Fortran compiler is working... yes
checking for special C compiler options needed for large files... no
-@@ -17158,7 +16722,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+@@ -17086,7 +16650,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -17184,12 +16748,12 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -17112,12 +16676,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -17201,11 +16765,11 @@
- checking whether the [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
- checking for [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/g++ -B[...]/hurd.build/./gcc/ -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -17129,11 +16693,11 @@
+ checking whether the [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking for thread model used by GCC... posix
checking for dlopen in -ldl... yes
-@@ -17262,7 +16826,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+@@ -17190,7 +16754,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -17289,12 +16853,12 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -17217,12 +16781,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -17605,6 +17169,11 @@
- -I. -I[...]/hurd/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/libobjc/../gcc -I[...]/hurd/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/libobjc/../include \
+@@ -17254,7 +16818,6 @@
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/boehm-gc/include'
+ make all-am
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/boehm-gc/include'
+-make[4]: Nothing to be done for `all-am'.
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/boehm-gc/include'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/boehm-gc/include'
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/boehm-gc'
+@@ -17535,6 +17098,11 @@
+ -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include \
-o thr.lo
- libtool: compile: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include [...]/hurd/libobjc/thr.c -c -I. -I[...]/hurd/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/libobjc/../gcc -I[...]/hurd/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/libobjc/../include -fPIC -DPIC -o .libs/thr.o
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/thr.c -c -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -fPIC -DPIC -o .libs/thr.o
+In file included from ../.././gcc/gthr-default.h:1:0,
-+ from [...]/hurd/libobjc/../gcc/gthr.h:162,
-+ from [...]/hurd/libobjc/thr.c:43:
-+[...]/hurd/libobjc/../gcc/gthr-posix.h: In function '__gthread_objc_thread_set_priority':
-+[...]/hurd/libobjc/../gcc/gthr-posix.h:384:41: warning: unused parameter 'priority' [-Wunused-parameter]
- libtool: compile: [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include [...]/hurd/libobjc/thr.c -c -I. -I[...]/hurd/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/libobjc/../gcc -I[...]/hurd/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/libobjc/../include -o thr.o >/dev/null 2>&1
- /bin/bash ./libtool --mode=compile [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include [...]/hurd/libobjc/exception.c -c \
- -I. -I[...]/hurd/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/libobjc/../gcc -I[...]/hurd/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/libobjc/../include -fexceptions -Wno-deprecated-declarations \
-@@ -17703,7 +17272,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
++ from [...]/hurd/master/libobjc/../gcc/gthr.h:162,
++ from [...]/hurd/master/libobjc/thr.c:43:
++[...]/hurd/master/libobjc/../gcc/gthr-posix.h: In function '__gthread_objc_thread_set_priority':
++[...]/hurd/master/libobjc/../gcc/gthr-posix.h:384:41: warning: unused parameter 'priority' [-Wunused-parameter]
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/thr.c -c -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -o thr.o >/dev/null 2>&1
+ /bin/bash ./libtool --mode=compile [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/exception.c -c \
+ -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -fexceptions -Wno-deprecated-declarations \
+@@ -17634,7 +17202,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -17729,12 +17298,12 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -17660,12 +17228,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -17977,7 +17546,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+@@ -17910,7 +17478,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -18003,12 +17572,12 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -17936,12 +17504,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -18067,13 +17636,13 @@
+@@ -18000,13 +17568,13 @@
checking for [ARCH]-dlltool... dlltool
checking for gawk... (cached) gawk
checking for jar... jar
@@ -1834,31 +1883,31 @@
checking for unzip... /usr/bin/unzip
checking whether to enable maintainer-specific portions of Makefiles... no
[ARCH]
- checking if the linker ([...]/hurd.build/./gcc/collect-ld) is GNU ld... yes
- checking if the GNU linker ([...]/hurd.build/./gcc/collect-ld) supports -Bsymbolic-functions... yes
+ checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
+ checking if the GNU linker ([...]/hurd/master.build/./gcc/collect-ld) supports -Bsymbolic-functions... yes
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking which variable specifies run-time library path... LD_LIBRARY_PATH
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
-@@ -18084,7 +17653,7 @@
- checking if the linker ([...]/hurd.build/./gcc/collect-ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... BSD nm
+@@ -18017,7 +17585,7 @@
+ checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... -r
-@@ -18110,19 +17679,19 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -18043,19 +17611,19 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
@@ -1873,30 +1922,30 @@
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
-@@ -18133,11 +17702,11 @@
- checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
- checking for [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -18066,11 +17634,11 @@
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
- checking for [ARCH]-gcj... [...]/hurd.build/./gcc/gcj -B[...]/hurd.build/[ARCH]/libjava/ -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include
- checking dependency style of [...]/hurd.build/./gcc/gcj -B[...]/hurd.build/[ARCH]/libjava/ -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include ... gcc3
-@@ -18146,7 +17715,7 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC works... yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
-@@ -18199,8 +17768,8 @@
+ checking for [ARCH]-gcj... [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include
+ checking dependency style of [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include ... gcc3
+@@ -18079,7 +17647,7 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -18132,8 +17700,8 @@
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for dladdr in -ldl... yes
@@ -1904,59 +1953,59 @@
-checking for /proc/self/maps... yes
+checking for /proc/self/exe... no
+checking for /proc/self/maps... no
- checking for ld used by GCC... [...]/hurd.build/./gcc/collect-ld
- checking if the linker ([...]/hurd.build/./gcc/collect-ld) is GNU ld... (cached) yes
+ checking for ld used by GCC... [...]/hurd/master.build/./gcc/collect-ld
+ checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... (cached) yes
checking for shared library run path origin... done
-@@ -18336,8 +17905,8 @@
- config.status: linking ../../../hurd/libjava/sysdep/i386/locks.h to sysdep/locks.h
- config.status: linking ../../../hurd/libjava/sysdep/generic/backtrace.h to sysdep/backtrace.h
- config.status: linking ../../../hurd/libjava/sysdep/descriptor-n.h to sysdep/descriptor.h
--config.status: linking ../../../hurd/libjava/include/i386-signal.h to include/java-signal.h
--config.status: linking ../../../hurd/libjava/include/i386-signal.h to include/java-signal-aux.h
-+config.status: linking ../../../hurd/libjava/include/default-signal.h to include/java-signal.h
-+config.status: linking ../../../hurd/libjava/include/default-signal.h to include/java-signal-aux.h
+@@ -18269,8 +17837,8 @@
+ config.status: linking ../../../master/libjava/sysdep/i386/locks.h to sysdep/locks.h
+ config.status: linking ../../../master/libjava/sysdep/generic/backtrace.h to sysdep/backtrace.h
+ config.status: linking ../../../master/libjava/sysdep/descriptor-n.h to sysdep/descriptor.h
+-config.status: linking ../../../master/libjava/include/i386-signal.h to include/java-signal.h
+-config.status: linking ../../../master/libjava/include/i386-signal.h to include/java-signal-aux.h
++config.status: linking ../../../master/libjava/include/default-signal.h to include/java-signal.h
++config.status: linking ../../../master/libjava/include/default-signal.h to include/java-signal-aux.h
config.status: executing default-1 commands
- Adding multilib support to Makefile in ../../../hurd/libjava
+ Adding multilib support to Makefile in ../../../master/libjava
multidirs=
-@@ -18397,7 +17966,7 @@
- checking if the linker ([...]/hurd.build/./gcc/collect-ld) is GNU ld... (cached) yes
- checking for BSD- or MS-compatible name lister (nm)... (cached) [...]/hurd.build/./gcc/nm
- checking the name lister ([...]/hurd.build/./gcc/nm) interface... (cached) BSD nm
+@@ -18330,7 +17898,7 @@
+ checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... (cached) yes
+ checking for BSD- or MS-compatible name lister (nm)... (cached) [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... (cached) BSD nm
-checking the maximum length of command line arguments... (cached) 805306365
+checking the maximum length of command line arguments... (cached) -1
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
- checking for [...]/hurd.build/./gcc/collect-ld option to reload object files... (cached) -r
-@@ -18412,12 +17981,12 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
- checking for [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
--checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... (cached) yes
-+checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... (cached) no
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... (cached) -r
+@@ -18345,12 +17913,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... (cached) no
-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -18440,11 +18009,11 @@
- checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
- checking for [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
--checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... (cached) yes
-+checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include static flag -static works... (cached) no
- checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking if [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -18373,11 +17941,11 @@
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) yes
++checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) no
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking __attribute__((,,))... yes
checking __attribute__((unused))... yes
-@@ -18455,9 +18024,9 @@
+@@ -18388,9 +17956,9 @@
checking for sys/types.h... (cached) yes
checking for sys/config.h... (cached) no
checking for sys/ioctl.h... (cached) yes
@@ -1969,7 +2018,7 @@
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking utime.h usability... yes
-@@ -18480,9 +18049,9 @@
+@@ -18413,9 +17981,9 @@
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
@@ -1982,7 +2031,7 @@
checking for ifaddrs.h... (cached) yes
checking netinet/in_systm.h usability... yes
checking netinet/in_systm.h presence... yes
-@@ -18539,9 +18108,9 @@
+@@ -18472,9 +18040,9 @@
checking for statvfs... yes
checking for mmap... (cached) yes
checking for munmap... yes
@@ -1995,7 +2044,7 @@
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... (cached) yes
-@@ -18552,7 +18121,7 @@
+@@ -18485,7 +18053,7 @@
checking for getifaddrs... (cached) yes
checking for kqueue... no
checking for kevent... no
@@ -2004,7 +2053,7 @@
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
-@@ -18577,13 +18146,13 @@
+@@ -18510,13 +18078,13 @@
checking gmp.h usability... yes
checking gmp.h presence... yes
checking for gmp.h... yes
@@ -2020,25 +2069,25 @@
checking for a jar-like tool... trying fastjar, gjar and jar
checking for fastjar... /usr/bin/fastjar
checking whether to regenerate parsers with jay... no
-@@ -18720,7 +18289,7 @@
+@@ -18653,7 +18221,7 @@
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for dlfcn.h... (cached) yes
-checking the maximum length of command line arguments... (cached) 805306365
+checking the maximum length of command line arguments... (cached) -1
- checking command to parse [...]/hurd.build/./gcc/nm output from [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include object... (cached) ok
+ checking command to parse [...]/hurd/master.build/./gcc/nm output from [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include object... (cached) ok
checking for objdir... (cached) .libs
checking for [ARCH]-ar... (cached) ar
-@@ -18733,7 +18302,7 @@
- checking if [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd.build/./gcc/xgcc -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include linker ([...]/hurd.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -18666,7 +18234,7 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -18744,7 +18313,7 @@
+@@ -18677,7 +18245,7 @@
checking for library containing opendir... none required
checking which extension is used for loadable modules... .so
checking which variable specifies run-time library path... (cached) LD_LIBRARY_PATH
@@ -2047,1440 +2096,1448 @@
checking for objdir... .libs
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for shl_load... (cached) no
-@@ -18964,7 +18533,6 @@
- make[3]: Entering directory `/media/data[...]/hurd.build/[ARCH]/libjava/gcj'
+@@ -18906,7 +18474,6 @@
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
make all-am
- make[4]: Entering directory `/media/data[...]/hurd.build/[ARCH]/libjava/gcj'
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
-make[4]: Nothing to be done for `all-am'.
- make[4]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libjava/gcj'
- make[3]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libjava/gcj'
- Making all in include
-@@ -18986,705 +18554,705 @@
- Adding java source files from VM directory [...]/hurd.build/[ARCH]/libjava
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
+ Making all in classpath
+@@ -18922,705 +18489,705 @@
+ Adding java source files from VM directory [...]/hurd/master.build/[ARCH]/libjava
Adding generated files in builddir '..'.
touch compile-classes
--./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties
--./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
--./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties
--./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties
--./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties
--./classpath/tools/resource/sun/rmi/rmic/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/sun/rmi/rmic/messages.properties
--./classpath/tools/resource/com/sun/tools/javac/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/com/sun/tools/javac/messages.properties
--./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties
--./classpath/resource/gnu/javax/print/PrinterDialog_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog_de.properties
--./classpath/resource/gnu/javax/print/PrinterDialog.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties
-+./classpath/resource/gnu/java/awt/font/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/font/fonts.properties
-+./classpath/resource/gnu/java/awt/peer/gtk/font.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/gtk/font.properties
-+./classpath/resource/gnu/java/awt/peer/x/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/fonts.properties
-+./classpath/resource/gnu/java/awt/peer/x/xfonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/xfonts.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_en_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_et.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_as.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_th.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_wo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_so.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_id.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_to.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_to.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk_SK.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_om.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_se.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_JO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties
--./classpath/resource/gnu/java/locale/LocaleInformation.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_my.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_my.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_el.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv_LV.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_af.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZW.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_af.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_MA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_fi_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi_FI.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_he.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_or.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_az.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_en_MP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MP.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_id.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl_GL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_da.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_se.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_is.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_te.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_am.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_km.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_el.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Arab.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_my.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_my.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_om.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_te.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_trv.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_BE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_da.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_be_BY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_is.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_th.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_st.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_st.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_et.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_to.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_to.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_so.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_JM.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw_GB.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_NA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_si.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_si.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_st.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_st.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ss.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_am.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_be.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_be.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_si.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_si.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu_HU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_az.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_or.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_km.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_he.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_US.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
--./classpath/resource/gnu/java/awt/peer/gtk/font.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/gtk/font.properties
--./classpath/resource/gnu/java/awt/peer/x/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/fonts.properties
--./classpath/resource/gnu/java/awt/peer/x/xfonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/xfonts.properties
--./classpath/resource/gnu/java/awt/font/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/font/fonts.properties
--./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_as.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties
- ./classpath/resource/gnu/java/util/regex/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle.properties
- ./classpath/resource/gnu/java/util/regex/MessagesBundle_fr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_fr.properties
--./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties
--./classpath/resource/org/ietf/jgss/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/org/ietf/jgss/MessagesBundle.properties
-+./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties
-+./classpath/resource/gnu/javax/print/PrinterDialog.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog.properties
-+./classpath/resource/gnu/javax/print/PrinterDialog_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog_de.properties
-+./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties
- ./classpath/resource/java/text/metazones.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/text/metazones.properties
- ./classpath/resource/java/util/iso4217.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/iso4217.properties
--./classpath/resource/java/util/weeks.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/weeks.properties
- ./classpath/resource/java/util/logging/logging.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/logging/logging.properties
--./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties
--./classpath/lib/gnu/javax/print/PrinterDialog_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog_de.properties
--./classpath/lib/gnu/javax/print/PrinterDialog.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties
-+./classpath/resource/java/util/weeks.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/weeks.properties
-+./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties
-+./classpath/resource/org/ietf/jgss/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/resource/org/ietf/jgss/MessagesBundle.properties
-+./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties
-+./classpath/tools/resource/com/sun/tools/javac/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/com/sun/tools/javac/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
-+./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties
-+./classpath/tools/resource/sun/rmi/rmic/messages.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/sun/rmi/rmic/messages.properties
-+./classpath/lib/gnu/java/awt/font/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/font/fonts.properties
-+./classpath/lib/gnu/java/awt/peer/gtk/font.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/gtk/font.properties
-+./classpath/lib/gnu/java/awt/peer/x/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/fonts.properties
-+./classpath/lib/gnu/java/awt/peer/x/xfonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/xfonts.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_US.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_et.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_as.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_th.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_wo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_om.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties
--./classpath/lib/gnu/java/locale/LocaleInformation.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_my.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_my.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_el.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca_ES.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_so.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_id.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_to.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_to.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_se.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_af.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_am_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_fi_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi_FI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_he.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_or.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_az.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_MP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MP.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_id.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_el.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_my.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_my.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_om.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_te.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_da.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_se.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_is.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_te.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_is.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_th.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_st.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_st.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_et.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_MX.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_am.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_am.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_be.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_km.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_si.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_si.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_az.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tr_TR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_or.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_km.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_he.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BW.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_to.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_to.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_so.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl_PL.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PH.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_BO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_as.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_CY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_si.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_si.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ne.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_st.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_st.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_VI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_be.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
--./classpath/lib/gnu/java/awt/peer/gtk/font.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/gtk/font.properties
--./classpath/lib/gnu/java/awt/peer/x/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/fonts.properties
--./classpath/lib/gnu/java/awt/peer/x/xfonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/xfonts.properties
--./classpath/lib/gnu/java/awt/font/fonts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/font/fonts.properties
--./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties
- ./classpath/lib/gnu/java/util/regex/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle.properties
- ./classpath/lib/gnu/java/util/regex/MessagesBundle_fr.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_fr.properties
--./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties
--./classpath/lib/org/ietf/jgss/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/org/ietf/jgss/MessagesBundle.properties
-+./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties
-+./classpath/lib/gnu/javax/print/PrinterDialog.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog.properties
-+./classpath/lib/gnu/javax/print/PrinterDialog_de.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog_de.properties
-+./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties
- ./classpath/lib/java/text/metazones.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/text/metazones.properties
- ./classpath/lib/java/util/iso4217.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/iso4217.properties
--./classpath/lib/java/util/weeks.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/weeks.properties
- ./classpath/lib/java/util/logging/logging.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/logging/logging.properties
-+./classpath/lib/java/util/weeks.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/weeks.properties
-+./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties
-+./classpath/lib/org/ietf/jgss/MessagesBundle.properties [...]/hurd.build/[ARCH]/libjava/classpath/lib/./classpath/lib/org/ietf/jgss/MessagesBundle.properties
+-./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties
+-./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
+-./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties
+-./classpath/tools/resource/sun/rmi/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/sun/rmi/rmic/messages.properties
+-./classpath/tools/resource/com/sun/tools/javac/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/com/sun/tools/javac/messages.properties
+-./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties
+-./classpath/resource/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog_de.properties
+-./classpath/resource/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/resource/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/font/fonts.properties
++./classpath/resource/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/gtk/font.properties
++./classpath/resource/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/fonts.properties
++./classpath/resource/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/xfonts.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_wo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_to.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk_SK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_JO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_my.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv_LV.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_af.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZW.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_af.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_MA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_fi_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi_FI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_MP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MP.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl_GL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_da.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_am.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_my.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_trv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_da.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_be_BY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_st.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_to.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_JM.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw_GB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_NA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_si.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_st.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ss.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_am.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_be.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_be.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_si.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu_HU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_US.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
+-./classpath/resource/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/gtk/font.properties
+-./classpath/resource/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/fonts.properties
+-./classpath/resource/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/xfonts.properties
+-./classpath/resource/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/font/fonts.properties
+-./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties
++./classpath/resource/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties
+ ./classpath/resource/gnu/java/util/regex/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle.properties
+ ./classpath/resource/gnu/java/util/regex/MessagesBundle_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_fr.properties
+-./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties
+-./classpath/resource/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/org/ietf/jgss/MessagesBundle.properties
++./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/resource/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog.properties
++./classpath/resource/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog_de.properties
++./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties
+ ./classpath/resource/java/text/metazones.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/text/metazones.properties
+ ./classpath/resource/java/util/iso4217.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/iso4217.properties
+-./classpath/resource/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/weeks.properties
+ ./classpath/resource/java/util/logging/logging.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/logging/logging.properties
+-./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties
+-./classpath/lib/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog_de.properties
+-./classpath/lib/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/resource/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/weeks.properties
++./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties
++./classpath/resource/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/org/ietf/jgss/MessagesBundle.properties
++./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties
++./classpath/tools/resource/com/sun/tools/javac/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/com/sun/tools/javac/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties
++./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties
++./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
++./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties
++./classpath/tools/resource/sun/rmi/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/sun/rmi/rmic/messages.properties
++./classpath/lib/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/font/fonts.properties
++./classpath/lib/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/gtk/font.properties
++./classpath/lib/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/fonts.properties
++./classpath/lib/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/xfonts.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_US.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_wo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_my.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_to.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_af.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_am_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_fi_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi_FI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_MP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MP.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_my.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_da.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_st.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_MX.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_am.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_am.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_be.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_si.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tr_TR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BW.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_to.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl_PL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_BO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_CY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_si.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ne.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_st.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_VI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_be.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
+-./classpath/lib/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/gtk/font.properties
+-./classpath/lib/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/fonts.properties
+-./classpath/lib/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/xfonts.properties
+-./classpath/lib/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/font/fonts.properties
+-./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties
+ ./classpath/lib/gnu/java/util/regex/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle.properties
+ ./classpath/lib/gnu/java/util/regex/MessagesBundle_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_fr.properties
+-./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties
+-./classpath/lib/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/org/ietf/jgss/MessagesBundle.properties
++./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/lib/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog.properties
++./classpath/lib/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog_de.properties
++./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties
+ ./classpath/lib/java/text/metazones.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/text/metazones.properties
+ ./classpath/lib/java/util/iso4217.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/iso4217.properties
+-./classpath/lib/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/weeks.properties
+ ./classpath/lib/java/util/logging/logging.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/logging/logging.properties
++./classpath/lib/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/weeks.properties
++./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties
++./classpath/lib/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/org/ietf/jgss/MessagesBundle.properties
touch resources
- make[4]: Leaving directory `/media/data[...]/hurd.build/[ARCH]/libjava/classpath/lib'
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/lib'
Making all in doc
-@@ -20036,30 +19604,30 @@
+@@ -19743,7 +19310,6 @@
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
+ make all-am
+ make[5]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
+-make[5]: Nothing to be done for `all-am'.
+ make[5]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
+ Making all in native
+@@ -19972,30 +19538,30 @@
echo -n > vm-tools.lst; \
fi
cat classes.lst asm.lst vm-tools.lst > all-classes.lst
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties classes/gnu/classpath/tools/orbd/messages.properties
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/jar/messages.properties classes/gnu/classpath/tools/jar/messages.properties
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties classes/gnu/classpath/tools/serialver/messages.properties
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties classes/gnu/classpath/tools/tnameserv/messages.properties
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties classes/gnu/classpath/tools/rmid/messages.properties
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties classes/gnu/classpath/tools/keytool/messages.properties
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties classes/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties classes/gnu/classpath/tools/appletviewer/messages.properties
- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/common/Messages.properties classes/gnu/classpath/tools/common/Messages.properties
- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties classes/gnu/classpath/tools/getopt/Messages.properties
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties classes/gnu/classpath/tools/native2ascii/messages.properties
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties classes/gnu/classpath/tools/appletviewer/messages.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties classes/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/jar/messages.properties classes/gnu/classpath/tools/jar/messages.properties
- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties classes/gnu/classpath/tools/jarsigner/messages.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties classes/gnu/classpath/tools/keytool/messages.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties classes/gnu/classpath/tools/native2ascii/messages.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties classes/gnu/classpath/tools/orbd/messages.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties classes/gnu/classpath/tools/rmic/messages.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav classes/gnu/classpath/tools/rmic/templates/ImplTie.jav
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav classes/gnu/classpath/tools/rmic/templates/Stub.jav
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav classes/gnu/classpath/tools/rmic/templates/StubMethod.jav
- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav classes/gnu/classpath/tools/rmic/templates/Stub_12.jav
- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12Method.jav classes/gnu/classpath/tools/rmic/templates/Stub_12Method.jav
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav classes/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav
- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Tie.jav classes/gnu/classpath/tools/rmic/templates/Tie.jav
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav classes/gnu/classpath/tools/rmic/templates/Stub_12.jav
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav classes/gnu/classpath/tools/rmic/templates/Stub.jav
- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethod.jav classes/gnu/classpath/tools/rmic/templates/TieMethod.jav
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav classes/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav classes/gnu/classpath/tools/rmic/templates/ImplTie.jav
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav classes/gnu/classpath/tools/rmic/templates/StubMethod.jav
-- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties classes/gnu/classpath/tools/rmic/messages.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties classes/gnu/classpath/tools/rmid/messages.properties
- cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties classes/gnu/classpath/tools/rmiregistry/messages.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties classes/gnu/classpath/tools/serialver/messages.properties
-+ cp ../../../../../hurd/libjava/classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties classes/gnu/classpath/tools/tnameserv/messages.properties
- cp ../../../../../hurd/libjava/classpath/tools/resource/com/sun/tools/javac/messages.properties classes/com/sun/tools/javac/messages.properties
- cp ../../../../../hurd/libjava/classpath/tools/resource/sun/rmi/rmic/messages.properties classes/sun/rmi/rmic/messages.properties
- cp -pR ../../../../../hurd/libjava/classpath/tools/asm .
-@@ -20335,6 +19903,9 @@
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF $depbase.Tpo -c -o gnu/gcj/util/natGCInfo.lo ../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc &&\
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties classes/gnu/classpath/tools/orbd/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/jar/messages.properties classes/gnu/classpath/tools/jar/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties classes/gnu/classpath/tools/serialver/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties classes/gnu/classpath/tools/tnameserv/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties classes/gnu/classpath/tools/rmid/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties classes/gnu/classpath/tools/keytool/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties classes/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties classes/gnu/classpath/tools/appletviewer/messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/common/Messages.properties classes/gnu/classpath/tools/common/Messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties classes/gnu/classpath/tools/getopt/Messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties classes/gnu/classpath/tools/native2ascii/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties classes/gnu/classpath/tools/appletviewer/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties classes/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/jar/messages.properties classes/gnu/classpath/tools/jar/messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties classes/gnu/classpath/tools/jarsigner/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties classes/gnu/classpath/tools/keytool/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties classes/gnu/classpath/tools/native2ascii/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties classes/gnu/classpath/tools/orbd/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties classes/gnu/classpath/tools/rmic/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav classes/gnu/classpath/tools/rmic/templates/ImplTie.jav
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav classes/gnu/classpath/tools/rmic/templates/Stub.jav
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav classes/gnu/classpath/tools/rmic/templates/StubMethod.jav
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav classes/gnu/classpath/tools/rmic/templates/Stub_12.jav
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12Method.jav classes/gnu/classpath/tools/rmic/templates/Stub_12Method.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav classes/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Tie.jav classes/gnu/classpath/tools/rmic/templates/Tie.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav classes/gnu/classpath/tools/rmic/templates/Stub_12.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav classes/gnu/classpath/tools/rmic/templates/Stub.jav
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethod.jav classes/gnu/classpath/tools/rmic/templates/TieMethod.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav classes/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav classes/gnu/classpath/tools/rmic/templates/ImplTie.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav classes/gnu/classpath/tools/rmic/templates/StubMethod.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties classes/gnu/classpath/tools/rmic/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties classes/gnu/classpath/tools/rmid/messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties classes/gnu/classpath/tools/rmiregistry/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties classes/gnu/classpath/tools/serialver/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties classes/gnu/classpath/tools/tnameserv/messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/com/sun/tools/javac/messages.properties classes/com/sun/tools/javac/messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/sun/rmi/rmic/messages.properties classes/sun/rmi/rmic/messages.properties
+ cp -pR ../../../../../master/libjava/classpath/tools/asm .
+@@ -20271,6 +19837,9 @@
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF $depbase.Tpo -c -o gnu/gcj/util/natGCInfo.lo ../../../master/libjava/gnu/gcj/util/natGCInfo.cc &&\
mv -f $depbase.Tpo $depbase.Plo
- libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc -fPIC -DPIC -o gnu/gcj/util/.libs/natGCInfo.o
-+../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:440:1: warning: unused parameter 'name' [-Wunused-parameter]
-+../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:446:1: warning: unused parameter 'name' [-Wunused-parameter]
-+../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:452:1: warning: unused parameter 'name' [-Wunused-parameter]
- libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc -o gnu/gcj/util/natGCInfo.o >/dev/null 2>&1
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../master/libjava/gnu/gcj/util/natGCInfo.cc -fPIC -DPIC -o gnu/gcj/util/.libs/natGCInfo.o
++../../../master/libjava/gnu/gcj/util/natGCInfo.cc:440:1: warning: unused parameter 'name' [-Wunused-parameter]
++../../../master/libjava/gnu/gcj/util/natGCInfo.cc:446:1: warning: unused parameter 'name' [-Wunused-parameter]
++../../../master/libjava/gnu/gcj/util/natGCInfo.cc:452:1: warning: unused parameter 'name' [-Wunused-parameter]
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../master/libjava/gnu/gcj/util/natGCInfo.cc -o gnu/gcj/util/natGCInfo.o >/dev/null 2>&1
depbase=`echo gnu/java/lang/natMainThread.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/lang/natMainThread.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/lang/natMainThread.lo ../../../hurd/libjava/gnu/java/lang/natMainThread.cc &&\
-@@ -20395,6 +19966,8 @@
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/natPlainSocketImpl.lo gnu/java/net/natPlainSocketImpl.cc &&\
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/lang/natMainThread.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/lang/natMainThread.lo ../../../master/libjava/gnu/java/lang/natMainThread.cc &&\
+@@ -20331,6 +19900,8 @@
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/natPlainSocketImpl.lo gnu/java/net/natPlainSocketImpl.cc &&\
mv -f $depbase.Tpo $depbase.Plo
- libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -fPIC -DPIC -o gnu/java/net/.libs/natPlainSocketImpl.o
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -fPIC -DPIC -o gnu/java/net/.libs/natPlainSocketImpl.o
+gnu/java/net/natPlainSocketImpl.cc: In member function 'virtual jint gnu::java::net::PlainSocketImpl::available()':
+gnu/java/net/natPlainSocketImpl.cc:515:27: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
- libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -o gnu/java/net/natPlainSocketImpl.o >/dev/null 2>&1
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -o gnu/java/net/natPlainSocketImpl.o >/dev/null 2>&1
depbase=`echo gnu/java/net/protocol/core/natCoreInputStream.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/protocol/core/natCoreInputStream.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/protocol/core/natCoreInputStream.lo ../../../hurd/libjava/gnu/java/net/protocol/core/natCoreInputStream.cc &&\
-@@ -20425,6 +19998,8 @@
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/nio/channels/natFileChannelImpl.cc &&\
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/protocol/core/natCoreInputStream.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/protocol/core/natCoreInputStream.lo ../../../master/libjava/gnu/java/net/protocol/core/natCoreInputStream.cc &&\
+@@ -20361,6 +19932,8 @@
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/nio/channels/natFileChannelImpl.cc &&\
mv -f $depbase.Tpo $depbase.Plo
- libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -fPIC -DPIC -o gnu/java/nio/channels/.libs/natFileChannelImpl.o
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -fPIC -DPIC -o gnu/java/nio/channels/.libs/natFileChannelImpl.o
+gnu/java/nio/channels/natFileChannelImpl.cc: In member function 'jint gnu::java::nio::channels::FileChannelImpl::available()':
+gnu/java/nio/channels/natFileChannelImpl.cc:388:20: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
- libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -o gnu/java/nio/channels/natFileChannelImpl.o >/dev/null 2>&1
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -o gnu/java/nio/channels/natFileChannelImpl.o >/dev/null 2>&1
depbase=`echo gnu/java/security/jce/prng/natVMSecureRandom.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/security/jce/prng/natVMSecureRandom.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/security/jce/prng/natVMSecureRandom.lo gnu/java/security/jce/prng/natVMSecureRandom.cc &&\
-@@ -23400,8 +22975,7 @@
- /bin/bash ./libtool --tag=GCJ --mode=compile [...]/hurd.build/./gcc/gcj -B[...]/hurd.build/[ARCH]/libjava/ -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../hurd/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c -o org-xml.lo @org-xml.list
- libtool: compile: [...]/hurd.build/./gcc/gcj -B[...]/hurd.build/[ARCH]/libjava/ -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../hurd/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -fPIC -o .libs/org-xml.o
- libtool: compile: [...]/hurd.build/./gcc/gcj -B[...]/hurd.build/[ARCH]/libjava/ -B[...]/hurd.build/./gcc/ -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../hurd/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -o org-xml.o >/dev/null 2>&1
--/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -L[...]/hurd.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../hurd/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../hurd/libjava/libgcj.ver -rpath [...]/hurd.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu/java/security/jce/hash.lo gnu/java/security/jce/prng.lo gnu/java/security/jce/sig.lo gnu/java/security/key.lo gnu/java/security/key/dss.lo gnu/java/security/key/rsa.lo gnu/java/security/pkcs.lo gnu/java/security/prng.lo gnu/java/security/provider.lo gnu/java/security/sig.lo gnu/java/security/sig/dss.lo gnu/java/security/sig/rsa.lo gnu/java/security/util.lo gnu/java/security/x509.lo gnu/java/security/x509/ext.lo gnu/java/text.lo gnu/java/util.lo gnu/java/util/jar.lo gnu/java/util/prefs.lo gnu/java/util/regex.lo gnu/javax/activation/viewers.lo gnu/javax/crypto.lo gnu/javax/crypto/assembly.lo gnu/javax/crypto/cipher.lo gnu/javax/crypto/jce.lo gnu/javax/crypto/jce/cipher.lo gnu/javax/crypto/jce/key.lo gnu/javax/crypto/jce/keyring.lo gnu/javax/crypto/jce/mac.lo gnu/javax/crypto/jce/params.lo gnu/javax/crypto/jce/prng.lo gnu/javax/crypto/jce/sig.lo gnu/javax/crypto/jce/spec.lo gnu/javax/crypto/key.lo gnu/javax/crypto/key/dh.lo gnu/javax/crypto/key/srp6.lo gnu/javax/crypto/keyring.lo gnu/javax/crypto/kwa.lo gnu/javax/crypto/mac.lo gnu/javax/crypto/mode.lo gnu/javax/crypto/pad.lo gnu/javax/crypto/prng.lo gnu/javax/crypto/sasl.lo gnu/javax/crypto/sasl/anonymous.lo gnu/javax/crypto/sasl/crammd5.lo gnu/javax/crypto/sasl/plain.lo gnu/javax/crypto/sasl/srp.lo gnu/javax/imageio.lo gnu/javax/imageio/bmp.lo gnu/javax/imageio/gif.lo gnu/javax/imageio/jpeg.lo gnu/javax/imageio/png.lo gnu/javax/naming/giop.lo gnu/javax/naming/ictxImpl/trans.lo gnu/javax/naming/jndi/url/corbaname.lo gnu/javax/naming/jndi/url/rmi.lo gnu/javax/net/ssl.lo gnu/javax/net/ssl/provider.lo gnu/javax/print.lo gnu/javax/print/ipp.lo gnu/javax/print/ipp/attribute.lo gnu/javax/print/ipp/attribute/defaults.lo gnu/javax/print/ipp/attribute/job.lo gnu/javax/print/ipp/attribute/printer.lo gnu/javax/print/ipp/attribute/supported.lo gnu/javax/security/auth.lo gnu/javax/security/auth/callback.lo gnu/javax/security/auth/login.lo gnu/javax/sound.lo gnu/javax/sound/sampled/AU.lo gnu/javax/sound/sampled/WAV.lo gnu/javax/swing/plaf/gnu.lo gnu/javax/swing/plaf/metal.lo gnu/javax/swing/text/html.lo gnu/javax/swing/text/html/css.lo gnu/javax/swing/text/html/parser/GnuParserDelegator.lo gnu/javax/swing/text/html/parser/HTML_401F.lo gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.lo gnu/javax/swing/text/html/parser/gnuDTD.lo gnu/javax/swing/text/html/parser/htmlAttributeSet.lo gnu/javax/swing/text/html/parser/htmlValidator.lo gnu/javax/swing/text/html/parser/models.lo gnu/javax/swing/text/html/parser/support.lo gnu/javax/swing/text/html/parser/support/low.lo gnu/javax/swing/tree.lo java/applet.lo java/awt.lo java/awt/color.lo java/awt/datatransfer.lo java/awt/dnd.lo java/awt/dnd/peer.lo java/awt/event.lo java/awt/font.lo java/awt/geom.lo java/awt/im.lo java/awt/im/spi.lo java/awt/image.lo java/awt/image/renderable.lo java/awt/peer.lo java/awt/print.lo java/beans.lo java/beans/beancontext.lo java/io.lo java/lang.lo java/lang/annotation.lo java/lang/instrument.lo java/lang/ref.lo java/lang/reflect.lo java/math.lo java/net.lo java/nio.lo java/nio/channels.lo java/nio/channels/spi.lo java/nio/charset.lo java/nio/charset/spi.lo java/rmi.lo java/rmi/activation.lo java/rmi/dgc.lo java/rmi/registry.lo java/rmi/server.lo java/security.lo java/security/acl.lo java/security/cert.lo java/security/interfaces.lo java/security/spec.lo java/sql.lo java/text.lo java/text/spi.lo java/util.lo java/util/concurrent.lo java/util/concurrent/atomic.lo java/util/concurrent/locks.lo java/util/jar.lo java/util/logging.lo java/util/prefs.lo java/util/regex.lo java/util/spi.lo java/util/zip.lo javax/accessibility.lo javax/activation.lo javax/activity.lo javax/crypto.lo javax/crypto/interfaces.lo javax/crypto/spec.lo javax/management.lo javax/management/loading.lo javax/management/openmbean.lo javax/management/remote.lo javax/management/remote/rmi.lo javax/naming.lo javax/naming/directory.lo javax/naming/event.lo javax/naming/ldap.lo javax/naming/spi.lo javax/net.lo javax/net/ssl.lo javax/print.lo javax/print/attribute.lo javax/print/attribute/standard.lo javax/print/event.lo javax/security/auth.lo javax/security/auth/callback.lo javax/security/auth/kerberos.lo javax/security/auth/login.lo javax/security/auth/spi.lo javax/security/auth/x500.lo javax/security/cert.lo javax/security/sasl.lo javax/sound/midi.lo javax/sound/midi/spi.lo javax/sound/sampled.lo javax/sound/sampled/spi.lo javax/sql.lo javax/swing.lo javax/swing/border.lo javax/swing/colorchooser.lo javax/swing/event.lo javax/swing/filechooser.lo javax/swing/plaf.lo javax/swing/plaf/basic.lo javax/swing/plaf/metal.lo javax/swing/plaf/multi.lo javax/swing/plaf/synth.lo javax/swing/table.lo javax/swing/text.lo javax/swing/text/html.lo javax/swing/text/html/parser.lo javax/swing/text/rtf.lo javax/swing/tree.lo javax/swing/undo.lo javax/tools.lo javax/transaction.lo javax/transaction/xa.lo org/ietf/jgss.lo sun/awt.lo sun/misc.lo sun/reflect.lo sun/reflect/annotation.lo sun/reflect/misc.lo gnu/classpath/jdwp.lo gnu/classpath/jdwp/event.lo gnu/classpath/jdwp/event/filters.lo gnu/classpath/jdwp/exception.lo gnu/classpath/jdwp/id.lo gnu/classpath/jdwp/processor.lo gnu/classpath/jdwp/transport.lo gnu/classpath/jdwp/util.lo gnu/classpath/jdwp/value.lo gnu/gcj/jvmti.lo gnu/java/awt/font/fonts.properties.lo gnu/java/awt/peer/gtk/font.properties.lo gnu/java/awt/peer/x/fonts.properties.lo gnu/java/awt/peer/x/xfonts.properties.lo gnu/java/locale/LocaleInformation.properties.lo gnu/java/locale/LocaleInformation_aa.properties.lo gnu/java/locale/LocaleInformation_aa_DJ.properties.lo gnu/java/locale/LocaleInformation_aa_ER.properties.lo gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.lo gnu/java/locale/LocaleInformation_aa_ET.properties.lo gnu/java/locale/LocaleInformation_af.properties.lo gnu/java/locale/LocaleInformation_af_NA.properties.lo gnu/java/locale/LocaleInformation_af_ZA.properties.lo gnu/java/locale/LocaleInformation_ak.properties.lo gnu/java/locale/LocaleInformation_am.properties.lo gnu/java/locale/LocaleInformation_am_ET.properties.lo gnu/java/locale/LocaleInformation_ar.properties.lo gnu/java/locale/LocaleInformation_ar_DZ.properties.lo gnu/java/locale/LocaleInformation_ar_JO.properties.lo gnu/java/locale/LocaleInformation_ar_LB.properties.lo gnu/java/locale/LocaleInformation_ar_MA.properties.lo gnu/java/locale/LocaleInformation_ar_QA.properties.lo gnu/java/locale/LocaleInformation_ar_SA.properties.lo gnu/java/locale/LocaleInformation_ar_SY.properties.lo gnu/java/locale/LocaleInformation_ar_TN.properties.lo gnu/java/locale/LocaleInformation_ar_YE.properties.lo gnu/java/locale/LocaleInformation_as.properties.lo gnu/java/locale/LocaleInformation_as_IN.properties.lo gnu/java/locale/LocaleInformation_az.properties.lo gnu/java/locale/LocaleInformation_az_Cyrl.properties.lo gnu/java/locale/LocaleInformation_be.properties.lo gnu/java/locale/LocaleInformation_be_BY.properties.lo gnu/java/locale/LocaleInformation_bg.properties.lo gnu/java/locale/LocaleInformation_bg_BG.properties.lo gnu/java/locale/LocaleInformation_bn.properties.lo gnu/java/locale/LocaleInformation_bn_IN.properties.lo gnu/java/locale/LocaleInformation_bo.properties.lo gnu/java/locale/LocaleInformation_bs.properties.lo gnu/java/locale/LocaleInformation_byn.properties.lo gnu/java/locale/LocaleInformation_byn_ER.properties.lo gnu/java/locale/LocaleInformation_ca.properties.lo gnu/java/locale/LocaleInformation_ca_ES.properties.lo gnu/java/locale/LocaleInformation_cch.properties.lo gnu/java/locale/LocaleInformation_cop.properties.lo gnu/java/locale/LocaleInformation_cs.properties.lo gnu/java/locale/LocaleInformation_cs_CZ.properties.lo gnu/java/locale/LocaleInformation_cy.properties.lo gnu/java/locale/LocaleInformation_cy_GB.properties.lo gnu/java/locale/LocaleInformation_da.properties.lo gnu/java/locale/LocaleInformation_da_DK.properties.lo gnu/java/locale/LocaleInformation_de.properties.lo gnu/java/locale/LocaleInformation_de_AT.properties.lo gnu/java/locale/LocaleInformation_de_BE.properties.lo gnu/java/locale/LocaleInformation_de_CH.properties.lo gnu/java/locale/LocaleInformation_de_DE.properties.lo gnu/java/locale/LocaleInformation_de_LI.properties.lo gnu/java/locale/LocaleInformation_de_LU.properties.lo gnu/java/locale/LocaleInformation_dv.properties.lo gnu/java/locale/LocaleInformation_dv_MV.properties.lo gnu/java/locale/LocaleInformation_dz.properties.lo gnu/java/locale/LocaleInformation_dz_BT.properties.lo gnu/java/locale/LocaleInformation_ee.properties.lo gnu/java/locale/LocaleInformation_el.properties.lo gnu/java/locale/LocaleInformation_el_CY.properties.lo gnu/java/locale/LocaleInformation_el_GR.properties.lo gnu/java/locale/LocaleInformation_en.properties.lo gnu/java/locale/LocaleInformation_en_AS.properties.lo gnu/java/locale/LocaleInformation_en_AU.properties.lo gnu/java/locale/LocaleInformation_en_BE.properties.lo gnu/java/locale/LocaleInformation_en_BW.properties.lo gnu/java/locale/LocaleInformation_en_BZ.properties.lo gnu/java/locale/LocaleInformation_en_CA.properties.lo gnu/java/locale/LocaleInformation_en_Dsrt.properties.lo gnu/java/locale/LocaleInformation_en_GB.properties.lo gnu/java/locale/LocaleInformation_en_GU.properties.lo gnu/java/locale/LocaleInformation_en_HK.properties.lo gnu/java/locale/LocaleInformation_en_IE.properties.lo gnu/java/locale/LocaleInformation_en_IN.properties.lo gnu/java/locale/LocaleInformation_en_JM.properties.lo gnu/java/locale/LocaleInformation_en_MH.properties.lo gnu/java/locale/LocaleInformation_en_MP.properties.lo gnu/java/locale/LocaleInformation_en_MT.properties.lo gnu/java/locale/LocaleInformation_en_NA.properties.lo gnu/java/locale/LocaleInformation_en_NZ.properties.lo gnu/java/locale/LocaleInformation_en_PH.properties.lo gnu/java/locale/LocaleInformation_en_PK.properties.lo gnu/java/locale/LocaleInformation_en_SG.properties.lo gnu/java/locale/LocaleInformation_en_Shaw.properties.lo gnu/java/locale/LocaleInformation_en_TT.properties.lo gnu/java/locale/LocaleInformation_en_UM.properties.lo gnu/java/locale/LocaleInformation_en_US.properties.lo gnu/java/locale/LocaleInformation_en_US_POSIX.properties.lo gnu/java/locale/LocaleInformation_en_VI.properties.lo gnu/java/locale/LocaleInformation_en_ZA.properties.lo gnu/java/locale/LocaleInformation_en_ZW.properties.lo gnu/java/locale/LocaleInformation_eo.properties.lo gnu/java/locale/LocaleInformation_es.properties.lo gnu/java/locale/LocaleInformation_es_AR.properties.lo gnu/java/locale/LocaleInformation_es_BO.properties.lo gnu/java/locale/LocaleInformation_es_CL.properties.lo gnu/java/locale/LocaleInformation_es_CO.properties.lo gnu/java/locale/LocaleInformation_es_CR.properties.lo gnu/java/locale/LocaleInformation_es_DO.properties.lo gnu/java/locale/LocaleInformation_es_EC.properties.lo gnu/java/locale/LocaleInformation_es_ES.properties.lo gnu/java/locale/LocaleInformation_es_GT.properties.lo gnu/java/locale/LocaleInformation_es_HN.properties.lo gnu/java/locale/LocaleInformation_es_MX.properties.lo gnu/java/locale/LocaleInformation_es_NI.properties.lo gnu/java/locale/LocaleInformation_es_PA.properties.lo gnu/java/locale/LocaleInformation_es_PE.properties.lo gnu/java/locale/LocaleInformation_es_PR.properties.lo gnu/java/locale/LocaleInformation_es_PY.properties.lo gnu/java/locale/LocaleInformation_es_SV.properties.lo gnu/java/locale/LocaleInformation_es_US.properties.lo gnu/java/locale/LocaleInformation_es_UY.properties.lo gnu/java/locale/LocaleInformation_es_VE.properties.lo gnu/java/locale/LocaleInformation_et.properties.lo gnu/java/locale/LocaleInformation_et_EE.properties.lo gnu/java/locale/LocaleInformation_eu.properties.lo gnu/java/locale/LocaleInformation_eu_ES.properties.lo gnu/java/locale/LocaleInformation_fa.properties.lo gnu/java/locale/LocaleInformation_fa_AF.properties.lo gnu/java/locale/LocaleInformation_fa_IR.properties.lo gnu/java/locale/LocaleInformation_fi.properties.lo gnu/java/locale/LocaleInformation_fi_FI.properties.lo gnu/java/locale/LocaleInformation_fil.properties.lo gnu/java/locale/LocaleInformation_fo.properties.lo gnu/java/locale/LocaleInformation_fo_FO.properties.lo gnu/java/locale/LocaleInformation_fr.properties.lo gnu/java/locale/LocaleInformation_fr_BE.properties.lo gnu/java/locale/LocaleInformation_fr_CA.properties.lo gnu/java/locale/LocaleInformation_fr_CH.properties.lo gnu/java/locale/LocaleInformation_fr_LU.properties.lo gnu/java/locale/LocaleInformation_fur.properties.lo gnu/java/locale/LocaleInformation_ga.properties.lo gnu/java/locale/LocaleInformation_ga_IE.properties.lo gnu/java/locale/LocaleInformation_gaa.properties.lo gnu/java/locale/LocaleInformation_gez.properties.lo gnu/java/locale/LocaleInformation_gez_ER.properties.lo gnu/java/locale/LocaleInformation_gez_ET.properties.lo gnu/java/locale/LocaleInformation_gl.properties.lo gnu/java/locale/LocaleInformation_gl_ES.properties.lo gnu/java/locale/LocaleInformation_gu.properties.lo gnu/java/locale/LocaleInformation_gu_IN.properties.lo gnu/java/locale/LocaleInformation_gv.properties.lo gnu/java/locale/LocaleInformation_gv_GB.properties.lo gnu/java/locale/LocaleInformation_ha.properties.lo gnu/java/locale/LocaleInformation_ha_Arab.properties.lo gnu/java/locale/LocaleInformation_haw.properties.lo gnu/java/locale/LocaleInformation_haw_US.properties.lo gnu/java/locale/LocaleInformation_he.properties.lo gnu/java/locale/LocaleInformation_he_IL.properties.lo gnu/java/locale/LocaleInformation_hi.properties.lo gnu/java/locale/LocaleInformation_hi_IN.properties.lo gnu/java/locale/LocaleInformation_hr.properties.lo gnu/java/locale/LocaleInformation_hu.properties.lo gnu/java/locale/LocaleInformation_hu_HU.properties.lo gnu/java/locale/LocaleInformation_hy.properties.lo gnu/java/locale/LocaleInformation_hy_AM.properties.lo gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.lo gnu/java/locale/LocaleInformation_ia.properties.lo gnu/java/locale/LocaleInformation_id.properties.lo gnu/java/locale/LocaleInformation_id_ID.properties.lo gnu/java/locale/LocaleInformation_ig.properties.lo gnu/java/locale/LocaleInformation_ii.properties.lo gnu/java/locale/LocaleInformation_is.properties.lo gnu/java/locale/LocaleInformation_is_IS.properties.lo gnu/java/locale/LocaleInformation_it.properties.lo gnu/java/locale/LocaleInformation_it_CH.properties.lo gnu/java/locale/LocaleInformation_it_IT.properties.lo gnu/java/locale/LocaleInformation_iu.properties.lo gnu/java/locale/LocaleInformation_ja.properties.lo gnu/java/locale/LocaleInformation_ja_JP.properties.lo gnu/java/locale/LocaleInformation_ka.properties.lo gnu/java/locale/LocaleInformation_kaj.properties.lo gnu/java/locale/LocaleInformation_kam.properties.lo gnu/java/locale/LocaleInformation_kcg.properties.lo gnu/java/locale/LocaleInformation_kfo.properties.lo gnu/java/locale/LocaleInformation_kk.properties.lo gnu/java/locale/LocaleInformation_kk_KZ.properties.lo gnu/java/locale/LocaleInformation_kl.properties.lo gnu/java/locale/LocaleInformation_kl_GL.properties.lo gnu/java/locale/LocaleInformation_km.properties.lo gnu/java/locale/LocaleInformation_km_KH.properties.lo gnu/java/locale/LocaleInformation_kn.properties.lo gnu/java/locale/LocaleInformation_kn_IN.properties.lo gnu/java/locale/LocaleInformation_ko.properties.lo gnu/java/locale/LocaleInformation_ko_KR.properties.lo gnu/java/locale/LocaleInformation_kok.properties.lo gnu/java/locale/LocaleInformation_kok_IN.properties.lo gnu/java/locale/LocaleInformation_kpe.properties.lo gnu/java/locale/LocaleInformation_ku.properties.lo gnu/java/locale/LocaleInformation_ku_Arab.properties.lo gnu/java/locale/LocaleInformation_ku_Latn.properties.lo gnu/java/locale/LocaleInformation_kw.properties.lo gnu/java/locale/LocaleInformation_kw_GB.properties.lo gnu/java/locale/LocaleInformation_ky.properties.lo gnu/java/locale/LocaleInformation_ln.properties.lo gnu/java/locale/LocaleInformation_lo.properties.lo gnu/java/locale/LocaleInformation_lo_LA.properties.lo gnu/java/locale/LocaleInformation_lt.properties.lo gnu/java/locale/LocaleInformation_lt_LT.properties.lo gnu/java/locale/LocaleInformation_lv.properties.lo gnu/java/locale/LocaleInformation_lv_LV.properties.lo gnu/java/locale/LocaleInformation_mk.properties.lo gnu/java/locale/LocaleInformation_ml.properties.lo gnu/java/locale/LocaleInformation_ml_IN.properties.lo gnu/java/locale/LocaleInformation_mn.properties.lo gnu/java/locale/LocaleInformation_mr.properties.lo gnu/java/locale/LocaleInformation_mr_IN.properties.lo gnu/java/locale/LocaleInformation_ms.properties.lo gnu/java/locale/LocaleInformation_ms_BN.properties.lo gnu/java/locale/LocaleInformation_ms_MY.properties.lo gnu/java/locale/LocaleInformation_mt.properties.lo gnu/java/locale/LocaleInformation_mt_MT.properties.lo gnu/java/locale/LocaleInformation_my.properties.lo gnu/java/locale/LocaleInformation_nb.properties.lo gnu/java/locale/LocaleInformation_nb_NO.properties.lo gnu/java/locale/LocaleInformation_ne.properties.lo gnu/java/locale/LocaleInformation_nl.properties.lo gnu/java/locale/LocaleInformation_nl_BE.properties.lo gnu/java/locale/LocaleInformation_nl_NL.properties.lo gnu/java/locale/LocaleInformation_nn.properties.lo gnu/java/locale/LocaleInformation_nn_NO.properties.lo gnu/java/locale/LocaleInformation_nr.properties.lo gnu/java/locale/LocaleInformation_nso.properties.lo gnu/java/locale/LocaleInformation_ny.properties.lo gnu/java/locale/LocaleInformation_om.properties.lo gnu/java/locale/LocaleInformation_om_ET.properties.lo gnu/java/locale/LocaleInformation_om_KE.properties.lo gnu/java/locale/LocaleInformation_or.properties.lo gnu/java/locale/LocaleInformation_or_IN.properties.lo gnu/java/locale/LocaleInformation_pa.properties.lo gnu/java/locale/LocaleInformation_pa_Arab.properties.lo gnu/java/locale/LocaleInformation_pa_IN.properties.lo gnu/java/locale/LocaleInformation_pl.properties.lo gnu/java/locale/LocaleInformation_pl_PL.properties.lo gnu/java/locale/LocaleInformation_ps.properties.lo gnu/java/locale/LocaleInformation_ps_AF.properties.lo gnu/java/locale/LocaleInformation_pt.properties.lo gnu/java/locale/LocaleInformation_pt_BR.properties.lo gnu/java/locale/LocaleInformation_pt_PT.properties.lo gnu/java/locale/LocaleInformation_ro.properties.lo gnu/java/locale/LocaleInformation_ro_RO.properties.lo gnu/java/locale/LocaleInformation_ru.properties.lo gnu/java/locale/LocaleInformation_ru_RU.properties.lo gnu/java/locale/LocaleInformation_ru_UA.properties.lo gnu/java/locale/LocaleInformation_rw.properties.lo gnu/java/locale/LocaleInformation_sa.properties.lo gnu/java/locale/LocaleInformation_sa_IN.properties.lo gnu/java/locale/LocaleInformation_se.properties.lo gnu/java/locale/LocaleInformation_se_FI.properties.lo gnu/java/locale/LocaleInformation_si.properties.lo gnu/java/locale/LocaleInformation_sid.properties.lo gnu/java/locale/LocaleInformation_sid_ET.properties.lo gnu/java/locale/LocaleInformation_sk.properties.lo gnu/java/locale/LocaleInformation_sk_SK.properties.lo gnu/java/locale/LocaleInformation_sl.properties.lo gnu/java/locale/LocaleInformation_sl_SI.properties.lo gnu/java/locale/LocaleInformation_so.properties.lo gnu/java/locale/LocaleInformation_so_DJ.properties.lo gnu/java/locale/LocaleInformation_so_ET.properties.lo gnu/java/locale/LocaleInformation_so_KE.properties.lo gnu/java/locale/LocaleInformation_so_SO.properties.lo gnu/java/locale/LocaleInformation_sq.properties.lo gnu/java/locale/LocaleInformation_sq_AL.properties.lo gnu/java/locale/LocaleInformation_sr.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.lo gnu/java/locale/LocaleInformation_ss.properties.lo gnu/java/locale/LocaleInformation_ssy.properties.lo gnu/java/locale/LocaleInformation_st.properties.lo gnu/java/locale/LocaleInformation_sv.properties.lo gnu/java/locale/LocaleInformation_sv_FI.properties.lo gnu/java/locale/LocaleInformation_sv_SE.properties.lo gnu/java/locale/LocaleInformation_sw.properties.lo gnu/java/locale/LocaleInformation_sw_KE.properties.lo gnu/java/locale/LocaleInformation_sw_TZ.properties.lo gnu/java/locale/LocaleInformation_syr.properties.lo gnu/java/locale/LocaleInformation_syr_SY.properties.lo gnu/java/locale/LocaleInformation_ta.properties.lo gnu/java/locale/LocaleInformation_ta_IN.properties.lo gnu/java/locale/LocaleInformation_te.properties.lo gnu/java/locale/LocaleInformation_te_IN.properties.lo gnu/java/locale/LocaleInformation_tg.properties.lo gnu/java/locale/LocaleInformation_th.properties.lo gnu/java/locale/LocaleInformation_th_TH.properties.lo gnu/java/locale/LocaleInformation_ti.properties.lo gnu/java/locale/LocaleInformation_ti_ER.properties.lo gnu/java/locale/LocaleInformation_ti_ET.properties.lo gnu/java/locale/LocaleInformation_tig.properties.lo gnu/java/locale/LocaleInformation_tig_ER.properties.lo gnu/java/locale/LocaleInformation_tn.properties.lo gnu/java/locale/LocaleInformation_to.properties.lo gnu/java/locale/LocaleInformation_tr.properties.lo gnu/java/locale/LocaleInformation_tr_TR.properties.lo gnu/java/locale/LocaleInformation_trv.properties.lo gnu/java/locale/LocaleInformation_ts.properties.lo gnu/java/locale/LocaleInformation_tt.properties.lo gnu/java/locale/LocaleInformation_tt_RU.properties.lo gnu/java/locale/LocaleInformation_ug.properties.lo gnu/java/locale/LocaleInformation_uk.properties.lo gnu/java/locale/LocaleInformation_uk_UA.properties.lo gnu/java/locale/LocaleInformation_ur.properties.lo gnu/java/locale/LocaleInformation_ur_IN.properties.lo gnu/java/locale/LocaleInformation_uz.properties.lo gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Latn.properties.lo gnu/java/locale/LocaleInformation_ve.properties.lo gnu/java/locale/LocaleInformation_vi.properties.lo gnu/java/locale/LocaleInformation_wal.properties.lo gnu/java/locale/LocaleInformation_wal_ET.properties.lo gnu/java/locale/LocaleInformation_wo.properties.lo gnu/java/locale/LocaleInformation_xh.properties.lo gnu/java/locale/LocaleInformation_yo.properties.lo gnu/java/locale/LocaleInformation_zh.properties.lo gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.lo gnu/java/locale/LocaleInformation_zu.properties.lo gnu/java/util/regex/MessagesBundle.properties.lo gnu/java/util/regex/MessagesBundle_fr.properties.lo gnu/java/util/regex/MessagesBundle_it.properties.lo gnu/javax/print/PrinterDialog.properties.lo gnu/javax/print/PrinterDialog_de.properties.lo gnu/javax/security/auth/callback/MessagesBundle.properties.lo java/text/metazones.properties.lo java/util/iso4217.properties.lo java/util/weeks.properties.lo javax/imageio/plugins/jpeg/MessagesBundle.properties.lo javax/swing/text/html/default.css.lo org/ietf/jgss/MessagesBundle.properties.lo META-INF/services/java.util.prefs.PreferencesFactory.lo META-INF/services/java.util.prefs.PreferencesFactory.in.lo META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.lo META-INF/services/javax.sound.midi.spi.MidiFileReader.lo META-INF/services/javax.sound.midi.spi.MidiFileWriter.lo META-INF/services/javax.sound.sampled.spi.AudioFileReader.lo gnu-CORBA.lo gnu-java-awt-dnd-peer-gtk.lo gnu-java-awt-peer-gtk.lo gnu-java-awt-peer-swing.lo gnu-java-beans.lo gnu-java-lang-management.lo gnu-java-math.lo gnu-java-util-prefs-gconf.lo gnu-javax-management.lo gnu-javax-rmi.lo gnu-javax-sound-midi.lo gnu-xml-aelfred2.lo gnu-xml-dom.lo gnu-xml-libxmlj.lo gnu-xml-pipeline.lo gnu-xml-stream.lo gnu-xml-transform.lo gnu-xml-util.lo gnu-xml-validation.lo gnu-xml-xpath.lo java-lang-management.lo javax-imageio.lo javax-rmi.lo javax-xml.lo org-omg-CORBA.lo org-omg-CORBA_2_3.lo org-omg-CosNaming.lo org-omg-Dynamic.lo org-omg-DynamicAny.lo org-omg-IOP.lo org-omg-Messaging.lo org-omg-PortableInterceptor.lo org-omg-PortableServer.lo org-omg-SendingContext.lo org-omg-stub.lo org-relaxng.lo org-w3c.lo org-xml.lo ../libffi/libffi_convenience.la ../zlib/libzgcj_convenience.la ../boehm-gc/libgcjgc_convenience.la
--libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../hurd/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
-+/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -L[...]/hurd.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../hurd/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../hurd/libjava/libgcj.ver -rpath [...]/hurd.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../hurd/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/security/jce/prng/natVMSecureRandom.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/security/jce/prng/natVMSecureRandom.lo gnu/java/security/jce/prng/natVMSecureRandom.cc &&\
+@@ -23336,8 +22909,7 @@
+ /bin/bash ./libtool --tag=GCJ --mode=compile [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c -o org-xml.lo @org-xml.list
+ libtool: compile: [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -fPIC -o .libs/org-xml.o
+ libtool: compile: [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -o org-xml.o >/dev/null 2>&1
+-/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L[...]/hurd/master.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd/master.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -rpath [...]/hurd/master.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu/java/security/jce/hash.lo gnu/java/security/jce/prng.lo gnu/java/security/jce/sig.lo gnu/java/security/key.lo gnu/java/security/key/dss.lo gnu/java/security/key/rsa.lo gnu/java/security/pkcs.lo gnu/java/security/prng.lo gnu/java/security/provider.lo gnu/java/security/sig.lo gnu/java/security/sig/dss.lo gnu/java/security/sig/rsa.lo gnu/java/security/util.lo gnu/java/security/x509.lo gnu/java/security/x509/ext.lo gnu/java/text.lo gnu/java/util.lo gnu/java/util/jar.lo gnu/java/util/prefs.lo gnu/java/util/regex.lo gnu/javax/activation/viewers.lo gnu/javax/crypto.lo gnu/javax/crypto/assembly.lo gnu/javax/crypto/cipher.lo gnu/javax/crypto/jce.lo gnu/javax/crypto/jce/cipher.lo gnu/javax/crypto/jce/key.lo gnu/javax/crypto/jce/keyring.lo gnu/javax/crypto/jce/mac.lo gnu/javax/crypto/jce/params.lo gnu/javax/crypto/jce/prng.lo gnu/javax/crypto/jce/sig.lo gnu/javax/crypto/jce/spec.lo gnu/javax/crypto/key.lo gnu/javax/crypto/key/dh.lo gnu/javax/crypto/key/srp6.lo gnu/javax/crypto/keyring.lo gnu/javax/crypto/kwa.lo gnu/javax/crypto/mac.lo gnu/javax/crypto/mode.lo gnu/javax/crypto/pad.lo gnu/javax/crypto/prng.lo gnu/javax/crypto/sasl.lo gnu/javax/crypto/sasl/anonymous.lo gnu/javax/crypto/sasl/crammd5.lo gnu/javax/crypto/sasl/plain.lo gnu/javax/crypto/sasl/srp.lo gnu/javax/imageio.lo gnu/javax/imageio/bmp.lo gnu/javax/imageio/gif.lo gnu/javax/imageio/jpeg.lo gnu/javax/imageio/png.lo gnu/javax/naming/giop.lo gnu/javax/naming/ictxImpl/trans.lo gnu/javax/naming/jndi/url/corbaname.lo gnu/javax/naming/jndi/url/rmi.lo gnu/javax/net/ssl.lo gnu/javax/net/ssl/provider.lo gnu/javax/print.lo gnu/javax/print/ipp.lo gnu/javax/print/ipp/attribute.lo gnu/javax/print/ipp/attribute/defaults.lo gnu/javax/print/ipp/attribute/job.lo gnu/javax/print/ipp/attribute/printer.lo gnu/javax/print/ipp/attribute/supported.lo gnu/javax/security/auth.lo gnu/javax/security/auth/callback.lo gnu/javax/security/auth/login.lo gnu/javax/sound.lo gnu/javax/sound/sampled/AU.lo gnu/javax/sound/sampled/WAV.lo gnu/javax/swing/plaf/gnu.lo gnu/javax/swing/plaf/metal.lo gnu/javax/swing/text/html.lo gnu/javax/swing/text/html/css.lo gnu/javax/swing/text/html/parser/GnuParserDelegator.lo gnu/javax/swing/text/html/parser/HTML_401F.lo gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.lo gnu/javax/swing/text/html/parser/gnuDTD.lo gnu/javax/swing/text/html/parser/htmlAttributeSet.lo gnu/javax/swing/text/html/parser/htmlValidator.lo gnu/javax/swing/text/html/parser/models.lo gnu/javax/swing/text/html/parser/support.lo gnu/javax/swing/text/html/parser/support/low.lo gnu/javax/swing/tree.lo java/applet.lo java/awt.lo java/awt/color.lo java/awt/datatransfer.lo java/awt/dnd.lo java/awt/dnd/peer.lo java/awt/event.lo java/awt/font.lo java/awt/geom.lo java/awt/im.lo java/awt/im/spi.lo java/awt/image.lo java/awt/image/renderable.lo java/awt/peer.lo java/awt/print.lo java/beans.lo java/beans/beancontext.lo java/io.lo java/lang.lo java/lang/annotation.lo java/lang/instrument.lo java/lang/ref.lo java/lang/reflect.lo java/math.lo java/net.lo java/nio.lo java/nio/channels.lo java/nio/channels/spi.lo java/nio/charset.lo java/nio/charset/spi.lo java/rmi.lo java/rmi/activation.lo java/rmi/dgc.lo java/rmi/registry.lo java/rmi/server.lo java/security.lo java/security/acl.lo java/security/cert.lo java/security/interfaces.lo java/security/spec.lo java/sql.lo java/text.lo java/text/spi.lo java/util.lo java/util/concurrent.lo java/util/concurrent/atomic.lo java/util/concurrent/locks.lo java/util/jar.lo java/util/logging.lo java/util/prefs.lo java/util/regex.lo java/util/spi.lo java/util/zip.lo javax/accessibility.lo javax/activation.lo javax/activity.lo javax/crypto.lo javax/crypto/interfaces.lo javax/crypto/spec.lo javax/management.lo javax/management/loading.lo javax/management/openmbean.lo javax/management/remote.lo javax/management/remote/rmi.lo javax/naming.lo javax/naming/directory.lo javax/naming/event.lo javax/naming/ldap.lo javax/naming/spi.lo javax/net.lo javax/net/ssl.lo javax/print.lo javax/print/attribute.lo javax/print/attribute/standard.lo javax/print/event.lo javax/security/auth.lo javax/security/auth/callback.lo javax/security/auth/kerberos.lo javax/security/auth/login.lo javax/security/auth/spi.lo javax/security/auth/x500.lo javax/security/cert.lo javax/security/sasl.lo javax/sound/midi.lo javax/sound/midi/spi.lo javax/sound/sampled.lo javax/sound/sampled/spi.lo javax/sql.lo javax/swing.lo javax/swing/border.lo javax/swing/colorchooser.lo javax/swing/event.lo javax/swing/filechooser.lo javax/swing/plaf.lo javax/swing/plaf/basic.lo javax/swing/plaf/metal.lo javax/swing/plaf/multi.lo javax/swing/plaf/synth.lo javax/swing/table.lo javax/swing/text.lo javax/swing/text/html.lo javax/swing/text/html/parser.lo javax/swing/text/rtf.lo javax/swing/tree.lo javax/swing/undo.lo javax/tools.lo javax/transaction.lo javax/transaction/xa.lo org/ietf/jgss.lo sun/awt.lo sun/misc.lo sun/reflect.lo sun/reflect/annotation.lo sun/reflect/misc.lo gnu/classpath/jdwp.lo gnu/classpath/jdwp/event.lo gnu/classpath/jdwp/event/filters.lo gnu/classpath/jdwp/exception.lo gnu/classpath/jdwp/id.lo gnu/classpath/jdwp/processor.lo gnu/classpath/jdwp/transport.lo gnu/classpath/jdwp/util.lo gnu/classpath/jdwp/value.lo gnu/gcj/jvmti.lo gnu/java/awt/font/fonts.properties.lo gnu/java/awt/peer/gtk/font.properties.lo gnu/java/awt/peer/x/fonts.properties.lo gnu/java/awt/peer/x/xfonts.properties.lo gnu/java/locale/LocaleInformation.properties.lo gnu/java/locale/LocaleInformation_aa.properties.lo gnu/java/locale/LocaleInformation_aa_DJ.properties.lo gnu/java/locale/LocaleInformation_aa_ER.properties.lo gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.lo gnu/java/locale/LocaleInformation_aa_ET.properties.lo gnu/java/locale/LocaleInformation_af.properties.lo gnu/java/locale/LocaleInformation_af_NA.properties.lo gnu/java/locale/LocaleInformation_af_ZA.properties.lo gnu/java/locale/LocaleInformation_ak.properties.lo gnu/java/locale/LocaleInformation_am.properties.lo gnu/java/locale/LocaleInformation_am_ET.properties.lo gnu/java/locale/LocaleInformation_ar.properties.lo gnu/java/locale/LocaleInformation_ar_DZ.properties.lo gnu/java/locale/LocaleInformation_ar_JO.properties.lo gnu/java/locale/LocaleInformation_ar_LB.properties.lo gnu/java/locale/LocaleInformation_ar_MA.properties.lo gnu/java/locale/LocaleInformation_ar_QA.properties.lo gnu/java/locale/LocaleInformation_ar_SA.properties.lo gnu/java/locale/LocaleInformation_ar_SY.properties.lo gnu/java/locale/LocaleInformation_ar_TN.properties.lo gnu/java/locale/LocaleInformation_ar_YE.properties.lo gnu/java/locale/LocaleInformation_as.properties.lo gnu/java/locale/LocaleInformation_as_IN.properties.lo gnu/java/locale/LocaleInformation_az.properties.lo gnu/java/locale/LocaleInformation_az_Cyrl.properties.lo gnu/java/locale/LocaleInformation_be.properties.lo gnu/java/locale/LocaleInformation_be_BY.properties.lo gnu/java/locale/LocaleInformation_bg.properties.lo gnu/java/locale/LocaleInformation_bg_BG.properties.lo gnu/java/locale/LocaleInformation_bn.properties.lo gnu/java/locale/LocaleInformation_bn_IN.properties.lo gnu/java/locale/LocaleInformation_bo.properties.lo gnu/java/locale/LocaleInformation_bs.properties.lo gnu/java/locale/LocaleInformation_byn.properties.lo gnu/java/locale/LocaleInformation_byn_ER.properties.lo gnu/java/locale/LocaleInformation_ca.properties.lo gnu/java/locale/LocaleInformation_ca_ES.properties.lo gnu/java/locale/LocaleInformation_cch.properties.lo gnu/java/locale/LocaleInformation_cop.properties.lo gnu/java/locale/LocaleInformation_cs.properties.lo gnu/java/locale/LocaleInformation_cs_CZ.properties.lo gnu/java/locale/LocaleInformation_cy.properties.lo gnu/java/locale/LocaleInformation_cy_GB.properties.lo gnu/java/locale/LocaleInformation_da.properties.lo gnu/java/locale/LocaleInformation_da_DK.properties.lo gnu/java/locale/LocaleInformation_de.properties.lo gnu/java/locale/LocaleInformation_de_AT.properties.lo gnu/java/locale/LocaleInformation_de_BE.properties.lo gnu/java/locale/LocaleInformation_de_CH.properties.lo gnu/java/locale/LocaleInformation_de_DE.properties.lo gnu/java/locale/LocaleInformation_de_LI.properties.lo gnu/java/locale/LocaleInformation_de_LU.properties.lo gnu/java/locale/LocaleInformation_dv.properties.lo gnu/java/locale/LocaleInformation_dv_MV.properties.lo gnu/java/locale/LocaleInformation_dz.properties.lo gnu/java/locale/LocaleInformation_dz_BT.properties.lo gnu/java/locale/LocaleInformation_ee.properties.lo gnu/java/locale/LocaleInformation_el.properties.lo gnu/java/locale/LocaleInformation_el_CY.properties.lo gnu/java/locale/LocaleInformation_el_GR.properties.lo gnu/java/locale/LocaleInformation_en.properties.lo gnu/java/locale/LocaleInformation_en_AS.properties.lo gnu/java/locale/LocaleInformation_en_AU.properties.lo gnu/java/locale/LocaleInformation_en_BE.properties.lo gnu/java/locale/LocaleInformation_en_BW.properties.lo gnu/java/locale/LocaleInformation_en_BZ.properties.lo gnu/java/locale/LocaleInformation_en_CA.properties.lo gnu/java/locale/LocaleInformation_en_Dsrt.properties.lo gnu/java/locale/LocaleInformation_en_GB.properties.lo gnu/java/locale/LocaleInformation_en_GU.properties.lo gnu/java/locale/LocaleInformation_en_HK.properties.lo gnu/java/locale/LocaleInformation_en_IE.properties.lo gnu/java/locale/LocaleInformation_en_IN.properties.lo gnu/java/locale/LocaleInformation_en_JM.properties.lo gnu/java/locale/LocaleInformation_en_MH.properties.lo gnu/java/locale/LocaleInformation_en_MP.properties.lo gnu/java/locale/LocaleInformation_en_MT.properties.lo gnu/java/locale/LocaleInformation_en_NA.properties.lo gnu/java/locale/LocaleInformation_en_NZ.properties.lo gnu/java/locale/LocaleInformation_en_PH.properties.lo gnu/java/locale/LocaleInformation_en_PK.properties.lo gnu/java/locale/LocaleInformation_en_SG.properties.lo gnu/java/locale/LocaleInformation_en_Shaw.properties.lo gnu/java/locale/LocaleInformation_en_TT.properties.lo gnu/java/locale/LocaleInformation_en_UM.properties.lo gnu/java/locale/LocaleInformation_en_US.properties.lo gnu/java/locale/LocaleInformation_en_US_POSIX.properties.lo gnu/java/locale/LocaleInformation_en_VI.properties.lo gnu/java/locale/LocaleInformation_en_ZA.properties.lo gnu/java/locale/LocaleInformation_en_ZW.properties.lo gnu/java/locale/LocaleInformation_eo.properties.lo gnu/java/locale/LocaleInformation_es.properties.lo gnu/java/locale/LocaleInformation_es_AR.properties.lo gnu/java/locale/LocaleInformation_es_BO.properties.lo gnu/java/locale/LocaleInformation_es_CL.properties.lo gnu/java/locale/LocaleInformation_es_CO.properties.lo gnu/java/locale/LocaleInformation_es_CR.properties.lo gnu/java/locale/LocaleInformation_es_DO.properties.lo gnu/java/locale/LocaleInformation_es_EC.properties.lo gnu/java/locale/LocaleInformation_es_ES.properties.lo gnu/java/locale/LocaleInformation_es_GT.properties.lo gnu/java/locale/LocaleInformation_es_HN.properties.lo gnu/java/locale/LocaleInformation_es_MX.properties.lo gnu/java/locale/LocaleInformation_es_NI.properties.lo gnu/java/locale/LocaleInformation_es_PA.properties.lo gnu/java/locale/LocaleInformation_es_PE.properties.lo gnu/java/locale/LocaleInformation_es_PR.properties.lo gnu/java/locale/LocaleInformation_es_PY.properties.lo gnu/java/locale/LocaleInformation_es_SV.properties.lo gnu/java/locale/LocaleInformation_es_US.properties.lo gnu/java/locale/LocaleInformation_es_UY.properties.lo gnu/java/locale/LocaleInformation_es_VE.properties.lo gnu/java/locale/LocaleInformation_et.properties.lo gnu/java/locale/LocaleInformation_et_EE.properties.lo gnu/java/locale/LocaleInformation_eu.properties.lo gnu/java/locale/LocaleInformation_eu_ES.properties.lo gnu/java/locale/LocaleInformation_fa.properties.lo gnu/java/locale/LocaleInformation_fa_AF.properties.lo gnu/java/locale/LocaleInformation_fa_IR.properties.lo gnu/java/locale/LocaleInformation_fi.properties.lo gnu/java/locale/LocaleInformation_fi_FI.properties.lo gnu/java/locale/LocaleInformation_fil.properties.lo gnu/java/locale/LocaleInformation_fo.properties.lo gnu/java/locale/LocaleInformation_fo_FO.properties.lo gnu/java/locale/LocaleInformation_fr.properties.lo gnu/java/locale/LocaleInformation_fr_BE.properties.lo gnu/java/locale/LocaleInformation_fr_CA.properties.lo gnu/java/locale/LocaleInformation_fr_CH.properties.lo gnu/java/locale/LocaleInformation_fr_LU.properties.lo gnu/java/locale/LocaleInformation_fur.properties.lo gnu/java/locale/LocaleInformation_ga.properties.lo gnu/java/locale/LocaleInformation_ga_IE.properties.lo gnu/java/locale/LocaleInformation_gaa.properties.lo gnu/java/locale/LocaleInformation_gez.properties.lo gnu/java/locale/LocaleInformation_gez_ER.properties.lo gnu/java/locale/LocaleInformation_gez_ET.properties.lo gnu/java/locale/LocaleInformation_gl.properties.lo gnu/java/locale/LocaleInformation_gl_ES.properties.lo gnu/java/locale/LocaleInformation_gu.properties.lo gnu/java/locale/LocaleInformation_gu_IN.properties.lo gnu/java/locale/LocaleInformation_gv.properties.lo gnu/java/locale/LocaleInformation_gv_GB.properties.lo gnu/java/locale/LocaleInformation_ha.properties.lo gnu/java/locale/LocaleInformation_ha_Arab.properties.lo gnu/java/locale/LocaleInformation_haw.properties.lo gnu/java/locale/LocaleInformation_haw_US.properties.lo gnu/java/locale/LocaleInformation_he.properties.lo gnu/java/locale/LocaleInformation_he_IL.properties.lo gnu/java/locale/LocaleInformation_hi.properties.lo gnu/java/locale/LocaleInformation_hi_IN.properties.lo gnu/java/locale/LocaleInformation_hr.properties.lo gnu/java/locale/LocaleInformation_hu.properties.lo gnu/java/locale/LocaleInformation_hu_HU.properties.lo gnu/java/locale/LocaleInformation_hy.properties.lo gnu/java/locale/LocaleInformation_hy_AM.properties.lo gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.lo gnu/java/locale/LocaleInformation_ia.properties.lo gnu/java/locale/LocaleInformation_id.properties.lo gnu/java/locale/LocaleInformation_id_ID.properties.lo gnu/java/locale/LocaleInformation_ig.properties.lo gnu/java/locale/LocaleInformation_ii.properties.lo gnu/java/locale/LocaleInformation_is.properties.lo gnu/java/locale/LocaleInformation_is_IS.properties.lo gnu/java/locale/LocaleInformation_it.properties.lo gnu/java/locale/LocaleInformation_it_CH.properties.lo gnu/java/locale/LocaleInformation_it_IT.properties.lo gnu/java/locale/LocaleInformation_iu.properties.lo gnu/java/locale/LocaleInformation_ja.properties.lo gnu/java/locale/LocaleInformation_ja_JP.properties.lo gnu/java/locale/LocaleInformation_ka.properties.lo gnu/java/locale/LocaleInformation_kaj.properties.lo gnu/java/locale/LocaleInformation_kam.properties.lo gnu/java/locale/LocaleInformation_kcg.properties.lo gnu/java/locale/LocaleInformation_kfo.properties.lo gnu/java/locale/LocaleInformation_kk.properties.lo gnu/java/locale/LocaleInformation_kk_KZ.properties.lo gnu/java/locale/LocaleInformation_kl.properties.lo gnu/java/locale/LocaleInformation_kl_GL.properties.lo gnu/java/locale/LocaleInformation_km.properties.lo gnu/java/locale/LocaleInformation_km_KH.properties.lo gnu/java/locale/LocaleInformation_kn.properties.lo gnu/java/locale/LocaleInformation_kn_IN.properties.lo gnu/java/locale/LocaleInformation_ko.properties.lo gnu/java/locale/LocaleInformation_ko_KR.properties.lo gnu/java/locale/LocaleInformation_kok.properties.lo gnu/java/locale/LocaleInformation_kok_IN.properties.lo gnu/java/locale/LocaleInformation_kpe.properties.lo gnu/java/locale/LocaleInformation_ku.properties.lo gnu/java/locale/LocaleInformation_ku_Arab.properties.lo gnu/java/locale/LocaleInformation_ku_Latn.properties.lo gnu/java/locale/LocaleInformation_kw.properties.lo gnu/java/locale/LocaleInformation_kw_GB.properties.lo gnu/java/locale/LocaleInformation_ky.properties.lo gnu/java/locale/LocaleInformation_ln.properties.lo gnu/java/locale/LocaleInformation_lo.properties.lo gnu/java/locale/LocaleInformation_lo_LA.properties.lo gnu/java/locale/LocaleInformation_lt.properties.lo gnu/java/locale/LocaleInformation_lt_LT.properties.lo gnu/java/locale/LocaleInformation_lv.properties.lo gnu/java/locale/LocaleInformation_lv_LV.properties.lo gnu/java/locale/LocaleInformation_mk.properties.lo gnu/java/locale/LocaleInformation_ml.properties.lo gnu/java/locale/LocaleInformation_ml_IN.properties.lo gnu/java/locale/LocaleInformation_mn.properties.lo gnu/java/locale/LocaleInformation_mr.properties.lo gnu/java/locale/LocaleInformation_mr_IN.properties.lo gnu/java/locale/LocaleInformation_ms.properties.lo gnu/java/locale/LocaleInformation_ms_BN.properties.lo gnu/java/locale/LocaleInformation_ms_MY.properties.lo gnu/java/locale/LocaleInformation_mt.properties.lo gnu/java/locale/LocaleInformation_mt_MT.properties.lo gnu/java/locale/LocaleInformation_my.properties.lo gnu/java/locale/LocaleInformation_nb.properties.lo gnu/java/locale/LocaleInformation_nb_NO.properties.lo gnu/java/locale/LocaleInformation_ne.properties.lo gnu/java/locale/LocaleInformation_nl.properties.lo gnu/java/locale/LocaleInformation_nl_BE.properties.lo gnu/java/locale/LocaleInformation_nl_NL.properties.lo gnu/java/locale/LocaleInformation_nn.properties.lo gnu/java/locale/LocaleInformation_nn_NO.properties.lo gnu/java/locale/LocaleInformation_nr.properties.lo gnu/java/locale/LocaleInformation_nso.properties.lo gnu/java/locale/LocaleInformation_ny.properties.lo gnu/java/locale/LocaleInformation_om.properties.lo gnu/java/locale/LocaleInformation_om_ET.properties.lo gnu/java/locale/LocaleInformation_om_KE.properties.lo gnu/java/locale/LocaleInformation_or.properties.lo gnu/java/locale/LocaleInformation_or_IN.properties.lo gnu/java/locale/LocaleInformation_pa.properties.lo gnu/java/locale/LocaleInformation_pa_Arab.properties.lo gnu/java/locale/LocaleInformation_pa_IN.properties.lo gnu/java/locale/LocaleInformation_pl.properties.lo gnu/java/locale/LocaleInformation_pl_PL.properties.lo gnu/java/locale/LocaleInformation_ps.properties.lo gnu/java/locale/LocaleInformation_ps_AF.properties.lo gnu/java/locale/LocaleInformation_pt.properties.lo gnu/java/locale/LocaleInformation_pt_BR.properties.lo gnu/java/locale/LocaleInformation_pt_PT.properties.lo gnu/java/locale/LocaleInformation_ro.properties.lo gnu/java/locale/LocaleInformation_ro_RO.properties.lo gnu/java/locale/LocaleInformation_ru.properties.lo gnu/java/locale/LocaleInformation_ru_RU.properties.lo gnu/java/locale/LocaleInformation_ru_UA.properties.lo gnu/java/locale/LocaleInformation_rw.properties.lo gnu/java/locale/LocaleInformation_sa.properties.lo gnu/java/locale/LocaleInformation_sa_IN.properties.lo gnu/java/locale/LocaleInformation_se.properties.lo gnu/java/locale/LocaleInformation_se_FI.properties.lo gnu/java/locale/LocaleInformation_si.properties.lo gnu/java/locale/LocaleInformation_sid.properties.lo gnu/java/locale/LocaleInformation_sid_ET.properties.lo gnu/java/locale/LocaleInformation_sk.properties.lo gnu/java/locale/LocaleInformation_sk_SK.properties.lo gnu/java/locale/LocaleInformation_sl.properties.lo gnu/java/locale/LocaleInformation_sl_SI.properties.lo gnu/java/locale/LocaleInformation_so.properties.lo gnu/java/locale/LocaleInformation_so_DJ.properties.lo gnu/java/locale/LocaleInformation_so_ET.properties.lo gnu/java/locale/LocaleInformation_so_KE.properties.lo gnu/java/locale/LocaleInformation_so_SO.properties.lo gnu/java/locale/LocaleInformation_sq.properties.lo gnu/java/locale/LocaleInformation_sq_AL.properties.lo gnu/java/locale/LocaleInformation_sr.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.lo gnu/java/locale/LocaleInformation_ss.properties.lo gnu/java/locale/LocaleInformation_ssy.properties.lo gnu/java/locale/LocaleInformation_st.properties.lo gnu/java/locale/LocaleInformation_sv.properties.lo gnu/java/locale/LocaleInformation_sv_FI.properties.lo gnu/java/locale/LocaleInformation_sv_SE.properties.lo gnu/java/locale/LocaleInformation_sw.properties.lo gnu/java/locale/LocaleInformation_sw_KE.properties.lo gnu/java/locale/LocaleInformation_sw_TZ.properties.lo gnu/java/locale/LocaleInformation_syr.properties.lo gnu/java/locale/LocaleInformation_syr_SY.properties.lo gnu/java/locale/LocaleInformation_ta.properties.lo gnu/java/locale/LocaleInformation_ta_IN.properties.lo gnu/java/locale/LocaleInformation_te.properties.lo gnu/java/locale/LocaleInformation_te_IN.properties.lo gnu/java/locale/LocaleInformation_tg.properties.lo gnu/java/locale/LocaleInformation_th.properties.lo gnu/java/locale/LocaleInformation_th_TH.properties.lo gnu/java/locale/LocaleInformation_ti.properties.lo gnu/java/locale/LocaleInformation_ti_ER.properties.lo gnu/java/locale/LocaleInformation_ti_ET.properties.lo gnu/java/locale/LocaleInformation_tig.properties.lo gnu/java/locale/LocaleInformation_tig_ER.properties.lo gnu/java/locale/LocaleInformation_tn.properties.lo gnu/java/locale/LocaleInformation_to.properties.lo gnu/java/locale/LocaleInformation_tr.properties.lo gnu/java/locale/LocaleInformation_tr_TR.properties.lo gnu/java/locale/LocaleInformation_trv.properties.lo gnu/java/locale/LocaleInformation_ts.properties.lo gnu/java/locale/LocaleInformation_tt.properties.lo gnu/java/locale/LocaleInformation_tt_RU.properties.lo gnu/java/locale/LocaleInformation_ug.properties.lo gnu/java/locale/LocaleInformation_uk.properties.lo gnu/java/locale/LocaleInformation_uk_UA.properties.lo gnu/java/locale/LocaleInformation_ur.properties.lo gnu/java/locale/LocaleInformation_ur_IN.properties.lo gnu/java/locale/LocaleInformation_uz.properties.lo gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Latn.properties.lo gnu/java/locale/LocaleInformation_ve.properties.lo gnu/java/locale/LocaleInformation_vi.properties.lo gnu/java/locale/LocaleInformation_wal.properties.lo gnu/java/locale/LocaleInformation_wal_ET.properties.lo gnu/java/locale/LocaleInformation_wo.properties.lo gnu/java/locale/LocaleInformation_xh.properties.lo gnu/java/locale/LocaleInformation_yo.properties.lo gnu/java/locale/LocaleInformation_zh.properties.lo gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.lo gnu/java/locale/LocaleInformation_zu.properties.lo gnu/java/util/regex/MessagesBundle.properties.lo gnu/java/util/regex/MessagesBundle_fr.properties.lo gnu/java/util/regex/MessagesBundle_it.properties.lo gnu/javax/print/PrinterDialog.properties.lo gnu/javax/print/PrinterDialog_de.properties.lo gnu/javax/security/auth/callback/MessagesBundle.properties.lo java/text/metazones.properties.lo java/util/iso4217.properties.lo java/util/weeks.properties.lo javax/imageio/plugins/jpeg/MessagesBundle.properties.lo javax/swing/text/html/default.css.lo org/ietf/jgss/MessagesBundle.properties.lo META-INF/services/java.util.prefs.PreferencesFactory.lo META-INF/services/java.util.prefs.PreferencesFactory.in.lo META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.lo META-INF/services/javax.sound.midi.spi.MidiFileReader.lo META-INF/services/javax.sound.midi.spi.MidiFileWriter.lo META-INF/services/javax.sound.sampled.spi.AudioFileReader.lo gnu-CORBA.lo gnu-java-awt-dnd-peer-gtk.lo gnu-java-awt-peer-gtk.lo gnu-java-awt-peer-swing.lo gnu-java-beans.lo gnu-java-lang-management.lo gnu-java-math.lo gnu-java-util-prefs-gconf.lo gnu-javax-management.lo gnu-javax-rmi.lo gnu-javax-sound-midi.lo gnu-xml-aelfred2.lo gnu-xml-dom.lo gnu-xml-libxmlj.lo gnu-xml-pipeline.lo gnu-xml-stream.lo gnu-xml-transform.lo gnu-xml-util.lo gnu-xml-validation.lo gnu-xml-xpath.lo java-lang-management.lo javax-imageio.lo javax-rmi.lo javax-xml.lo org-omg-CORBA.lo org-omg-CORBA_2_3.lo org-omg-CosNaming.lo org-omg-Dynamic.lo org-omg-DynamicAny.lo org-omg-IOP.lo org-omg-Messaging.lo org-omg-PortableInterceptor.lo org-omg-PortableServer.lo org-omg-SendingContext.lo org-omg-stub.lo org-relaxng.lo org-w3c.lo org-xml.lo ../libffi/libffi_convenience.la ../zlib/libzgcj_convenience.la ../boehm-gc/libgcjgc_convenience.la
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
++/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L[...]/hurd/master.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd/master.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -rpath [...]/hurd/master.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu/java/security/jce/hash.lo gnu/java/security/jce/prng.lo gnu/java/security/jce/sig.lo gnu/java/security/key.lo gnu/java/security/key/dss.lo gnu/java/security/key/rsa.lo gnu/java/security/pkcs.lo gnu/java/security/prng.lo gnu/java/security/provider.lo gnu/java/secu libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
libtool: link: (cd ".libs" && rm -f "libgcj.so.12" && ln -s "libgcj.so.12.0.0" "libgcj.so.12")
libtool: link: (cd ".libs" && rm -f "libgcj.so" && ln -s "libgcj.so.12.0.0" "libgcj.so")
- libtool: link: (cd .libs/libgcj.lax/libltdlc.a && ar x "[...]/hurd.build/[ARCH]/libjava/./libltdl/.libs/libltdlc.a")
-@@ -23502,12 +23076,12 @@
+ libtool: link: (cd .libs/libgcj.lax/libltdlc.a && ar x "[...]/hurd/master.build/[ARCH]/libjava/./libltdl/.libs/libltdlc.a")
+@@ -23438,12 +23010,12 @@
libtool: link: ln org/ietf/jgss/MessagesBundle.properties.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o || cp org/ietf/jgss/MessagesBundle.properties.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o
libtool: link: ln .libs/libgcj.lax/libffi_convenience.a/debug.o .libs/libgcj.lax/lt91-debug.o || cp .libs/libgcj.lax/libffi_convenience.a/debug.o .libs/libgcj.lax/lt91-debug.o
libtool: link: ln .libs/libgcj.lax/libgcjgc_convenience.a/misc.o .libs/libgcj.lax/lt92-misc.o || cp .libs/libgcj.lax/libgcjgc_convenience.a/misc.o .libs/libgcj.lax/lt92-misc.o
@@ -3489,21 +3546,21 @@
libtool: link: ranlib .libs/libgcj.a
libtool: link: rm -fr .libs/libgcj.lax .libs/libgcj.lax
libtool: link: ( cd ".libs" && rm -f "libgcj.la" && ln -s "../libgcj.la" "libgcj.la" )
--/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic -rpath [...]/hurd.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd.build/[ARCH]/libjava/.libs libgcj.la
--libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd.build.install/lib -L[...]/hurd.build/[ARCH]/libjava/.libs -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
-+/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic-functions -rpath [...]/hurd.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd.build/[ARCH]/libjava/.libs libgcj.la
-+libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd.build.install/lib -L[...]/hurd.build/[ARCH]/libjava/.libs -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
+-/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
++/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
++libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
libtool: link: ar rc .libs/libjvm.a jni-libjvm.o
libtool: link: ranlib .libs/libjvm.a
libtool: link: ( cd ".libs" && rm -f "libjvm.la" && ln -s "../libjvm.la" "libjvm.la" )
-@@ -23516,8 +23090,8 @@
+@@ -23452,8 +23024,8 @@
mv -f $depbase.Tpo $depbase.Plo
- libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../hurd/libjava/gij.cc -fPIC -DPIC -o .libs/gij.o
- libtool: compile: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../hurd/libjava -I./include -I./gcj -I../../../hurd/libjava -Iinclude -I../../../hurd/libjava/include -I../../../hurd/libjava/classpath/include -Iclasspath/include -I../../../hurd/libjava/classpath/native/fdlibm -I../../../hurd/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/libltdl -I../../../hurd/libjava/.././libjava/../gcc -I../../../hurd/libjava/../zlib -I../../../hurd/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd.build.install/lib\" -DJAVA_HOME=\"[...]/hurd.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../hurd/libjava/gij.cc -o gij.o >/dev/null 2>&1
--/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd.build.install/lib -version-info `grep -v '^#' ../../../hurd/libjava/libtool-version` -Wl,-Bsymbolic -rpath [...]/hurd.build.install/lib gij.lo -L[...]/hurd.build/[ARCH]/libjava/.libs libgcj.la
--libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd.build.install/lib -L[...]/hurd.build/[ARCH]/libjava/.libs -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
-+/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd.build.install/lib -version-info `grep -v '^#' ../../../hurd/libjava/libtool-version` -Wl,-Bsymbolic-functions -rpath [...]/hurd.build.install/lib gij.lo -L[...]/hurd.build/[ARCH]/libjava/.libs libgcj.la
-+libtool: link: [...]/hurd.build/./gcc/xgcc -shared-libgcc -B[...]/hurd.build/./gcc -nostdinc++ -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd.build.install/[ARCH]/bin/ -B[...]/hurd.build.install/[ARCH]/lib/ -isystem [...]/hurd.build.install/[ARCH]/include -isystem [...]/hurd.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd.build.install/lib -L[...]/hurd.build/[ARCH]/libjava/.libs -L[...]/hurd.build/[ARCH]/libstdc++-v3/src -L[...]/hurd.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd.build/./gcc -lc -lgcc_s [...]/hurd.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../master/libjava/gij.cc -fPIC -DPIC -o .libs/gij.o
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../master/libjava/gij.cc -o gij.o >/dev/null 2>&1
+-/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
++/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
++libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
libtool: link: (cd ".libs" && rm -f "libgij.so.12" && ln -s "libgij.so.12.0.0" "libgij.so.12")
libtool: link: (cd ".libs" && rm -f "libgij.so" && ln -s "libgij.so.12.0.0" "libgij.so")
libtool: link: ar rc .libs/libgij.a gij.o
diff --git a/open_issues/gcc/testsuite/log_build-linux.sed b/open_issues/gcc/testsuite/log_build-linux.sed
index f57cbeb9..f9b412ef 100644
--- a/open_issues/gcc/testsuite/log_build-linux.sed
+++ b/open_issues/gcc/testsuite/log_build-linux.sed
@@ -1,9 +1,9 @@
s%i686-pc-linux-gnu%[ARCH]%g
s%libdecnumber/bid%[libdecnumber]%g
-s%-I../../../hurd/libgcc/config/libbid -DENABLE_DECIMAL_BID_FORMAT%%
+s%-I../../../master/libgcc/config/libbid -DENABLE_DECIMAL_BID_FORMAT%%
-s%-I../../../hurd/libgomp/config/linux/x86 -I../../../hurd/libgomp/config/linux %%
+s%-I../../../master/libgomp/config/linux/x86 -I../../../master/libgomp/config/linux %%
s%-ftls-model=initial-exec -march=i486 -mtune=i686 %%
s%-Werror -ftls-model=initial-exec -march=i486 -pthread -mtune=i686%-pthread -Werror%
s%libgomp/config/linux/%libgomp/config/[SYSDEP]/%g
--
cgit v1.2.3
From 6de855d9a8f8c25ffe6ad118012bd9a74e6c13fe Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 29 Nov 2010 12:21:36 +0100
Subject: open_issues/security: New.
---
open_issues/code_analysis.mdwn | 31 +++++++++++++++++++++++++++++++
open_issues/locking.mdwn | 25 ++++++-------------------
open_issues/security.mdwn | 34 ++++++++++++++++++++++++++++++++++
security.mdwn | 11 ++++++++---
4 files changed, 79 insertions(+), 22 deletions(-)
create mode 100644 open_issues/code_analysis.mdwn
create mode 100644 open_issues/security.mdwn
diff --git a/open_issues/code_analysis.mdwn b/open_issues/code_analysis.mdwn
new file mode 100644
index 00000000..98447e98
--- /dev/null
+++ b/open_issues/code_analysis.mdwn
@@ -0,0 +1,31 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+There is static and dynamic code analysis.
+
+ * [[GCC]]'s warnings. Yes, really.
+
+ * Coccinelle
+
+ *
+
+ *
+
+ * clang
+
+ *
+
+ * Linux' sparse
+
+ *
+
+ *
+
+ *
diff --git a/open_issues/locking.mdwn b/open_issues/locking.mdwn
index 1717133a..11a10524 100644
--- a/open_issues/locking.mdwn
+++ b/open_issues/locking.mdwn
@@ -28,26 +28,13 @@ runtime. Or implementing a [[unit testing]] framework that explicitly checks
locking in various code paths. (The latter could serve as a template for
implementing unit tests in other parts of the Hurd codebase...)
-(A systematic code review would probably suffice to find the existing locking
+(A [[systematic code review|security]] would probably suffice to find the
+existing locking
issues; but it wouldn't document the work in terms of actual code produced, and
thus it's not suitable for a GSoC project...)
-This task requires experience with debugging locking issues in multithreaded
-applications.
+This task requires experience with debugging locking issues in
+[[multithreaded|multithreading]] applications.
-Tools have been written for static code analysis, than can help to locate
-and fix such errors.
-
- * Coccinelle
-
- *
-
- *
-
- * clang
-
- *
-
- * Linux' sparse
-
- *
+Tools have been written for automated [[code analysis]]; these can help to
+locate and fix such errors.
diff --git a/open_issues/security.mdwn b/open_issues/security.mdwn
new file mode 100644
index 00000000..055c8bdc
--- /dev/null
+++ b/open_issues/security.mdwn
@@ -0,0 +1,34 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+There are [[several aspects to security|/security]] that are (mainly) relevant
+to the design space.
+
+There are also security issues in the implemenation space, for example using
+the correct coding paradigms.
+
+Large parts of our code base have not beed audited, either manually or in an
+automated fashion.
+
+[[Unit testing]] is one aspect: testing for reliably failing for invalid input.
+
+[[Code analysis]] is another aspect.
+
+All publically usable interfaces provide attacking targets. This includes all
+[[system call]]s and [[RPC]] interfaces.
+
+Fuzzing techniques can be use for locating possible issues.
+
+ *
+
+ * Has already been used in the 70s / 80s (?) for testing [[UNIX]] command
+ line tools.
+
+ *
diff --git a/security.mdwn b/security.mdwn
index 0e22df00..222c4a68 100644
--- a/security.mdwn
+++ b/security.mdwn
@@ -1,12 +1,13 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
Alan Karp [identifies][1] 11 security questions:
@@ -58,3 +59,7 @@ Online non-overt channels (both covert & side) are auditory:
Offline non-overt channels are olfactory:
* Bob can smell that Kilroy was here, even if Kilroy is asleep or dead.
+
+---
+
+[[Open Issues related to security|open_issues/security]].
--
cgit v1.2.3
From 38368072b37bf73dda26dac536e4aa6cf13c67e4 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 29 Nov 2010 13:41:16 +0100
Subject: system_call: New.
---
community/gsoc/project_ideas/libcap.mdwn | 8 ++++----
community/gsoc/project_ideas/libcap/details.mdwn | 8 ++++----
community/gsoc/project_ideas/secure_chroot.mdwn | 11 ++++++-----
community/gsoc/project_ideas/valgrind.mdwn | 8 ++++----
extensibility.mdwn | 9 +++++----
faq/sharing_the_user_space.mdwn | 2 +-
glibc.mdwn | 13 +++++++++++--
glibc/fork.mdwn | 20 +++++++++++++-------
hurd/glibc/hurd-specific_api.mdwn | 11 ++++++-----
hurd/networking.mdwn | 11 ++++++-----
hurd/ng/microkernelcoyotos.mdwn | 4 +++-
hurd/ng/trivialconfinementvsconstructorvsfork.mdwn | 18 ++++++++++++++----
hurd/translator/wishlist_2.mdwn | 12 +++++++++++-
qemu.mdwn | 12 ++++++------
system_call.mdwn | 19 +++++++++++++++++++
15 files changed, 113 insertions(+), 53 deletions(-)
create mode 100644 system_call.mdwn
diff --git a/community/gsoc/project_ideas/libcap.mdwn b/community/gsoc/project_ideas/libcap.mdwn
index 1346203d..18c49c48 100644
--- a/community/gsoc/project_ideas/libcap.mdwn
+++ b/community/gsoc/project_ideas/libcap.mdwn
@@ -1,12 +1,12 @@
-[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2009, 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[!meta title="Implementing libcap"]]
@@ -33,7 +33,7 @@ probably doable without previous experience with either, though.
David Hedberg applied for this project in 2010,
and though he didn't go through with it,
-he fleshed out many [[libcap/details]].
+he fleshed out many [[details]].
Possible mentors: Samuel Thibault (youpi)
diff --git a/community/gsoc/project_ideas/libcap/details.mdwn b/community/gsoc/project_ideas/libcap/details.mdwn
index aa27a84e..85695978 100644
--- a/community/gsoc/project_ideas/libcap/details.mdwn
+++ b/community/gsoc/project_ideas/libcap/details.mdwn
@@ -5,8 +5,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[!meta title="Details on implementing libcap"]]
@@ -59,7 +59,7 @@ Each process has a three bit fields representing each of the three
sets (P, E and I). Each bit field is currently built up of two (32
bit) integers to be able to hold the 33 currently defined capabilities
(see linux/capability.h). Each process further has a bounding set which
-bounds the permitted set. Two syscalls handles the setting and getting
+bounds the permitted set. Two [[system call]]s handles the setting and getting
of capabilities; *capset* and *capget*. Some related functionality
can also be controlled by calling *prctl*: the right to read/drop the
bounding capabilities (PR_CAPBSET_READ/PR_CAPBSET_DROP) and whether
@@ -428,7 +428,7 @@ the following (also detailed somewhat in the same article):
* Execute process as root (or setuid) to gain all capabilities.
-* Use the prctl system call to enable keepcaps for the process
+* Use the prctl [[system call]] to enable keepcaps for the process
(same(?) effect as enabling SECURE_NO_SETUID_FIXUP for the process).
keepcaps should be off by default.
diff --git a/community/gsoc/project_ideas/secure_chroot.mdwn b/community/gsoc/project_ideas/secure_chroot.mdwn
index feb30a7c..57739861 100644
--- a/community/gsoc/project_ideas/secure_chroot.mdwn
+++ b/community/gsoc/project_ideas/secure_chroot.mdwn
@@ -1,17 +1,18 @@
-[[!meta copyright="Copyright © 2008, 2009 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2008, 2009, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[!meta title="Secure chroot Implementation"]]
As the Hurd attempts to be (almost) fully [[UNIX]]-compatible, it also implements a
-`chroot()` system call. However, the current implementation is not really
+`chroot` [[system call]]. However, the current implementation is not really
good, as it allows easily escaping the `chroot`, for example by use of
[[passive_translators|hurd/translator]].
@@ -20,7 +21,7 @@ workaround changing the behavior of passive translators in a `chroot`;
changing the context in which passive translators are executed; changing the
interpretation of filenames in a chroot; to reworking the whole passive
translator mechanism. Some involving a completely different approach to
-`chroot` implementation, using a proxy instead of a special system call in the
+`chroot` implementation, using a proxy instead of a special [[system call]] in the
filesystem servers.
See
diff --git a/community/gsoc/project_ideas/valgrind.mdwn b/community/gsoc/project_ideas/valgrind.mdwn
index c6fc7459..7d68e82d 100644
--- a/community/gsoc/project_ideas/valgrind.mdwn
+++ b/community/gsoc/project_ideas/valgrind.mdwn
@@ -18,7 +18,7 @@ although they work on Linux.
Even more importantly, it will help finding bugs in the Hurd servers themselfs.
To keep track of memory use,
-Valgrind however needs to know how each system call affects the validity of memory regions.
+Valgrind however needs to know how each [[system call]] affects the validity of memory regions.
This knowledge is highly kernel-specific,
and thus Valgrind needs to be explicitely ported for every system.
@@ -26,11 +26,11 @@ Such a port involves two major steps:
making Valgrind understand how kernel traps work in general on the system in question;
and how all the individual kernel calls affect memory.
The latter step is where most of the work is,
-as the behaviour of each single system call needs to be described.
+as the behaviour of each single [[system call]] needs to be described.
Compared to Linux,
Mach (the microkernel used by the Hurd) has very few kernel traps.
-Almost all system calls are implemented as RPCs instead --
+Almost all [[system call]]s are implemented as RPCs instead --
either handled by Mach itself, or by the various Hurd servers.
All RPCs use a pair of mach\_msg() invocations:
one to send a request message, and one to receive a reply.
@@ -62,7 +62,7 @@ The goal of this task is at minimum to make Valgrind grok Mach traps,
and to implement the generic RPC handler.
Ideally, specific handling for RPCs needing it should also be implemented.
-Completing this project will require digging into Valgrind's handling of system calls,
+Completing this project will require digging into Valgrind's handling of [[system call]]s,
and into Hurd RPCs.
It is not an easy task, but a fairly predictable one --
there shouldn't be any unexpected difficulties,
diff --git a/extensibility.mdwn b/extensibility.mdwn
index 01b1f3b1..17cd5e51 100644
--- a/extensibility.mdwn
+++ b/extensibility.mdwn
@@ -1,17 +1,18 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
An extensible system is one that enables extensibility. Enabling extensibility
means providing non-privileged mechanisms to extend existing objects and to
introduce new objects. [[UNIX]] is generally not an extensible system as it does
-not generally facilitate the hooking of system calls. For instance, there is
+not generally facilitate the hooking of [[system call]]s. For instance, there is
no way to hook into the virtual file system. This has motivated the introduction
of separate, parallel interfaces by both the GNOME and KDE projects to provide
users a more integrated view of their objects.
diff --git a/faq/sharing_the_user_space.mdwn b/faq/sharing_the_user_space.mdwn
index 7d09ccc0..ec880827 100644
--- a/faq/sharing_the_user_space.mdwn
+++ b/faq/sharing_the_user_space.mdwn
@@ -15,7 +15,7 @@ everything but the kernel is shared?
*Answer:* Given that both Linux and GNU Hurd are using the [[ELF]] binary
format, this could indeed be made possible, if all programs agreed to rely on
only one abstraction layer, for example the standard C library ([[glibc]]).
-(Additionally, for example for system calls that are not covered by glibc
+(Additionally, for example for [[system call]]s that are not covered by glibc
calls, you'd need to be able to reliably trap and emulate these.) However,
Linux' and the GNU Hurd's [[ABI]]'s have sufficiently diverged, so that this is
not easy to do. That's why you can't currently install a system in this way,
diff --git a/glibc.mdwn b/glibc.mdwn
index f47efc03..2eba3667 100644
--- a/glibc.mdwn
+++ b/glibc.mdwn
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[!meta title="GNU C Library"]]
@@ -31,6 +31,15 @@ Porting glibc to a specific architecture is non-trivial.
# Implementation Details
+ * [[hurd/glibc/Hurd-specific API]]
+
+ * [[open_issues/secure_file_descriptor_handling]]
+
+
+## Individual functions
+
+Some of these are well-known as [[UNIX]] [[system call]]s.
+
* [[environment_variables]]
* [[fork]]
diff --git a/glibc/fork.mdwn b/glibc/fork.mdwn
index c9efd1f4..e8556a91 100644
--- a/glibc/fork.mdwn
+++ b/glibc/fork.mdwn
@@ -8,7 +8,7 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
-On [[Unix]] systems, `fork` is a rather simple system call.
+On [[Unix]] systems, `fork` is a rather simple [[system call]].
Our implementation in [[glibc]] is and needs to be rather bulky.
@@ -22,12 +22,13 @@ which requires a small number of [[RPC]] for each of them.
In sum, [[this affects performance|open_issues/performance/fork]] when new
processes are continuously being spawned from the shell, for example.
-Often, a `fork` call will eventually be followed by an `exec`, which will in
-turn close (most of) the duplicated port rights. Unfortunately, this cannot be
-known at the time the `fork` executing, so the code calling `fork` has to be
-modified, and the `fork`, `exec` combo be replaced by a `posix_spawn` call, for
-example, to avoid this work of duplicating each port right, then closing each
-again.
+Often, a `fork` call will eventually be followed by an `exec`, which [[may in
+turn close|open_issues/secure_file_descriptor_handling]] (most of) the
+duplicated port rights. Unfortunately, this cannot be known at the time the
+`fork` executing, so in order to optimize this, the code calling `fork` has to
+be modified instead, and the `fork`, `exec` combo be replaced by a
+`posix_spawn` call, for example, to avoid this work of duplicating each port
+right, then closing each again.
As far as we know, Cygwin has the same problem of `fork` being a nontrivial
operation. Perhaps we can learn from what they're been doing? Also, perhaps
@@ -51,6 +52,11 @@ they have patches for software packages, to avoid using `fork` followed by
([[!taglink open_issue_glibc]]).
+## Related
+
+ * [[secure file descriptor handling]].
+
+
# External
* [*How fork(2) ought to be*](http://www.greenend.org.uk/rjk/fork.html) by
diff --git a/hurd/glibc/hurd-specific_api.mdwn b/hurd/glibc/hurd-specific_api.mdwn
index aeb63d91..75220279 100644
--- a/hurd/glibc/hurd-specific_api.mdwn
+++ b/hurd/glibc/hurd-specific_api.mdwn
@@ -1,17 +1,18 @@
-[[!meta copyright="Copyright © 2002, 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2002, 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[!meta title="Hurd-specific glibc API"]]
These functions have meaning only under Hurd. They are needed to get port
-names that are used in native Hurd API (the RPC calls to servers). The `.defs`
+names that are used in native Hurd API (the [[RPC]]s to servers). The `.defs`
and `.h` files can be found in `/include/hurd` when all development files are
installed (Debian package `hurd-dev`.) Note that `.defs` are not included in C
programs -- they are used to produce `.h` files.
@@ -157,7 +158,7 @@ programs -- they are used to produce `.h` files.
thread_t
hurd_thread_self (void);
- Return the current thread's thread port. This is a cheap operation (no system call), but it relies on Hurd signal state being set up.
+ Return the current thread's thread port. This is a cheap operation (no [[system call]]), but it relies on Hurd signal state being set up.
error_t
diff --git a/hurd/networking.mdwn b/hurd/networking.mdwn
index ff16eb25..bdf9def2 100644
--- a/hurd/networking.mdwn
+++ b/hurd/networking.mdwn
@@ -1,12 +1,13 @@
-[[!meta copyright="Copyright © 2000, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2000, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
For each supported `PF_*` protocol family, there is a file `/servers/socket/N`
where `N` is the numberic value fo the `PF_*` symbol. Right now
@@ -17,10 +18,10 @@ where `N` is the numberic value fo the `PF_*` symbol. Right now
User programs open those files, and use the `socket_create` [[RPC]] to make a
new socket. With that socket, they can use the other `socket_*` RPCs and also
the `io_*` RPCs. The `socket_*` RPCs are essentially clones of the [[Unix]]
-syscalls in question.
+[[system call]]s in question.
The only exception is `sockaddrs`, which are implemented as [[ports|libports]]
-instead of the opaque data arrays they are in the syscalls. You manipulate
+instead of the opaque data arrays they are in the system calls. You manipulate
`sockaddr` ports with the `socket_create_address`, `socket_fabricate_address`,
and `socket_whatis_address` calls. The `sockaddr` port is then used in socket
calls like `socket_connect` and `socket_accept`.
diff --git a/hurd/ng/microkernelcoyotos.mdwn b/hurd/ng/microkernelcoyotos.mdwn
index cdf4e1bf..2340901d 100644
--- a/hurd/ng/microkernelcoyotos.mdwn
+++ b/hurd/ng/microkernelcoyotos.mdwn
@@ -2,7 +2,9 @@
[Coyotos](http://www.coyotos.org/index.html) is a microkernel and OS and the successor of EROS, that itself is the successor of KeyKOS. A more complete history can be found [here](http://www.coyotos.org/history.html). Its main objectives are to correcte some shortcomings of EROS, demonstrate that an atomic kernel design scales well, and (eventually) to completely formally verify both the kernel and critical system components by writing them in a new language called [bitc](http://www.bitc-lang.org/). [See [l4.verified](http://nicta.com.au/research/projects/l4.verified) for work on formally verifying an L4 microkernel.]
-Coyotos is an orthogonally persistent pure capability system. It uses continuation based unbuffered asynchronous IPC (actually it's synchronous IPC with asynchronous syscalls).
+Coyotos is an orthogonally persistent pure capability system. It uses
+continuation based unbuffered asynchronous IPC (actually it's synchronous IPC
+with asynchronous [[system calls]]).
TODO: explain these terms and (more important) their consequences on system design.
diff --git a/hurd/ng/trivialconfinementvsconstructorvsfork.mdwn b/hurd/ng/trivialconfinementvsconstructorvsfork.mdwn
index 4eeef6ee..0d91dee7 100644
--- a/hurd/ng/trivialconfinementvsconstructorvsfork.mdwn
+++ b/hurd/ng/trivialconfinementvsconstructorvsfork.mdwn
@@ -6,10 +6,11 @@ This comparison is about a simple situation: there is a parent process P, which
# Trivial Confinement
-For trivial confinement, there is a system call to create a process from some memory pages. P performs the following steps:
+For trivial confinement, there is a [[system call]] to create a process from
+some memory pages. P performs the following steps:
* Allocate some memory and put the code image of the child into that memory. This can be done by P, or for example by the file system which then gives the resulting memory (space bank) to P.
-* Perform the system call on that memory. The result is a capability to C.
+* Perform the [[system call]] on that memory. The result is a capability to C.
* Send A to C using the returned capability.
Note that it is up to the implementation of the system what happens with P's access to the memory which holds the child. For example, it is probably a good idea if it is at least unmapped, so it cannot accidentily write things in it. It could even be revoked, so that it can't write things in it, even if it wants to.
@@ -32,7 +33,16 @@ This mechanism is targeted at a specific use pattern, namely that a process is c
# POSIX Fork
-POSIX fork, or rather fork+exec, is how things are done on many current systems. It may be insightful to see it included in the comparison, especially for people who are new to the subject. There are two system calls, fork and exec. Fork will create a clone of the current process, including all the capabilities (that is, file descriptors) of the parent (except the ones which have explicitly been excluded). Exec is a system call which really goes to the filesystem, not the kernel (although on systems which use it, the filesystem usually resides in the kernel), and asks it to spawn a new process from the contents of a certain path in place of the caller. This passes all capabilities to the new process. The procedure is:
+POSIX fork, or rather fork+exec, is how things are done on many current
+systems. It may be insightful to see it included in the comparison, especially
+for people who are new to the subject. There are two [[system call]]s, fork and
+exec. Fork will create a clone of the current process, including all the
+capabilities (that is, file descriptors) of the parent (except the ones which
+have explicitly been excluded). Exec is a [[system call]] which really goes to
+the filesystem, not the kernel (although on systems which use it, the
+filesystem usually resides in the kernel), and asks it to spawn a new process
+from the contents of a certain path in place of the caller. This passes all
+capabilities to the new process. The procedure is:
* P calls fork(), creating P'.
* P' drops B.
@@ -67,7 +77,7 @@ Except for the control, there is really only one other difference, and that's ad
What it doesn't do is protect the code image against bugs in P. In the constructor the trusted and well-tested constructor code is handling the image, for trivial confinement the (very possibly) buggy program P. In particular, when starting a program from a file system, with trivial confinement the operation is:
* Ask the file system for the code, receive a capability to a space bank with a copy (on write) of it.
-* Make the system call to turn it into a program.
+* Make the [[system call]] to turn it into a program.
Now this isn't much more complicated than the constructor which does:
diff --git a/hurd/translator/wishlist_2.mdwn b/hurd/translator/wishlist_2.mdwn
index a927db55..77f39644 100644
--- a/hurd/translator/wishlist_2.mdwn
+++ b/hurd/translator/wishlist_2.mdwn
@@ -70,7 +70,17 @@ Here's an [idea](http://www.circlemud.org/~jelson/software/fusd/docs/node13.html
* "One particularly interesting application of FUSD that we've found very useful is as a way to let regular user-space libraries export device file APIs. For example, imagine you had a library which factored large composite numbers. Typically, it might have a C interface--say, a function called `int *factorize(int bignum)`. With FUSD, it's possible to create a device file interface--say, a device called `/dev/factorize` to which clients can `write(2)` a big number, then `read(2)` back its factors.
-* This may sound strange, but device file APIs have at least three advantages over a typical library API. First, it becomes much more language independent--any language that can make system calls can access the factorization library. Second, the factorization code is running in a different address space; if it crashes, it won't crash or corrupt the caller. Third, and most interestingly, it is possible to use `select(2)` to wait for the factorization to complete. `select(2)` would make it easy for a client to factor a large number while remaining responsive to other events that might happen in the meantime. In other words, FUSD allows normal user-space libraries to integrate seamlessly with UNIX's existing, POSIX-standard event notification interface: `select(2)`."
+* This may sound strange, but device file APIs have at least three advantages
+ over a typical library API. First, it becomes much more language
+ independent--any language that can make [[system call]]s can access the
+ factorization library. Second, the factorization code is running in a
+ different address space; if it crashes, it won't crash or corrupt the
+ caller. Third, and most interestingly, it is possible to use `select(2)` to
+ wait for the factorization to complete. `select(2)` would make it easy for a
+ client to factor a large number while remaining responsive to other events
+ that might happen in the meantime. In other words, FUSD allows normal
+ user-space libraries to integrate seamlessly with UNIX's existing,
+ POSIX-standard event notification interface: `select(2)`."
## Mail
diff --git a/qemu.mdwn b/qemu.mdwn
index 19b5fb9f..d7cea5ad 100644
--- a/qemu.mdwn
+++ b/qemu.mdwn
@@ -1,13 +1,13 @@
-[[!meta copyright="Copyright © 2005, 2007, 2008, 2009 Free Software Foundation,
-Inc."]]
+[[!meta copyright="Copyright © 2005, 2007, 2008, 2009, 2010 Free Software
+Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
QEMU is free software written by Fabrice Bellard that implements a fast
processor [[emulator|emulation]], allowing a user to run one operating system
@@ -19,8 +19,8 @@ reasonable speed while being easy to port on new host CPUs.
QEMU has two operating modes:
* User mode emulation: QEMU can launch Linux processes compiled for one CPU
- on another CPU. Linux system calls are converted because of endianness and
- 32/64 bit mismatches. Wine and Dosemu are the main targets for QEMU.
+ on another CPU. Linux [[system call]]s are converted because of endianness
+ and 32/64 bit mismatches. Wine and Dosemu are the main targets for QEMU.
* System mode emulation: QEMU emulates a full system, including a processor
and various peripherials. It enables easier testing and debugging of
diff --git a/system_call.mdwn b/system_call.mdwn
new file mode 100644
index 00000000..197889cb
--- /dev/null
+++ b/system_call.mdwn
@@ -0,0 +1,19 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+In an [[UNIX]]-like system, a *system call* (*syscall*) is used to request all
+kinds of functionality from the operating system kernel.
+
+A [[microkernel]]-based system typically won't offer a lot of system calls --
+apart from one central one, and that is *send message* -- but instead [[RPC]]s
+will be used instead.
+
+In the [[GNU Hurd|hurd]], a lot of what is traditionlly considered to be a UNIX
+system call is implemented (primarily by means of [[RPC]]) inside [[glibc]].
--
cgit v1.2.3
From b4a020824706ddfd9c1c38fb08d6935fa8e8cde3 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 29 Nov 2010 17:08:30 +0100
Subject: open_issues/wine: New.
---
open_issues/wine.mdwn | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
create mode 100644 open_issues/wine.mdwn
diff --git a/open_issues/wine.mdwn b/open_issues/wine.mdwn
new file mode 100644
index 00000000..85d35c9c
--- /dev/null
+++ b/open_issues/wine.mdwn
@@ -0,0 +1,21 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_porting]]
+
+On 2010-11-28, Austin English contacted us, stating that he's working on
+porting [Wine](http://winehq.org/) to the GNU/Hurd.
+
+It is not yet clear how difficult this is going to be, what sort of
+requirements Wine has: only libc / POSIX / etc., or if there are
+*advanced* things like [[system_call]] trapping involved, too.
+
+[[Samuel|samuelthibault]] suspects that *there's some need for LDT table
+allocation. There is kernel support for this,* however.
--
cgit v1.2.3
From cd782d77c1e90976cb6dacf6ba78ba762f145a50 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 30 Nov 2010 10:39:28 +0100
Subject: Been reading another LWN issue...
---
capability.mdwn | 14 ++--
community/gsoc/project_ideas.mdwn | 2 +-
community/gsoc/project_ideas/valgrind.mdwn | 80 ----------------------
glibc.mdwn | 9 ++-
glibc/fallocate.mdwn | 17 +++++
glibc/fork.mdwn | 18 +++--
glibc/signals.mdwn | 32 +++++++++
hurd/glibc/hurd-specific_api.mdwn | 8 ++-
hurd/ng/trivialconfinementvsconstructorvsfork.mdwn | 24 ++++---
hurd/translator/magic.mdwn | 11 +--
open_issues/code_analysis.mdwn | 12 +++-
open_issues/debugging.mdwn | 16 +++--
open_issues/multithreading.mdwn | 4 +-
open_issues/nightly_builds_deb_packages.mdwn | 6 ++
open_issues/secure_file_descriptor_handling.mdwn | 9 +++
open_issues/unit_testing.mdwn | 9 ++-
open_issues/valgrind.mdwn | 80 ++++++++++++++++++++++
persistency.mdwn | 11 +--
unix.mdwn | 48 +++++++++++--
unix/file_descriptor.mdwn | 13 ++++
virtualization.mdwn | 7 +-
21 files changed, 296 insertions(+), 134 deletions(-)
delete mode 100644 community/gsoc/project_ideas/valgrind.mdwn
create mode 100644 glibc/fallocate.mdwn
create mode 100644 glibc/signals.mdwn
create mode 100644 open_issues/valgrind.mdwn
create mode 100644 unix/file_descriptor.mdwn
diff --git a/capability.mdwn b/capability.mdwn
index 367ea163..d78810d5 100644
--- a/capability.mdwn
+++ b/capability.mdwn
@@ -1,12 +1,13 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
A capability is a protected reference. It is a reference in that
it designates an object; it is protected in that in cannot be
@@ -27,7 +28,6 @@ sent a string to identify the file to B, the identifier lacks a
than A intended. Be ensuring that [[designation]] and [[authorization]] are
always bound together, these problems are avoided.
-[[Unix]] file descriptors can be viewed as capabilities. Unix file
-descriptors do not survive reboot, that is, they are not
-[[persistent|persistency]]. To work around this, [[ACL]]s are used to
-recover authority.
+[[UNIX file descriptors|unix/file_descriptor]] can be viewed as capabilities.
+They do not survive reboot, that is, they are not [[persistent|persistency]].
+To work around this, [[ACL]]s are used to recover authority.
diff --git a/community/gsoc/project_ideas.mdwn b/community/gsoc/project_ideas.mdwn
index b039608f..649e05c1 100644
--- a/community/gsoc/project_ideas.mdwn
+++ b/community/gsoc/project_ideas.mdwn
@@ -106,4 +106,4 @@ See also the list of [Hurd-related X.org project ideas](http://wiki.x.org/wiki/H
[[!inline pages="community/gsoc/project_ideas/testsuites" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/libcap" show=0 feeds=no actions=yes]]
[[!inline pages="community/gsoc/project_ideas/xattr" show=0 feeds=no actions=yes]]
-[[!inline pages="community/gsoc/project_ideas/valgrind" show=0 feeds=no actions=yes]]
+[[!inline pages="open_issues/valgrind" show=0 feeds=no actions=yes]]
diff --git a/community/gsoc/project_ideas/valgrind.mdwn b/community/gsoc/project_ideas/valgrind.mdwn
deleted file mode 100644
index 7d68e82d..00000000
--- a/community/gsoc/project_ideas/valgrind.mdwn
+++ /dev/null
@@ -1,80 +0,0 @@
-[[!meta copyright="Copyright © 2009, 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-[[!meta title="Porting Valgrind to the Hurd"]]
-
-[Valgrind](http://valgrind.org/) is an extremely useful debugging tool for memory errors.
-(And some other kinds of hard-to-find errors too.)
-Aside from being useful for program development in general,
-a Hurd port will help finding out why certain programs segfault on the Hurd,
-although they work on Linux.
-Even more importantly, it will help finding bugs in the Hurd servers themselfs.
-
-To keep track of memory use,
-Valgrind however needs to know how each [[system call]] affects the validity of memory regions.
-This knowledge is highly kernel-specific,
-and thus Valgrind needs to be explicitely ported for every system.
-
-Such a port involves two major steps:
-making Valgrind understand how kernel traps work in general on the system in question;
-and how all the individual kernel calls affect memory.
-The latter step is where most of the work is,
-as the behaviour of each single [[system call]] needs to be described.
-
-Compared to Linux,
-Mach (the microkernel used by the Hurd) has very few kernel traps.
-Almost all [[system call]]s are implemented as RPCs instead --
-either handled by Mach itself, or by the various Hurd servers.
-All RPCs use a pair of mach\_msg() invocations:
-one to send a request message, and one to receive a reply.
-However, while all RPCs use the same mach\_msg() trap,
-the actual effect of the call varies greatly depending on which RPC is invoked --
-similar to the ioctl() call on Linux.
-Each request thus must be handled individually.
-
-Unlike ioctl(),
-the RPC invocations have explicit type information for the parameters though,
-which can be retrieved from the message header.
-By analyzing the parameters of the RPC reply message,
-Valgrind can know exactly which memory regions are affected by that call,
-even without specific knowledge of the RPC in question.
-Thus implementing a general parser for the reply messages
-will already give Valgrind a fairly good approximation of memory validity --
-without having to specify the exact semantic of each RPC by hand.
-
-While this should make Valgrind quite usable on the Hurd already, it's not perfect:
-some RPCs might return a buffer that is only partially filled with valid data;
-or some reply parameters might be optional,
-and only contain valid data under certain conditions.
-Such specific semantics can't be deduced from the message headers alone.
-Thus for a complete port,
-it will still be necessary to go through the list of all known RPCs,
-and implement special handling in Valgrind for those RPCs that need it.
-
-The goal of this task is at minimum to make Valgrind grok Mach traps,
-and to implement the generic RPC handler.
-Ideally, specific handling for RPCs needing it should also be implemented.
-
-Completing this project will require digging into Valgrind's handling of [[system call]]s,
-and into Hurd RPCs.
-It is not an easy task, but a fairly predictable one --
-there shouldn't be any unexpected difficulties,
-and no major design work is necessary.
-It doesn't require any specific previous knowledge:
-only good programming skills in general.
-On the other hand,
-the student will obtain a good understanding of Hurd RPCs while working on this task,
-and thus perfect qualifications for Hurd development in general :-)
-
-Possible mentors: Samuel Thibault (youpi)
-
-Exercise: As a starter,
-students can try to teach valgrind a couple of Linux ioctls,
-as this will make them learn how to use the read/write primitives of valgrind.
diff --git a/glibc.mdwn b/glibc.mdwn
index 2eba3667..124216d9 100644
--- a/glibc.mdwn
+++ b/glibc.mdwn
@@ -36,11 +36,18 @@ Porting glibc to a specific architecture is non-trivial.
* [[open_issues/secure_file_descriptor_handling]]
+## Concepts
+
+ * [[environment_variables]]
+
+ * [[signals]]
+
+
## Individual functions
Some of these are well-known as [[UNIX]] [[system call]]s.
- * [[environment_variables]]
+ * [[fallocate]]
* [[fork]]
diff --git a/glibc/fallocate.mdwn b/glibc/fallocate.mdwn
new file mode 100644
index 00000000..3aecf16b
--- /dev/null
+++ b/glibc/fallocate.mdwn
@@ -0,0 +1,17 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+Not yet implemented for the GNU Hurd in [[glibc]].
+
+
+# External
+
+ * [*Punching holes in files*](http://lwn.net/Articles/415889/), Jonathan
+ Corbet, 2010-11-17.
diff --git a/glibc/fork.mdwn b/glibc/fork.mdwn
index e8556a91..378fe835 100644
--- a/glibc/fork.mdwn
+++ b/glibc/fork.mdwn
@@ -14,10 +14,10 @@ Our implementation in [[glibc]] is and needs to be rather bulky.
For example, it has to duplicate all port rights for the new [[Mach
task|microkernel/mach/task]]. The address space can simply be duplicated by
-standard means of the [[microkernel/Mach]], but as [[file descriptor]]s (for
-example) are a concept that is implemented inside [[glibc]] (based on [[Mach
-port|microkernel/mach/port]]s), these have to be duplicated from userspace,
-which requires a small number of [[RPC]] for each of them.
+standard means of the [[microkernel/Mach]], but as [[unix/file_descriptor]]s
+(for example) are a concept that is implemented inside [[glibc]] (based on
+[[Mach port|microkernel/mach/port]]s), these have to be duplicated from
+userspace, which requires a small number of [[RPC]] for each of them.
In sum, [[this affects performance|open_issues/performance/fork]] when new
processes are continuously being spawned from the shell, for example.
@@ -43,7 +43,7 @@ they have patches for software packages, to avoid using `fork` followed by
([[!taglink open_issue_glibc]]).
* Include de-duplicate information from elsewhere: [[hurd-paper]],
- [[hurd-talk]] [[hurd/ng/trivialconfinementvsconstructorvsfork]],
+ [[hurd-talk]], [[hurd/ng/trivialconfinementvsconstructorvsfork]],
[[open_issues/resource_management_problems/zalloc_panics]] ([[!taglink
open_issue_glibc open_issue_documentation]]).
@@ -54,13 +54,11 @@ they have patches for software packages, to avoid using `fork` followed by
## Related
- * [[secure file descriptor handling]].
+ * [[open_issues/secure_file_descriptor_handling]].
# External
- * [*How fork(2) ought to be*](http://www.greenend.org.uk/rjk/fork.html) by
- Richard Kettlewell.
+ * {{$unix#djb_self-pipe}}.
- * [*The self-pipe trick*](http://cr.yp.to/docs/selfpipe.html) by
- D. J. Bernstein.
+ * {{$unix#rjk_fork}}.
diff --git a/glibc/signals.mdwn b/glibc/signals.mdwn
new file mode 100644
index 00000000..40fdc0e1
--- /dev/null
+++ b/glibc/signals.mdwn
@@ -0,0 +1,32 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+*[[UNIX]] signals* are a means to asynchronously invoke a specific function
+(*signal handler*). This may impact on [[system call]]s that are executing at
+the same time in that they may be completely aborted, return incomplete
+results, scheduled for restarting, or cause signal delivery to be blocked upon
+the system call's completion.
+
+An explanation can be found in the relevant standards, an overview, including
+UNIX signals' deficiencies is given in {{$unix#2010_brown_ghosts_3}}, for
+example.
+
+The UNIX signalling mechanism is implemented for the GNU Hurd by means of a
+separate signal-handling thread that is part of every process. This makes
+handling of signals a separate thread of control.
+
+ * [[SA_SIGINFO, SA_SIGACTION|open_issues/sa_siginfo_sa_sigaction]]
+
+
+# External
+
+ * {{$unix#djb_self-pipe}}.
+
+ * {{$unix#rjk_fork}}.
diff --git a/hurd/glibc/hurd-specific_api.mdwn b/hurd/glibc/hurd-specific_api.mdwn
index 75220279..7ead63cd 100644
--- a/hurd/glibc/hurd-specific_api.mdwn
+++ b/hurd/glibc/hurd-specific_api.mdwn
@@ -82,7 +82,13 @@ programs -- they are used to produce `.h` files.
openport (io_t port, int flags);
- Open a file descriptor on a port. FLAGS are as for open; flags affected by io_set_openmodes are not changed by this. If successful, this consumes a user reference for PORT (which will be deallocated on close.) See <hurd/io.defs> and <hurd/io.h>.
+ Open a [[unix/file_descriptor]] on a [[microkernel/mach/port]]. FLAGS
+ are as for open; flags affected by io_set_openmodes are
+ not changed by this. If successful, this consumes a user reference for
+ PORT (which will be deallocated on close.) See
+ <hurd/io.defs> and
+ <hurd/io.h>.
+
task_t
diff --git a/hurd/ng/trivialconfinementvsconstructorvsfork.mdwn b/hurd/ng/trivialconfinementvsconstructorvsfork.mdwn
index 0d91dee7..949895e7 100644
--- a/hurd/ng/trivialconfinementvsconstructorvsfork.mdwn
+++ b/hurd/ng/trivialconfinementvsconstructorvsfork.mdwn
@@ -34,15 +34,15 @@ This mechanism is targeted at a specific use pattern, namely that a process is c
# POSIX Fork
POSIX fork, or rather fork+exec, is how things are done on many current
-systems. It may be insightful to see it included in the comparison, especially
-for people who are new to the subject. There are two [[system call]]s, fork and
-exec. Fork will create a clone of the current process, including all the
-capabilities (that is, file descriptors) of the parent (except the ones which
-have explicitly been excluded). Exec is a [[system call]] which really goes to
-the filesystem, not the kernel (although on systems which use it, the
-filesystem usually resides in the kernel), and asks it to spawn a new process
-from the contents of a certain path in place of the caller. This passes all
-capabilities to the new process. The procedure is:
+systems. It may be insightful to see it included in the comparison, especially
+for people who are new to the subject. There are two [[system call]]s, fork
+and exec. Fork will create a clone of the current process, including all the
+capabilities (that is, [[unix/file_descriptor]]s) of the parent (except the
+ones which have explicitly been excluded). Exec is a [[system call]] which
+really goes to the filesystem, not the kernel (although on systems which use
+it, the filesystem usually resides in the kernel), and asks it to spawn a new
+process from the contents of a certain path in place of the caller. This
+passes all capabilities to the new process. The procedure is:
* P calls fork(), creating P'.
* P' drops B.
@@ -62,7 +62,11 @@ In contrast, the other two options don't pass anything by default. If there is a
The problem of fork+exec can be solved. It is if the default would be to not pass capabilities to the new process, but specify a list of capabilities that it should keep, or (like in the other cases) pass them over a new channel which is implicitly created during the fork. However, in that case the only difference with trivial confinement is that P' dies in the process (and thus must be created to prevent P from dying). Almost any use of exec is in practice preceded by a fork for this purpose. It would be easier to make trivial confinement the default operation and let P die directly after it in the rare case that it should.
-The only reason for continuing to use fork+exec would be that it is what existing programs do. However, they break anyway if they need to specify which file descriptors to pass. So they need to be adapted. Therefore, it's better to make the usual spawning method the primitive one, and emulate the other.
+The only reason for continuing to use fork+exec would be that it is what
+existing programs do. However, they break anyway if they need to specify which
+[[unix/file_descriptor]]s to pass. So they need to be adapted. Therefore, it's
+better to make the usual spawning method the primitive one, and emulate the
+other.
# Trivial Confinement vs Constructor
diff --git a/hurd/translator/magic.mdwn b/hurd/translator/magic.mdwn
index 06ee798b..84bacdfb 100644
--- a/hurd/translator/magic.mdwn
+++ b/hurd/translator/magic.mdwn
@@ -1,20 +1,21 @@
-[[!meta copyright="Copyright © 2006, 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2006, 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
The magic translator provides `/dev/fd`.
$ showtrans /dev/fd
/hurd/magic --directory fd
-The `/dev/fd` directory holds the open file descriptors for your current
-process. You can't see them with `ls -l /dev/fd/` but you can see them
+The `/dev/fd` directory holds the open [[unix/file_descriptor]]s for your
+current process. You can't see them with `ls -l /dev/fd/` but you can see them
individually like this:
$ ls -l /dev/fd/0
diff --git a/open_issues/code_analysis.mdwn b/open_issues/code_analysis.mdwn
index 98447e98..ad104e68 100644
--- a/open_issues/code_analysis.mdwn
+++ b/open_issues/code_analysis.mdwn
@@ -8,7 +8,7 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
-There is static and dynamic code analysis.
+There is static and dynamic code analysis. This overlaps with [[debugging]].
* [[GCC]]'s warnings. Yes, really.
@@ -29,3 +29,13 @@ There is static and dynamic code analysis.
*
*
+
+ * [[Valgrind]]
+
+ *
+
+ *
+
+ *
+
+ *
diff --git a/open_issues/debugging.mdwn b/open_issues/debugging.mdwn
index 95b7bf9b..e66a086f 100644
--- a/open_issues/debugging.mdwn
+++ b/open_issues/debugging.mdwn
@@ -18,7 +18,7 @@ We have debugging infrastructure. For example:
* [[GNU Mach debugging|microkernel/mach/gnumach/debugging]]
* [[GNU Hurd debugging|hurd/debugging]], including
- [[hurd/debugging/rpctrace]] and more.
+ [[hurd/debugging/rpctrace]], and more.
# To Do
@@ -29,14 +29,20 @@ We have debugging infrastructure. For example:
* [[profiling]]
- * *[Checkpoint/restart](http://lwn.net/Articles/412749/) allows the state of
- a set of processes to be saved to persistent storage, then restarted at
- some future time* -- quoting from Jonathan Corbet's 2010 Linux Kernel
- Summit report.
+ * *Checkpoint/restart allows the state of a set of processes to be saved to
+ persistent storage, then restarted at some future time* -- quoting from
+ Jonathan Corbet's [2010 Linux Kernel Summit
+ report](http://lwn.net/Articles/412749/).
This is surely a very useful facility to have for reproducing failures, for
example. But on the other hand it's questionable how it can help with
debugging failures in [[GNU Hurd server|hurd/translator]]s' interactions,
as their state is typically spread between several processes.
+ Continues: , which introduces
+ .
+
* [[locking]]
+
+ * , or --
+ just two examples; there's a lot of such stuff for Linux.
diff --git a/open_issues/multithreading.mdwn b/open_issues/multithreading.mdwn
index 81b96280..170734fd 100644
--- a/open_issues/multithreading.mdwn
+++ b/open_issues/multithreading.mdwn
@@ -22,9 +22,11 @@ Alternative approaches:
* Continuation-passing style
+ * [[Erlang-style_parallelism]]
+
* [libtcr - Threaded Coroutine Library](http://oss.linbit.com/libtcr/)
- * [[Erlang-style_parallelism]]
+ *
---
diff --git a/open_issues/nightly_builds_deb_packages.mdwn b/open_issues/nightly_builds_deb_packages.mdwn
index 29219c2a..9f5e2373 100644
--- a/open_issues/nightly_builds_deb_packages.mdwn
+++ b/open_issues/nightly_builds_deb_packages.mdwn
@@ -18,4 +18,10 @@ packages.
---
+There is infrastructure available to test whole OS installations.
+
+ *
+
+---
+
See also [[nightly_builds]].
diff --git a/open_issues/secure_file_descriptor_handling.mdwn b/open_issues/secure_file_descriptor_handling.mdwn
index c9956ede..1a514e69 100644
--- a/open_issues/secure_file_descriptor_handling.mdwn
+++ b/open_issues/secure_file_descriptor_handling.mdwn
@@ -8,7 +8,16 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
+[[!tag open_issue_glibc]]
+
`O_CLOEXEC`, `dup3` et al.; see
. [[tschwinge]] once worked
on this, posted patches to libc-alpha. This works needs to be resumed
and finished.
+
+---
+
+In an interesting point is made: *you [may]
+want some [[unix/file_descriptor]] to still be open if 'exec' fails, but you
+don't want it to be open after the exec succeeds*. [[I|tschwinge]]'m not sure
+whether our current `O_CLOEXEC` implementation adheres to that.
diff --git a/open_issues/unit_testing.mdwn b/open_issues/unit_testing.mdwn
index 80a2860a..d50f5f6d 100644
--- a/open_issues/unit_testing.mdwn
+++ b/open_issues/unit_testing.mdwn
@@ -46,7 +46,14 @@ abandoned).
* [*[ANNOUNCE] ktest.pl: Easy and flexible testing script for Linux Kernel
Developers*](http://lwn.net/Articles/412302/) by Steven Rostedt,
- 2010-10-28.
+ 2010-10-28. [v2](http://lwn.net/Articles/414064/), 2010-11-08.
+
+
+# Related
+
+ * [[nightly_builds]]
+
+ * [[nightly_builds_deb_packages]]
* -- ``comprehensive testing and
benchmarking platform''. This one might be useful for [[performance]]
diff --git a/open_issues/valgrind.mdwn b/open_issues/valgrind.mdwn
new file mode 100644
index 00000000..2b0624d7
--- /dev/null
+++ b/open_issues/valgrind.mdwn
@@ -0,0 +1,80 @@
+[[!meta copyright="Copyright © 2009, 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="Porting Valgrind to the Hurd"]]
+
+[Valgrind](http://valgrind.org/) is an extremely useful debugging tool for memory errors.
+(And some other kinds of hard-to-find errors too.)
+Aside from being useful for program development in general,
+a Hurd port will help finding out why certain programs segfault on the Hurd,
+although they work on Linux.
+Even more importantly, it will help finding bugs in the Hurd servers themselfs.
+
+To keep track of memory use,
+Valgrind however needs to know how each [[system call]] affects the validity of memory regions.
+This knowledge is highly kernel-specific,
+and thus Valgrind needs to be explicitely ported for every system.
+
+Such a port involves two major steps:
+making Valgrind understand how kernel traps work in general on the system in question;
+and how all the individual kernel calls affect memory.
+The latter step is where most of the work is,
+as the behaviour of each single [[system call]] needs to be described.
+
+Compared to Linux,
+[[microkernel/Mach]] (the microkernel used by the Hurd) has very few kernel traps.
+Almost all [[system call]]s are implemented as [[RPC]]s instead --
+either handled by Mach itself, or by the various [[Hurd servers|hurd/translator]].
+All RPCs use a pair of `mach_msg` invocations:
+one to send a request message, and one to receive a reply.
+However, while all RPCs use the same `mach_msg` trap,
+the actual effect of the call varies greatly depending on which RPC is invoked --
+similar to the `ioctl` call on Linux.
+Each request thus must be handled individually.
+
+Unlike `ioctl`,
+the RPC invocations have explicit type information for the parameters though,
+which can be retrieved from the message header.
+By analyzing the parameters of the RPC reply message,
+Valgrind can know exactly which memory regions are affected by that call,
+even without specific knowledge of the RPC in question.
+Thus implementing a general parser for the reply messages
+will already give Valgrind a fairly good approximation of memory validity --
+without having to specify the exact semantic of each RPC by hand.
+
+While this should make Valgrind quite usable on the Hurd already, it's not perfect:
+some RPCs might return a buffer that is only partially filled with valid data;
+or some reply parameters might be optional,
+and only contain valid data under certain conditions.
+Such specific semantics can't be deduced from the message headers alone.
+Thus for a complete port,
+it will still be necessary to go through the list of all known RPCs,
+and implement special handling in Valgrind for those RPCs that need it.
+
+The goal of this task is at minimum to make Valgrind grok Mach traps,
+and to implement the generic RPC handler.
+Ideally, specific handling for RPCs needing it should also be implemented.
+
+Completing this project will require digging into Valgrind's handling of [[system call]]s,
+and into Hurd RPCs.
+It is not an easy task, but a fairly predictable one --
+there shouldn't be any unexpected difficulties,
+and no major design work is necessary.
+It doesn't require any specific previous knowledge:
+only good programming skills in general.
+On the other hand,
+the student will obtain a good understanding of Hurd RPCs while working on this task,
+and thus perfect qualifications for Hurd development in general :-)
+
+Possible mentors: Samuel Thibault (youpi)
+
+Exercise: As a starter,
+students can try to teach valgrind a couple of Linux ioctls,
+as this will make them learn how to use the read/write primitives of valgrind.
diff --git a/persistency.mdwn b/persistency.mdwn
index f5347a4e..36f90c8a 100644
--- a/persistency.mdwn
+++ b/persistency.mdwn
@@ -1,18 +1,19 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
A persistent object is an object that survives reboot.
On [[Unix]], files and directories are persistent but
-processes and file descriptors are not. [[microkernel/EROS]] is
+processes and [[unix/file_descriptor]]s are not. [[microkernel/EROS]] is
an example of an orthogonally persistent system:
-processes and capabilities also survive reboot. To a
+processes and [[capabilities|capability]] also survive reboot. To a
process, it generally only looks as if it had not been
scheduled for a long time; the rest of its environment
remains essentially the indistinguishable.
diff --git a/unix.mdwn b/unix.mdwn
index 601b36d1..bf361e2e 100644
--- a/unix.mdwn
+++ b/unix.mdwn
@@ -19,9 +19,49 @@ License|/fdl]]."]]"""]]
UNIX*](http://www.informit.com/articles/printerfriendly.aspx?p=691503), an
article by David Chisnall.
- * [*Ghosts of Unix Past: a historical search for design
- patterns*](http://lwn.net/Articles/411845/) (2010-10-27) by Neil Brown,
- including file descriptors and the single, hierarchical namespace.
+ * The first in the series, {{$2010_brown_ghosts_1}} introduces the concepts
+ of [[file_descriptor]]s and the single, hierarchical [[namespace]].
+
+ Next, {{$2010_brown_ghosts_2}} discusses issues with *conflated designs*
+ such as the `mount` command (a problem we have partly solved / solved
+ differently with our [[hurd/translator]] approach and the
+ [[hurd/virtual_file_system]]), and the plethora of flags that can be passed
+ to the `open` [[system_call]].
+
+ In {{$2010_brown_ghosts_3}}, he deals with *unfixable designs*, such as
+ [[UNIX signals|glibc/signals]] and the *UNIX permission model* (which is
+ clearly inferior to a [[capability]]-based system).
* [*UNIX File Permissions*](http://www.greenend.org.uk/rjk/2004/perms.html)
- (2004) by Richard Kettlewell.
+ (2004) by Richard Kettlewell. ([[!taglink open_issue_documentation]])
+
+
+[[!ymlfront data="""
+
+djb_self-pipe:
+
+ D. J. Bernstein's [*self-pipe trick*](http://cr.yp.to/docs/selfpipe.html)
+
+rjk_fork:
+
+ Richard Kettlewell's suggestions about [*how fork(2) ought to
+ be*](http://www.greenend.org.uk/rjk/fork.html)
+
+2010_brown_ghosts_1:
+
+ "Neil Brown's 2010-10-27 article [*Ghosts of Unix Past: a historical search
+ for design patterns*](http://lwn.net/Articles/411845/)"
+
+2010_brown_ghosts_2:
+
+ "Neil Brown's 2010-11-04 article [*Ghosts of Unix past, part 2: Conflated
+ designs*](http://lwn.net/Articles/412131/)"
+
+2010_brown_ghosts_3:
+
+ "Neil Brown's 2010-11-16 article [*Ghosts of Unix past, part 3: Unfixable
+ designs*](http://lwn.net/Articles/414618/)"
+
+"""]]
diff --git a/unix/file_descriptor.mdwn b/unix/file_descriptor.mdwn
new file mode 100644
index 00000000..16e03fdf
--- /dev/null
+++ b/unix/file_descriptor.mdwn
@@ -0,0 +1,13 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+A *file descriptor* is a [[concept]] of [[UNIX]], and represents a
+non-[[persistent|persistency]] handle to an object (a file, for example). With
+respect to specific aspects, it is comparable to a [[capability]].
diff --git a/virtualization.mdwn b/virtualization.mdwn
index 3a207ae8..78457eb9 100644
--- a/virtualization.mdwn
+++ b/virtualization.mdwn
@@ -6,8 +6,11 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+ * [[hurd/virtualization]] in the GNU Hurd's context.
+
# External
--
cgit v1.2.3
From 97c59e4e2647caa13e0f010a3b37319551983b7c Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 1 Dec 2010 20:00:58 +0100
Subject: open_issues/screen_dead_session: New.
---
open_issues/screen.mdwn | 6 ++++-
open_issues/screen_dead_session.mdwn | 45 ++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+), 1 deletion(-)
create mode 100644 open_issues/screen_dead_session.mdwn
diff --git a/open_issues/screen.mdwn b/open_issues/screen.mdwn
index 6ece5c40..e0394f0d 100644
--- a/open_issues/screen.mdwn
+++ b/open_issues/screen.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2009, 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -114,3 +114,7 @@ TODO: check.
# endif
TODO: check.
+
+---
+
+ * [[screen_dead_session]]
diff --git a/open_issues/screen_dead_session.mdwn b/open_issues/screen_dead_session.mdwn
new file mode 100644
index 00000000..cdd3f322
--- /dev/null
+++ b/open_issues/screen_dead_session.mdwn
@@ -0,0 +1,45 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_porting]]
+
+Comparing to GNU/Linux, on GNU/Hurd it happens much more often and easily for
+*screen* sessions to become *dead*. This is annoying, as it defeats one of
+*screen*'s main purposes.
+
+One reproducible scenario goes like this:
+
+ * `ssh [somewhere]`,
+
+ * start a *screen* session, and some long-running process *P* in there,
+
+ * at some point the link is forcefully terminated (also known as disconnect
+ after 24 hours with consumer DSL),
+
+ * *P* will continue to execute,
+
+ * at some point, *P* will terminate / hang (after having received some kind
+ of signal?), and the *screen* session will be reported as *dead*.
+
+Another one, not as often reproduced:
+
+ * `ssh [somewhere]`,
+
+ * start a *screen* session, and some long-running process *P* in there,
+
+ * at some point the link is forcefully terminated (also known as disconnect
+ after 24 hours with consumer DSL),
+
+ * `ssh [somewhere]`,
+
+ * `screen -x`, and notice that *P* will *immediatelly* terminate / hang
+ (after having received some kind of signal?), and the *screen* session will
+ *immediatelly* be reported as *dead*. (Perhaps the other way round: upon
+ re-attaching, the *screen* session goes bonkers and takes *P* with it?)
--
cgit v1.2.3
From 46b77fd2236b97c9d9c7ecd9a86b7d1ee9cd2527 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 5 Dec 2010 18:22:15 +0100
Subject: microkernel/viengoos: Update status.
Mostly from Neal Walfield's 2010-12-05 email to .
---
challenges.mdwn | 5 ++++-
microkernel/viengoos.mdwn | 21 ++++++++++++++++-----
2 files changed, 20 insertions(+), 6 deletions(-)
diff --git a/challenges.mdwn b/challenges.mdwn
index 5368ae4e..a3a8a7e6 100644
--- a/challenges.mdwn
+++ b/challenges.mdwn
@@ -10,12 +10,15 @@ License|/fdl]]."]]"""]]
The GNU Hurd has a lot of [[advantages]], but there are challenges, too.
+Some of these are explained in the [[hurd/critique]].
+
Even though they're quite popular in the simpler embedded space, there is no
successful true multi-server [[microkernel]] system for general-purpose desktop
use yet. This is still an ongoing research effort. (TODO: add references.)
Likewise, resource scheduling in distributed operating system kernels is a
research topic. For example, read more about it on the relevant [[Open Issues
-page|open_issues/multiprocessing]].
+page|open_issues/multiprocessing]]. Also, the [[microkernel/Viengoos]]
+research kernel project strives to explore these.
TODO: more to come. [[!tag open_issue_documentation]]
diff --git a/microkernel/viengoos.mdwn b/microkernel/viengoos.mdwn
index 2b9fee03..66c6ff36 100644
--- a/microkernel/viengoos.mdwn
+++ b/microkernel/viengoos.mdwn
@@ -1,15 +1,26 @@
-[[!meta copyright="Copyright © 2008, 2009 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2008, 2009, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
-*viengoos* is a new kernel currently being designed and written by Neal
-Walfield.
+*Viengoos* is a research kernel, designed and written by Neal Walfield.
+
+As of late 2009, the project is on hold, due to time constraints.
+
+Viengoos is not really meant to be a successor to [[Mach]]. It is highly
+experimental; some of the techniques it employs, in particular, those related
+to [[memory_management]] and [[IPC]], are unproven. These were motivated by
+[[shortcomings_in_Mach|hurd/critique]] as well as current operating systems. A
+research system is unlikely the best base for a product. A better approach is
+to view Viengoos as an experimental platform whose goal is to explore solutions
+to some of the [[issues_uncovered_by_the_Hurd|challenges]]. Knowledge gained
+can then be integrated into something like [[Mach]].
The source can be downloaded from the *viengoos.git* repository, cf.
. You can
--
cgit v1.2.3
From a167e7ae26b5159da570771ae39a6d56def1be7c Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 6 Dec 2010 10:11:13 +0100
Subject: open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow: Update.
---
open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn b/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
index e80a5661..2bd0cd38 100644
--- a/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
+++ b/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
@@ -160,7 +160,14 @@ successfully.)
[[!tag open_issue_glibc]]
+On 2010-11-30 and 2010-12-04, when I had again started the GCC testsuite, it
+failed again, but at another position (understandably), but with the same
+symptoms as shown below. In particular, the `thread_refs` values were the same
+ones.
+
# Discussion
-
+ *
+
+ *
--
cgit v1.2.3
From 238c43499c4e08562024c3ef59e50aa365b5f1b2 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 7 Dec 2010 14:26:40 +0100
Subject: Some bits about L4 and Coyotos.
---
history/port_to_l4.mdwn | 10 ++-
hurd/ng.mdwn | 2 -
hurd/ng/choiceofmicrokernel.mdwn | 4 -
hurd/ng/issues_with_mach.mdwn | 12 ---
hurd/ng/microkernelcoyotos.mdwn | 11 ---
hurd/what_is_the_gnu_hurd.mdwn | 23 ++++--
kernel.mdwn | 21 +++++
microkernel.mdwn | 32 ++++++--
microkernel/coyotos.mdwn | 30 +++++++
microkernel/l4.mdwn | 21 +++++
unix.mdwn | 2 +
unsorted/HurdOnL4.mdwn | 173 ---------------------------------------
unsorted/HurdOnL4/menu.lst | 55 -------------
unsorted/PortToL4.mdwn | 42 ----------
14 files changed, 123 insertions(+), 315 deletions(-)
delete mode 100644 hurd/ng/choiceofmicrokernel.mdwn
delete mode 100644 hurd/ng/issues_with_mach.mdwn
delete mode 100644 hurd/ng/microkernelcoyotos.mdwn
create mode 100644 kernel.mdwn
create mode 100644 microkernel/coyotos.mdwn
create mode 100644 microkernel/l4.mdwn
delete mode 100644 unsorted/HurdOnL4.mdwn
delete mode 100644 unsorted/HurdOnL4/menu.lst
delete mode 100644 unsorted/PortToL4.mdwn
diff --git a/history/port_to_l4.mdwn b/history/port_to_l4.mdwn
index cdf048e6..b58c0d91 100644
--- a/history/port_to_l4.mdwn
+++ b/history/port_to_l4.mdwn
@@ -1,5 +1,5 @@
-[[!meta copyright="Copyright © 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009
-Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
+2009, 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -100,3 +100,9 @@ A lange number of discussion threads can be found in the archives of the
> that we had come to envision in terms of interfaces and description of the
> system's structure. The new name was selected, if I recall correctly, as it
> clearly wasn't the Hurd nor the Hurd based on L4.
+
+
+The source code is still available in [CVS module
+`hurd-l4`](http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/) (note that
+this repository has in the beginning also been used for Neal's
+[[microkernel/Viengoos]]).
diff --git a/hurd/ng.mdwn b/hurd/ng.mdwn
index fb4d742f..de33949d 100644
--- a/hurd/ng.mdwn
+++ b/hurd/ng.mdwn
@@ -10,7 +10,6 @@ These pages try to summarize the major discussions and ideas.
This section explains the motivations behind the new design:
- * [[Issues_with_Mach]]
* [[Issues_with_L4_Pistachio]]
* [[Limitations_of_the_original_Hurd_design]]
@@ -64,7 +63,6 @@ A [[critique]] of the original Hurd is available.
## Implementation
-* [[ChoiceOfMicrokernel]]
* [[HurdInterafaces]]
* [[PosixLayer]]
* [[SystemStructure]]
diff --git a/hurd/ng/choiceofmicrokernel.mdwn b/hurd/ng/choiceofmicrokernel.mdwn
deleted file mode 100644
index 20ee6f05..00000000
--- a/hurd/ng/choiceofmicrokernel.mdwn
+++ /dev/null
@@ -1,4 +0,0 @@
-TBD
-
-* [[MicrokernelL4]]
-* [[MicrokernelCoyotos]]
diff --git a/hurd/ng/issues_with_mach.mdwn b/hurd/ng/issues_with_mach.mdwn
deleted file mode 100644
index 9fac498f..00000000
--- a/hurd/ng/issues_with_mach.mdwn
+++ /dev/null
@@ -1,12 +0,0 @@
-[[!meta copyright="Copyright © 2008, 2009 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
- * [[open issues/Resource Management Problems]]
- * [[Critique]]
diff --git a/hurd/ng/microkernelcoyotos.mdwn b/hurd/ng/microkernelcoyotos.mdwn
deleted file mode 100644
index 2340901d..00000000
--- a/hurd/ng/microkernelcoyotos.mdwn
+++ /dev/null
@@ -1,11 +0,0 @@
-# The Coyotos microkernel
-
-[Coyotos](http://www.coyotos.org/index.html) is a microkernel and OS and the successor of EROS, that itself is the successor of KeyKOS. A more complete history can be found [here](http://www.coyotos.org/history.html). Its main objectives are to correcte some shortcomings of EROS, demonstrate that an atomic kernel design scales well, and (eventually) to completely formally verify both the kernel and critical system components by writing them in a new language called [bitc](http://www.bitc-lang.org/). [See [l4.verified](http://nicta.com.au/research/projects/l4.verified) for work on formally verifying an L4 microkernel.]
-
-Coyotos is an orthogonally persistent pure capability system. It uses
-continuation based unbuffered asynchronous IPC (actually it's synchronous IPC
-with asynchronous [[system calls]]).
-
-TODO: explain these terms and (more important) their consequences on system design.
-
-The coyotos microkernel specification can be found [here](http://www.coyotos.org/docs/ukernel/spec.html)
diff --git a/hurd/what_is_the_gnu_hurd.mdwn b/hurd/what_is_the_gnu_hurd.mdwn
index 0b8f7ef6..7a7f3d43 100644
--- a/hurd/what_is_the_gnu_hurd.mdwn
+++ b/hurd/what_is_the_gnu_hurd.mdwn
@@ -1,17 +1,18 @@
-[[!meta copyright="Copyright © 2001, 2002, 2003, 2004, 2005, 2007, 2008 Free
-Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
+2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[!meta title="What Is the GNU Hurd?"]]
-The Hurd is the GNU project's replacement for the [[Unix]] kernel.
+The Hurd is the GNU project's replacement for [[UNIX]], a popular operating
+system [[kernel]].
The Hurd is firstly a collection of protocols formalizing how different
components may interact. The protocols are designed to reduce the mutual
@@ -22,11 +23,19 @@ process to implement a file system. The only requirement is that it have
access to its backing store and that the [[principal]] that started it own the
file system node to which it connects.
-The Hurd is also a set of servers that implement these protocols.
-They include file systems, network protocols and authentication.
+The Hurd is also a set of [[servers|translator]] that implement these
+protocols. They include file systems, network protocols and authentication.
The servers run on top of the [[microkernel/Mach]] [[microkernel]] and use
Mach's [[microkernel/mach/IPC]] mechanism to transfer information.
+The Hurd provides a compatibility layer such that compiling higher level
+programs is essentially transparent; that is, by means of the [[glibc]], it
+provides the same standard interfaces known from other [[UNIX]]-like systems.
+Thus, for a typical user, the Hurd is intended to silently work in the
+background providing the services and infrastructure which the [[microkernel]]
+itself has no business implementing, but that are required for higher level
+programs and libraries to operate.
+
The Hurd supplies the last major software component needed for a complete
[[GNU_operating_system|running/gnu]] as originally conceived by Richard
M. Stallman (RMS) in 1983. The GNU vision directly drove the creation and has
diff --git a/kernel.mdwn b/kernel.mdwn
new file mode 100644
index 00000000..8190660e
--- /dev/null
+++ b/kernel.mdwn
@@ -0,0 +1,21 @@
+[[!meta copyright="Copyright © 2004, 2006, 2007, 2008, 2010 Free Software
+Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+The kernel of an operating system is a fundamental program which provides
+essential resources from the hardware of the computer to other programs.
+
+A kernel typically runs all the time and remains resident in main memory.
+
+The amount of functionality and resources which it provides vary tremendously.
+
+ * [[microkernel]]
+
+ * [[UNIX]]
diff --git a/microkernel.mdwn b/microkernel.mdwn
index e2d70c01..17344689 100644
--- a/microkernel.mdwn
+++ b/microkernel.mdwn
@@ -1,12 +1,15 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+A *microkernel* is one kind of a [[kernel]] implementation.
[[Liedtke]] explains in [On Microkernel Construction](http://l4ka.org/publications/paper.php?docid=642)
that a microkernel attempts to minimize the mandatory part of the operating
@@ -19,12 +22,10 @@ The idea of a microkernel as explained above was first explored
by Per Brinch-Hansen in 1970 in
[The Nucleus of a Multiprogramming System](http://brinch-hansen.net/papers/1970a.pdf).
-Other notable microkernels include [[Hydra]], [[KeyKOS]], [[Eros]] and [[L4]].
-
An [introduction](http://www.cs.cornell.edu/Info/People/ulfar/ukernel/ukernel.html) by
Úlfar Erlingsson and Athanasios Kyparlis (from 1996) to microkernel concepts.
-[[Research]]. [[Viengoos]].
+[[Research]].
[[Microkernels_for_beginners|for_beginners]].
@@ -32,4 +33,21 @@ A 2002 article about [[microkernel_FUD|FUD]] (Fear, Uncertainty, Doubt).
[[FAQ]].
-[[Mach]].
+
+# Implementations
+
+ * [[Hydra]]
+
+ * [[KeyKOS]]
+
+ * [[Mach]] -- used by the GNU/Hurd
+
+ * [[EROS]]
+
+ * [[CapROS]]
+
+ * [[Coyotos]]
+
+ * [[L4]]
+
+ * [[Viengoos]]
diff --git a/microkernel/coyotos.mdwn b/microkernel/coyotos.mdwn
new file mode 100644
index 00000000..5ecea688
--- /dev/null
+++ b/microkernel/coyotos.mdwn
@@ -0,0 +1,30 @@
+[[!meta copyright="Copyright © 2006, 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="Coyotos"]]
+
+[*Coyotos*](http://www.coyotos.org/) is a microkernel and OS and the successor
+of [[EROS]], that itself is the successor of [[KeyKOS]]. A more complete
+history can be found [here](http://www.coyotos.org/history.html). Its main
+objectives are to correcte some shortcomings of [[EROS]], demonstrate that an
+atomic kernel design scales well, and (eventually) to completely formally
+verify both the kernel and critical system components by writing them in a new
+language called [bitc](http://www.bitc-lang.org/).
+
+Coyotos is an orthogonally [[persistent|persistency]] pure [[capability]]
+system. It uses [[continuation]]-based unbuffered asynchronous [[IPC]]
+(actually it's synchronous [[IPC]] with asynchronous [[system calls]]).
+
+TODO: explain these terms and (more important) their consequences on system
+design.
+
+The coyotos microkernel specification can be found
+[here](http://www.coyotos.org/docs/ukernel/spec.html).
diff --git a/microkernel/l4.mdwn b/microkernel/l4.mdwn
new file mode 100644
index 00000000..970407be
--- /dev/null
+++ b/microkernel/l4.mdwn
@@ -0,0 +1,21 @@
+[[!meta copyright="Copyright © 2004, 2006, 2007, 2008, 2010 Free Software
+Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+The [*L4* microkernel](http://l4ka.org/) is an attempt to create a very small
+high performace core which provides basic memory management, task and context
+switching, and little else.
+
+[L4Ka Pistachio Home](http://l4ka.org/projects/pistachio/).
+
+See [l4.verified](http://nicta.com.au/research/projects/l4.verified) for work
+on formally verifying an L4 microkernel.
+
+There was a GNU/Hurd [[history/port_to_L4]], which is now stalled.
diff --git a/unix.mdwn b/unix.mdwn
index bf361e2e..3cfe7771 100644
--- a/unix.mdwn
+++ b/unix.mdwn
@@ -10,6 +10,8 @@ License|/fdl]]."]]"""]]
[[!meta title="UNIX"]]
+*UNIX* is a [[kernel]] implementation.
+
# External
diff --git a/unsorted/HurdOnL4.mdwn b/unsorted/HurdOnL4.mdwn
deleted file mode 100644
index 79e7a714..00000000
--- a/unsorted/HurdOnL4.mdwn
+++ /dev/null
@@ -1,173 +0,0 @@
-# GNU/Hurd on L4 wiki
-
-## Introduction
-
-This page is a place for information pertaining to the efforts towards realizing the migration and porting of the [[Hurd]] such that it uses the [L4 Microkernel](http://l4ka.org/). The GNU/Hurd Operating System, sometimes just referred to as the _GNU Operating System_ is a rich and robust collection of programs and utilities which enable you to use your computer to do usefull and or entertaining things. The intent is that most any applicable software package available on the [GNU Website](http://www.gnu.org) (and many others also) will be able to be compiled and run under the resultant operating system.
-
-At this point (06/20/2004) this is not yet possible. Indeed, the preliminary foundations are still being developed. Nevertheless, this is a volunteer created operating system so those with the knowledge, interest, and spare time are encouraged to study and if possible contribute to the project.
-
-In [CVS module hurd-l4](http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/), there is a [comprehensive list of items that need to be done](http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/TODO).
-
-## Components of the System
-
-### The L4 Microkernel
-
-The kernel of an operating system is a fundamental program which provides essential resources from the hardware of the computer to other programs. A kernel typically runs all the time and remains resident in main memory. The amount of functionality and resources which it provides vary tremendously. The [L4 Microkernel](http://l4ka.org/) is an attempt to create a very small high performace core which provides basic memory management, task and context switching, and little else.
-
-### The Hurd
-
-The [Hurd](http://www.gnu.org/software/hurd/hurd.html) is a conglomeration of servers and programs which add additional functionality to a microkernel such that it is capable of utilizing additional hardware resources of the computer. It also provides a compatibility layer such that compiling higher level programs is essentially transparent; i.e. when you write a C program and compile it, you need only include standard headers and libraries and for all intents and purposes your generic program will build and run and you need never resort to unportable coding or access to hardware specific methods.
-
-For a typical user, The Hurd is intended to silently work in the background providing the services and infrastructure which are lacking in the microkernel but are required for higher level programs and libraries to operate.
-
-### GNU Programs
-
-For the user, this is what is desired: to run [GNU Software](http://www.gnu.org/). These programs provide a full featured, robust, and extremely effective operating system. A L4/Hurd system should be capable of compiling and executing most any software package available from GNU with little or no modification.
-
-Some readers may be familiar with GNU/Linux systems. When GNU/L4 is complete it should highly resemble the functionality of such systems as L4 and Hurd effectively replace the Linux kernel. The bulk of the software should be expected to run much as it does presently under the Linux kernel (or gnumach based GNU/Hurd systems).
-
-## Preparations
-
-### Build System
-
-There are no precompiled binaries for Hurd on L4 that I am aware of, so you will need to be able to compile the source code packages in order to experiment with it. While L4Ka will likely build on a variety of compilers and systems, the Hurd may prove troublesome unless it is built using recent GNU compilers and tools.
-
-I recently used [Debian Unstable](http://www.debian.org) (Sarge) with GNU gcc version 3.3, autoconf version 2.50, and automake version 1.8 to build the system with good results, although other similarly equipped systems with a good development environment, such as [Gentoo](http://www.gentoo.org) or [Slackware](http://www.slackware.com) are reported to work fine also.
-
-Generally, I would recommend building the packages using any very up-to-date GNU development system. I'm not going to say that you can't compile them using more exotic platforms, but I wouldn't be overly hopefull about it. I have no idea if Pistachio can be compiled under current gnuMach/Hurd systems it might be interesting to try it.
-
-### Making a Home for L4/Hurd
-
-Obviously you want to have a home for this little embryonic operating system. Currently, mine is using about 5M for the binaries and headers. If you want the source to reside with the binaries, then allow perhaps another 50M or so, but this is purely optional.
-
-At the moment, Hurd on L4 can't even see your hard drive, so all you need is a directory on some partition which is visible to the GRUB bootloader. A `/l4hurd` directory on your existing GNU/Linux system is probably fine for now.
-
-Howevever, if you have some spare disk space or an unused partition, you could optionally create a small partition for the system. This is totally unnecessary at the moment because L4/Hurd lacks hard disk drivers right now, but it is an option. Assuming that you have made some partition **X** with linux _fdisk_, set it to type 83 - Linux and use the following command to initialize it with the classic Hurd extensions:
-
-
-
-As noted, this is purely optional, in fact right now you can use any filesystem that GRUB can understand. You can even use TFTP to netboot the system. My current setup takes about 5M for the full install so obviously you don't need much space for this.
-
-### Boot Loader
-
-Just like regular GNU/Hurd, you need to use [GNU GRUB](http://www.gnu.org/software/grub/), the _GRand Unified Bootloader_ in order to boot the system. Hopefully you already have it installed, in which case adding the commands for L4/Hurd to your `menu.lst` is quite trivial.
-
-If you don't have GRUB installed, then you should probably take some time to get it set up. A good place to look for help is on the regular [Debian GNU/Hurd Installation Page](http://www.debian.org/ports/hurd/hurd-install) at the **3\. The Boot Loader** section.
-
-This is probably a bit superfluous, but you can even display a snazzy little graphic of some type on your GRUB boot menu. Here's a snip from the header of my `menu.lst` which demonstrates how to do this.
-
- # menu for grub
- splashimage (hd0,0)/boot/grub/debian.xpm
- foreground bfbfe7
- background 3f3f7f
-
-In the above example, my `debian.xpm` is just a 640x480 graphic in xpm format (which you can easily create with GIMP). It does add a bit of pizazz to your boot screen :-)
-
-In fact, I will attach a sample copy of my `menu.lst` here. It has lots of examples for booting a variety of operating systems in it. Remember that my hard drive partitions are unique to my system.
-
-* [[ATTACHURLmenulst]]: Sample GRUB boot menu
-
-## Building Hurd on L4
-
-### L4Ka Pistachio
-
-#### Getting the Sources
-
-I used the latest version of L4Ka, Pistachio version 0.4. It can be obtained from the following website:
-
-[L4Ka Pistachio Home](http://l4ka.org/projects/pistachio/)
-
-#### Compiling
-
-Pistachio is designed to be compiled in a build directory which is independant from the source directory, so you need to create your build directory after unpacking the tarball. Furthermore, you need to pass a couple of special parameters to the configure program to set it up for use with Hurd. Here is what I did on my ia32 system:
-
-Note: I have my installation set up in `/l4hurd` and I am starting from within the Pistachio source top-level directory.
-
- $ mkdir build
- $ cd build
- Building and installing user-level libraries and servers/applications
- $ ../user/configure --with-s0-linkbase=0x40000 --prefix=/l4hurd
- $ make
- $ make install
- Building and installing the kernel
- $ make -C ../kernel BUILDDIR=`pwd`/kernel
- $ cd kernel
- $ make menuconfig
- $ make
- $ mkdir /l4hurd/boot
- $ cp ia32-kernel /l4hurd/boot
-
-Hopefully everything worked and there were no problems. As usual, if the build fails then scrutinize the output from `configure` and install any missing libraries or development packages.
-
-### CVS l4hurd
-
-#### Getting the sources
-
- You need to pull the L4 Hurd sources from the CVS tree on Savannah. The CVS access page is [The GNU/Hurd - CVS (module hurd-l4)](http://savannah.gnu.org/cvs/?group=hurd). In a nutshell, the following commands should retrieve the sources for you:
-
- $ cvs -z3 -d:pserver:anonymous@cvs.savannah.gnu.org:/sources/hurd co hurd-l4
-
-#### Compiling
-
-Take a look at the README, compiling should be quite simple on any state of the art GNU development system. As per the README, and for my example, you would:
-
- $ autoreconf -f -i -s
- $ ./configure --enable-maintainer-mode --prefix=/l4hurd
- $ make
- $ make install
- $ strip physmem/physmem
-
- $ mkdir /l4hurd/boot
- $ cp laden/laden /l4hurd/boot
- $ cp wortel/wortel /l4hurd/boot
- $ cp physmem/physmem /l4hurd/boot
-
-Currently (2004/08/09), physmem needs to be stripped to to avoid a memory conflict with wortel; this requirement may be fixed in the future.
-
-In my case it was slightly more complicated as Debian uses a wrapper system to enable the use of multiple versions of the GNU Autotools. In this case, the trick is to utilize some environment variables on the command line as follows:
-
- $ ACLOCAL=aclocal-1.8 AUTOMAKE=automake-1.8 autoreconf -f -i -s
-
-As above, hopefully this will compile cleanly; otherwise, scroll up, read any error messages, and correct them by installing required packages of the proper version. Any bad compilation problems are most likely due to you either missing or using a wrong version of something.
-
-## Installing
-
-The binaries are now installed into `/l4hurd`. All that remains is to add an entry into GRUB's `menu.lst` in order to test it out. Here's an example from my system where I have `/l4hurd` on `/dev/hda9` in my Linux system:
-
- title GNU Hurd on L4Ka Pistachio 0.4
- root (hd0,8)
- kernel /boot/laden -D
- module /boot/ia32-kernel
- module /libexec/l4/sigma0
- module /boot/wortel -D
- module /boot/physmem -D
- module /boot/physmem
- module /boot/physmem
- module /boot/physmem
- module /boot/physmem
-
-It might strike you a little odd that there are five physmem modules. This is done because wortel currently (2004/08/09) expects exactly five modules and the other modules (like the task server, auth server, etc.) have not been implemented yet. Therefore the physmem module is used as a dummy module.
-
-## Booting
-
-For me at least, I got some nifty messages and then it dropped into a simple debugging mode. As far as I know, thats all there is right now.
-
-Read, build, learn, code...
-
---todo: add more here.
-
-## Experimenting
-
-Well, thats why you did all of this, certainly not to do anything else. Use that debugger and get experimenting.
-
---todo: things to do wth the debugger
-
-## Conclusion
-
-If you followed these steps, you most likely have built and booted the latest version of Hurd on L4. I would encourage you to subscribe to the mailing list at the following URL and help in the efforts to get this nifty system up to speed:
-
-[l4-hurd mailing list](http://lists.gnu.org/mailman/listinfo/l4-hurd)
-
-And finally, this is a wiki, meaning that **you** have the ability to edit and modify this page. If you want to fix something, add more information, new sub-pages, whatever, feel free to do so. This is a great way to get a doc base up fast and keep it current, so use it like its supposed to be and have fun with Hurd on L4!
-
--- [[Main/BDouglasHilton]] - 20 Jun 2004
diff --git a/unsorted/HurdOnL4/menu.lst b/unsorted/HurdOnL4/menu.lst
deleted file mode 100644
index 3129ea74..00000000
--- a/unsorted/HurdOnL4/menu.lst
+++ /dev/null
@@ -1,55 +0,0 @@
-# menu for grub
-splashimage (hd0,0)/boot/grub/debian.xpm
-foreground bfbfe7
-background 3f3f7f
-
-timeout 30
-default 0
-
-title Debian Sid with Linux kernel 2.6.5
-root (hd0,1)
-kernel /vmlinuz root=/dev/hda2 vga=0x318
-
-title Debian Sid with old kernel
-root (hd0,1)
-kernel /vmlinuz.old root=/dev/hda2 vga=9
-
-title Microsoft Windows 2000
-rootnoverify (hd0,3)
-chainloader (hd0,3)+1
-
-title FreeDOS BETA 8.0
-root (hd0,0)
-chainloader +1
-
-title GNU Hurd on L4Ka Pistachio 0.4
-root (hd0,8)
-kernel /boot/laden -D
-module /boot/ia32-kernel
-module /libexec/l4/sigma0
-module /boot/wortel -D
-module /boot/physmem
-
-title Debian GNU/Hurd (gnumach)
-root (hd0,7)
-kernel /boot/kernel.gz root=device:hd0s8
-module /hurd/ext2fs.static --readonly \
- --multiboot-command-line=${kernel-command-line} \
- --host-priv-port=${host-port} \
- --device-master-port=${device-port} \
- --exec-server-task=${exec-task} \
- -T typed ${root} $(task-create) $(task-resume)
-module /lib/ld.so.1 /hurd/exec $(exec-task=task-create)
-
-# title Debian GNU/Hurd (oskit-mach)
-# root (hd3,0)
-# kernel /boot/kernel-ide -- root=hd0s1
-# module /hurd/ext2fs.static --multiboot-command-line=${kernel-command-line} --host-priv-port=${host-port} --device-master-port=${device-port} --exec-server-task=${exec-task} -T device ${root-device} $(task-create) $(task-resume)
-# module /lib/ld.so.1 /hurd/exec $(exec-task=task-create)
-
-# title Debian GNU/Hurd (oskit-mach w/ remote debugging)
-# root (hd3,0)
-# kernel /boot/kernel-ide -d GDB_COM=1 BAUD=9600 -- root=hd0s1
-# module /hurd/ext2fs.static --multiboot-command-line=${kernel-command-line} --host-priv-port=${host-port} --device-master-port=${device-port} --exec-server-task=${exec-task} -T device ${root-device} $(task-create) $(task-resume)
-# module /lib/ld.so.1 /hurd/exec $(exec-task=task-create)
-
diff --git a/unsorted/PortToL4.mdwn b/unsorted/PortToL4.mdwn
deleted file mode 100644
index fb7f0004..00000000
--- a/unsorted/PortToL4.mdwn
+++ /dev/null
@@ -1,42 +0,0 @@
-**_The Hurd-L4 port has an [official page](http://www.gnu.org/software/hurd/hurd-l4.html) with more up-to-date information_** -- [[Main/OgnyanKulev]] - 05 Feb 2005
-
-A group of one being led by Neal H. Walfield is working on porting the Hurd to the pistachio version of the L4 microkernel. This second generation microkernel provides a significantly different API than the one offered by the Mach microkernel, a first generation microkernel. One of the primary goals of the project, outside of porting the Hurd to L4, is to reevaluate the current Hurd abstractions and consider how they can be modified to be more general.
-
-I have no web page describing my efforts. There is a mailing list[1].
-
-[1]
-
--- Neal Walfield, 18 Sep 2002
-
-Neal noted [1] that there are licensing issues being worked out so no code is yet released. His work was performed in the summer of 2002 at Karlsruhe.
-
-[1]
-
--- [[Main/GrantBow]] - 21 Sep 2002
-
-There are several important pages that are of interest for the L4 & hurd communities.
-
-* Main L4 home page -
-* Hurd on L4 -
-* Hurd on L4 -
-*
-
--- [[Main/GrantBow]] - 22 May 2002
-
-
-
--- [[Main/GrantBow]] - 24 Oct 2002
-
-There was [discussion in October 2002](http://mail.gnu.org/pipermail/l4-hurd/2002-October/000727.html) about the differences between Hurd on Mach and Hurd on L4 with some interesting URLs. In the thread Okuji [responds](http://mail.gnu.org/pipermail/l4-hurd/2002-October/000728.html) confirming his document is two years old and outdated by the directions that Neal is taking in furthering this effort. The URLs in that email might be helpful to those learning more about Hurd and L4 ideas that were considered yet abandoned.
-
--- [[Main/GrantBow]] - 04 Jan 2003
-
-A "Porting GNU Hurd to L4" website:
-
-*
-
--- [[Main/SebastianGabriel]] - 29 Sep 2003
-
-The only valid L4-Hurd link on is
-
--- [[Main/JoachimNilsson]] - 29 Sep 2003
--
cgit v1.2.3
From c36d2e0aa3c5d0fcb312a066817c0c6328685d56 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 8 Dec 2010 20:44:15 +0100
Subject: open_issues/boehm_gc: Update.
---
open_issues/boehm_gc.mdwn | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/open_issues/boehm_gc.mdwn b/open_issues/boehm_gc.mdwn
index 540eed3b..34cc2ee0 100644
--- a/open_issues/boehm_gc.mdwn
+++ b/open_issues/boehm_gc.mdwn
@@ -24,9 +24,9 @@ committed upstream should very like also be made there.
# Configuration
-[[tschwinge]] reviewed its GNU/Hurd port's configuration on 2010-11-10, based
-on CVS HEAD sources from 2010-11-16, converted to Git:
-9abb37b2e581b415bb1f482085891a289c2c0be1.
+[[tschwinge]] reviewed its GNU/Hurd port's configuration on 2010-12-08, based
+on CVS HEAD sources from 2010-12-02, converted to [[Git, correspondingly
+1c2455988a8f59a5f83b986b9156f03be395b3b6|source_repositories/boehm_gc]].
* `configure.ac`
@@ -259,6 +259,10 @@ on CVS HEAD sources from 2010-11-16, converted to Git:
There are different configurations possible, but in general, the testsuite
restults of GNU/Linux and GNU/Hurd look very similar.
+It has last been run and compared on 2010-11-10, based on CVS HEAD sources from
+2010-11-04, converted to [[Git, correspondingly
+9abb37b2e581b415bb1f482085891a289c2c0be1|source_repositories/boehm_gc]].
+
## `--enable-cplusplus --enable-gc-debug`
* GNU/Hurd is missing *Call chain at allocation: [...] output*.
--
cgit v1.2.3
From d9c728c7e5c90acbd5a2d776c697acff48e14c67 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Thu, 9 Dec 2010 13:26:55 +0100
Subject: open_issues/code_analysis: Add some more.
---
open_issues/code_analysis.mdwn | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/open_issues/code_analysis.mdwn b/open_issues/code_analysis.mdwn
index ad104e68..114dfbbf 100644
--- a/open_issues/code_analysis.mdwn
+++ b/open_issues/code_analysis.mdwn
@@ -12,6 +12,10 @@ There is static and dynamic code analysis. This overlaps with [[debugging]].
* [[GCC]]'s warnings. Yes, really.
+ * [Static Source Code Analysis Tools for C](http://spinroot.com/static/)
+
+ * [[!wikipedia List_of_tools_for_static_code_analysis]]
+
* Coccinelle
*
@@ -32,6 +36,20 @@ There is static and dynamic code analysis. This overlaps with [[debugging]].
* [[Valgrind]]
+ * [Smatch](http://smatch.sourceforge.net/)
+
+ * [Parfait](http://labs.oracle.com/projects/parfait/)
+
+ *
+
+ * [Saturn](http://saturn.stanford.edu/)
+
+ * [Flawfinder](http://www.dwheeler.com/flawfinder/)
+
+ * [sixgill](http://sixgill.org/)
+
+ * [Coverity](http://www.coverity.com/) -- commercial?
+
*
*
--
cgit v1.2.3
From d50d9aa01c7f5103af8233258d79677efb50b27b Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 10 Dec 2010 12:07:05 +0100
Subject: open_issues/gcc: Update.
---
open_issues/gcc.mdwn | 26 +-
open_issues/gcc/testsuite.mdwn | 10 +-
open_issues/gcc/testsuite/log_build-diff | 408 +++++++++++++++----------------
3 files changed, 223 insertions(+), 221 deletions(-)
diff --git a/open_issues/gcc.mdwn b/open_issues/gcc.mdwn
index f393c0f7..01997128 100644
--- a/open_issues/gcc.mdwn
+++ b/open_issues/gcc.mdwn
@@ -34,11 +34,13 @@ version, but with own patches, etc. This is used for Java. (There are patches
Patches to GCC's fork should be contributed back to upstream [[/Boehm_GC]].
[[tschwinge]] reviewed (but only briefly for large parts) the differences on
-2010-11-17, based on 5be7963446247204245c954641290f0e5ce238c6 (2010-10-28) of
-[[source_repositories/GCC]] and for [[source_repositories/Boehm_GC]] CVS HEAD
-sources from 2010-11-16, converted to Git:
-9abb37b2e581b415bb1f482085891a289c2c0be1.
+2010-12-08, based on the [[GCC Git mirror's
+8e79e9d43f32c8852f068da91d655297d92ac0f4 (2010-11-29)
+sources|source_repositories/GCC]] and Boehm GC's CVS HEAD sources from
+2010-12-02, converted to [[Git, correspondingly
+1c2455988a8f59a5f83b986b9156f03be395b3b6|source_repositories/boehm_gc]].
+On 2010-11-17,
[[tschwinge]] reviewed the Debian GCC Boehm GC changes, compared them to the
upstream code, and put it into the local *hurd/boehm-gc/config_backport*
branch, planning to submit it to gcc-patches after testing with the GCC
@@ -47,7 +49,8 @@ branch, planning to submit it to gcc-patches after testing with the GCC
# Configuration
-Last reviewed against 2f78a7ce0a8d0ccd0b3142ec45da79a32fbd601d (2010-11-27).
+Last reviewed up to the [[Git mirror's 3457702eb6f8ee22acaee881dc7f783c3aa2fa91
+(2010-12-08) sources|source_repositories/gcc]].
has documentation for the
`configure` switches.
@@ -55,6 +58,8 @@ Last reviewed against 2f78a7ce0a8d0ccd0b3142ec45da79a32fbd601d (2010-11-27).
* Configure fragments that have `*linux*` cases might/should often contain
those for us (and GNU/k*BSD) as well.
+ * `configure.ac`
+
* `libgcc/configure.ac` [might
need](http://gcc.gnu.org/ml/gcc-patches/2008-10/msg00315.html) to be
aligned for us to the `*linux*` cases. As well as at the end of
@@ -65,14 +70,23 @@ Last reviewed against 2f78a7ce0a8d0ccd0b3142ec45da79a32fbd601d (2010-11-27).
* `libgomp/configure.tgt`
+ * Etc.
+
* [[`libmudflap`|libmudflap]].
* Might [`-fsplit-stack`](http://nickclifton.livejournal.com/6889.html) be
worthwhile w.r.t. our multithreaded libraries?
+ * ,
+
+
* `--enable-languages=[...]`
- GNAT is not yet ported / bootstrapped?
+ * GNAT is not yet ported / bootstrapped?
+
+ * The Google Go's libgo (introduced in
+ e440a3286bc89368b8d3a8fd6accd47191790bf2 (2010-12-03)) apparently needs
+ OS configuration / support.
* `--enable-frame-pointer`
diff --git a/open_issues/gcc/testsuite.mdwn b/open_issues/gcc/testsuite.mdwn
index ec5fca0e..73b36008 100644
--- a/open_issues/gcc/testsuite.mdwn
+++ b/open_issues/gcc/testsuite.mdwn
@@ -10,9 +10,9 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_gcc]]
-Here's a log of a GCC build run; this is from
-1fb531df5602228c903ff640ab6ecac3b8107a1a (2010-11-27)
-[[sources|source_repositories/gcc]], run on kepler.SCHWINGE and grubber.
+Here's a log of a GCC build run; this is from our [[Git repository's
+5ac39af7792ba0dc363cc199060faf53dfa9dc1a (2010-12-08)
+sources|source_repositories/gcc]], run on kepler.SCHWINGE and grubber.
$ export LC_ALL=C
$ ../master/configure --prefix="$PWD".install 2>&1 | tee log_build
@@ -31,8 +31,8 @@ On grubber, this needs roughly 24 hours, and takes up around 2.5 GiB.
Analysis of most issues:
- * [*checking if gcc static flag -static
- works... no*|glibc_madvise_vs_static_linking]
+ * [[`checking if gcc static flag -static
+ works... no`|glibc_madvise_vs_static_linking]]
* DFP
diff --git a/open_issues/gcc/testsuite/log_build-diff b/open_issues/gcc/testsuite/log_build-diff
index 4b8ed33e..777011a3 100644
--- a/open_issues/gcc/testsuite/log_build-diff
+++ b/open_issues/gcc/testsuite/log_build-diff
@@ -1,5 +1,5 @@
---- /dev/fd/63 2010-11-29 08:50:38.457909220 +0100
-+++ /dev/fd/62 2010-11-29 08:50:38.457909220 +0100
+--- /dev/fd/63 2010-12-10 08:34:20.938216003 +0100
++++ /dev/fd/62 2010-12-10 08:34:20.938216003 +0100
@@ -313,6 +313,7 @@
checking valgrind.h usability... no
checking valgrind.h presence... no
@@ -8,16 +8,7 @@
configure: WARNING: fixed-point is not supported for this target, ignored
checking whether make sets $(MAKE)... yes
checking for gawk... gawk
-@@ -378,7 +379,7 @@
- checking for mbstowcs... yes
- checking for wcswidth... yes
- checking for mmap... yes
--checking for mincore... yes
-+checking for mincore... no
- checking for setlocale... yes
- checking for clearerr_unlocked... yes
- checking for feof_unlocked... yes
-@@ -472,7 +473,6 @@
+@@ -475,7 +476,6 @@
Using the following target machine macro files:
../../master/gcc/config/vxworks-dummy.h
../../master/gcc/config/i386/i386.h
@@ -25,7 +16,7 @@
../../master/gcc/config/i386/unix.h
../../master/gcc/config/i386/att.h
../../master/gcc/config/dbxelf.h
-@@ -481,7 +481,9 @@
+@@ -484,7 +484,9 @@
../../master/gcc/config/linux.h
../../master/gcc/config/glibc-stdint.h
../../master/gcc/config/i386/linux.h
@@ -36,7 +27,7 @@
checking for __cxa_atexit... yes
checking whether NLS is requested... yes
checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
-@@ -493,7 +495,7 @@
+@@ -496,7 +498,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -45,7 +36,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -509,12 +511,12 @@
+@@ -512,12 +514,12 @@
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
@@ -60,7 +51,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -526,11 +528,11 @@
+@@ -529,11 +531,11 @@
checking whether the g++ linker (ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
@@ -74,7 +65,7 @@
checking how to hardcode library paths into programs... immediate
checking for as... /usr/bin/as
checking what assembler to use... /usr/bin/as
-@@ -543,7 +545,7 @@
+@@ -546,7 +548,7 @@
checking what objdump to use... /usr/bin/objdump
checking for readelf... /usr/bin/readelf
checking what readelf to use... /usr/bin/readelf
@@ -83,7 +74,7 @@
checking assembler for .balign and .p2align... yes
checking assembler for .p2align with maximum skip... yes
checking assembler for .literal16... no
-@@ -672,12 +674,12 @@
+@@ -675,12 +677,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -98,7 +89,7 @@
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether errno must be declared... no
-@@ -747,13 +749,13 @@
+@@ -750,13 +752,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -115,7 +106,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -768,7 +770,7 @@
+@@ -771,7 +773,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -124,7 +115,7 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -1108,12 +1110,12 @@
+@@ -1111,12 +1113,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -139,7 +130,7 @@
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether errno must be declared... no
-@@ -1183,13 +1185,13 @@
+@@ -1186,13 +1188,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -156,7 +147,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -1204,7 +1206,7 @@
+@@ -1207,7 +1209,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -165,7 +156,7 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -1619,7 +1621,7 @@
+@@ -1622,7 +1624,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -174,7 +165,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -1646,12 +1648,12 @@
+@@ -1649,12 +1651,12 @@
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
@@ -189,7 +180,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -1966,7 +1968,8 @@
+@@ -1969,7 +1971,8 @@
checking build system type... [ARCH]
checking host system type... [ARCH]
checking target system type... [ARCH]
@@ -199,7 +190,7 @@
checking whether byte ordering is bigendian... no
configure: updating cache ./config.cache
configure: creating ./config.status
-@@ -1979,12 +1982,8 @@
+@@ -1982,12 +1985,8 @@
source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
@@ -213,38 +204,38 @@
ranlib libdecnumber.a
make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
-@@ -2044,9 +2043,9 @@
+@@ -2047,9 +2046,9 @@
HEADERS="auto-host.h ansidecl.h" DEFINES="" \
/bin/bash ../../master/gcc/mkconfig.sh config.h
TARGET_CPU_DEFAULT="" \
- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
-+ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
++ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SINGLE_LIBC DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
/bin/bash ../../master/gcc/mkconfig.sh tm.h
--gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
-+gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt > tmp-optionlist
+-gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt > tmp-optionlist
/bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
echo timestamp > s-options
gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
-@@ -2806,8 +2805,7 @@
+@@ -2810,8 +2809,7 @@
../../master/gcc/config/i386/i386.c: In function 'ix86_handle_fndecl_attribute':
- ../../master/gcc/config/i386/i386.c:29207: warning: unknown conversion type character 'E' in format
- ../../master/gcc/config/i386/i386.c:29207: warning: too many arguments for format
+ ../../master/gcc/config/i386/i386.c:29153: warning: unknown conversion type character 'E' in format
+ ../../master/gcc/config/i386/i386.c:29153: warning: too many arguments for format
-gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
- ../../master/gcc/config/host-linux.c
+gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/host-default.c -o host-default.o
gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
-@@ -2837,7 +2835,7 @@
+@@ -2841,7 +2839,7 @@
gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
rm -rf libbackend.a
--ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
-+ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
ranlib libbackend.a
build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
checksum-options > cc1-checksum.c.tmp && \
-@@ -2988,89 +2986,39 @@
+@@ -2992,89 +2990,39 @@
done; \
fi
Fixing headers into [...]/hurd/master.build/gcc/include-fixed for [ARCH] target
@@ -352,8 +343,8 @@
if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
-@@ -3219,7 +3167,7 @@
- (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-11-27 --section=7 fsf-funding.pod > doc/fsf-funding.7.T$$ && \
+@@ -3223,7 +3171,7 @@
+ (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-12-08 --section=7 fsf-funding.pod > doc/fsf-funding.7.T$$ && \
mv -f doc/fsf-funding.7.T$$ doc/fsf-funding.7) || \
(rm -f doc/fsf-funding.7.T$$ && exit 1)
-rm gfdl.pod cpp.pod gcov.pod fsf-funding.pod gcc.pod
@@ -361,7 +352,7 @@
make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
Configuring stage 1 in ./lto-plugin
configure: creating cache ./config.cache
-@@ -3255,7 +3203,7 @@
+@@ -3259,7 +3207,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -370,7 +361,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -3282,12 +3230,12 @@
+@@ -3286,12 +3234,12 @@
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
@@ -385,7 +376,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -3350,7 +3298,8 @@
+@@ -3355,7 +3303,8 @@
checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
@@ -395,7 +386,7 @@
checking whether fixed-point is supported... no
checking whether assembler supports CFI directives... yes
checking for __attribute__((visibility("hidden")))... yes
-@@ -3554,136 +3503,6 @@
+@@ -3559,136 +3508,6 @@
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
@@ -532,7 +523,7 @@
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
-@@ -3740,7 +3559,7 @@
+@@ -3745,7 +3564,7 @@
mv -f morestack.visT morestack.vis
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
rm -f libgcc.a
@@ -541,7 +532,7 @@
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
-@@ -4045,7 +3864,7 @@
+@@ -4050,7 +3869,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -550,7 +541,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -4071,12 +3890,12 @@
+@@ -4076,12 +3895,12 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -565,16 +556,16 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -4247,7 +4066,7 @@
+@@ -4252,7 +4071,7 @@
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
mv -f .deps/affinity.Tpo .deps/affinity.Plo
- /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd/master.build.install/bin" -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
-libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
-@@ -4511,6 +4330,7 @@
+@@ -4516,6 +4335,7 @@
checking valgrind.h usability... no
checking valgrind.h presence... no
checking for valgrind.h... no
@@ -582,16 +573,7 @@
configure: WARNING: fixed-point is not supported for this target, ignored
checking whether make sets $(MAKE)... yes
checking for gawk... gawk
-@@ -4576,7 +4396,7 @@
- checking for mbstowcs... yes
- checking for wcswidth... yes
- checking for mmap... yes
--checking for mincore... yes
-+checking for mincore... no
- checking for setlocale... yes
- checking for clearerr_unlocked... yes
- checking for feof_unlocked... yes
-@@ -4670,7 +4490,6 @@
+@@ -4678,7 +4498,6 @@
Using the following target machine macro files:
../../master/gcc/config/vxworks-dummy.h
../../master/gcc/config/i386/i386.h
@@ -599,7 +581,7 @@
../../master/gcc/config/i386/unix.h
../../master/gcc/config/i386/att.h
../../master/gcc/config/dbxelf.h
-@@ -4679,7 +4498,9 @@
+@@ -4687,7 +4506,9 @@
../../master/gcc/config/linux.h
../../master/gcc/config/glibc-stdint.h
../../master/gcc/config/i386/linux.h
@@ -610,7 +592,7 @@
checking for __cxa_atexit... yes
checking whether NLS is requested... yes
checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
-@@ -4691,7 +4512,7 @@
+@@ -4699,7 +4520,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -619,7 +601,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -4707,12 +4528,12 @@
+@@ -4715,12 +4536,12 @@
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -634,7 +616,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -4724,11 +4545,11 @@
+@@ -4732,11 +4553,11 @@
checking whether the g++ linker (ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
@@ -648,7 +630,7 @@
checking how to hardcode library paths into programs... immediate
checking for as... /usr/bin/as
checking what assembler to use... /usr/bin/as
-@@ -4741,7 +4562,7 @@
+@@ -4749,7 +4570,7 @@
checking what objdump to use... /usr/bin/objdump
checking for readelf... /usr/bin/readelf
checking what readelf to use... /usr/bin/readelf
@@ -657,7 +639,7 @@
checking assembler for .balign and .p2align... yes
checking assembler for .p2align with maximum skip... yes
checking assembler for .literal16... no
-@@ -4870,12 +4691,12 @@
+@@ -4878,12 +4699,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -672,7 +654,7 @@
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether errno must be declared... no
-@@ -4945,13 +4766,13 @@
+@@ -4953,13 +4774,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -689,7 +671,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -4966,7 +4787,7 @@
+@@ -4974,7 +4795,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -698,7 +680,7 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -5281,7 +5102,7 @@
+@@ -5289,7 +5110,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -707,7 +689,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -5308,12 +5129,12 @@
+@@ -5316,12 +5137,12 @@
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -722,7 +704,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -5628,7 +5449,8 @@
+@@ -5636,7 +5457,8 @@
checking build system type... [ARCH]
checking host system type... [ARCH]
checking target system type... [ARCH]
@@ -732,7 +714,7 @@
checking whether byte ordering is bigendian... no
configure: updating cache ./config.cache
configure: creating ./config.status
-@@ -5641,12 +5463,8 @@
+@@ -5649,12 +5471,8 @@
source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
@@ -746,19 +728,19 @@
ranlib libdecnumber.a
make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
-@@ -5706,9 +5524,9 @@
+@@ -5714,9 +5532,9 @@
HEADERS="auto-host.h ansidecl.h" DEFINES="" \
/bin/bash ../../master/gcc/mkconfig.sh config.h
TARGET_CPU_DEFAULT="" \
- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
-+ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
++ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SINGLE_LIBC DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
/bin/bash ../../master/gcc/mkconfig.sh tm.h
--gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
-+gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt > tmp-optionlist
+-gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt > tmp-optionlist
/bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
echo timestamp > s-options
gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
-@@ -6338,8 +6156,7 @@
+@@ -6347,8 +6165,7 @@
echo timestamp > s-i386-bt
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
../../master/gcc/config/i386/i386.c -o i386.o
@@ -768,16 +750,16 @@
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
-@@ -6369,7 +6186,7 @@
+@@ -6378,7 +6195,7 @@
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
rm -rf libbackend.a
--ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
-+ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
ranlib libbackend.a
build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
checksum-options > cc1-checksum.c.tmp && \
-@@ -6660,7 +6477,7 @@
+@@ -6669,7 +6486,7 @@
make[4]: Leaving directory `/media/data[...]/hurd/master.build/prev-gcc'
echo timestamp > stmp-fixinc
rm -f mm_malloc.h
@@ -786,16 +768,16 @@
if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
-@@ -6881,7 +6698,7 @@
- (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-11-27 --section=1 rebuild-gcj-db.pod > doc/rebuild-gcj-db.1.T$$ && \
+@@ -6890,7 +6707,7 @@
+ (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-12-08 --section=1 rebuild-gcj-db.pod > doc/rebuild-gcj-db.1.T$$ && \
mv -f doc/rebuild-gcj-db.1.T$$ doc/rebuild-gcj-db.1) || \
(rm -f doc/rebuild-gcj-db.1.T$$ && exit 1)
--rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gcov.pod gfortran.pod fsf-funding.pod gcc.pod
+-rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcj.pod gfdl.pod cpp.pod gij.pod gc-analyze.pod gcov.pod gfortran.pod fsf-funding.pod gcc.pod
+rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcov.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gfortran.pod fsf-funding.pod gcc.pod
make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
Configuring stage 2 in ./lto-plugin
configure: creating cache ./config.cache
-@@ -6917,7 +6734,7 @@
+@@ -6926,7 +6743,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -804,7 +786,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -6944,12 +6761,12 @@
+@@ -6953,12 +6770,12 @@
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -819,7 +801,15 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -7012,7 +6829,8 @@
+@@ -6998,7 +6815,6 @@
+ libtool: install: warning: remember to run `libtool --finish [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0'
+ make all-am
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/lto-plugin'
+-make[4]: Nothing to be done for `all-am'.
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
+ mkdir -p -- [ARCH]/libgcc
+@@ -7022,7 +6838,8 @@
checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
@@ -829,7 +819,7 @@
checking whether fixed-point is supported... no
checking whether assembler supports CFI directives... yes
checking for __attribute__((visibility("hidden")))... yes
-@@ -7216,136 +7034,6 @@
+@@ -7226,136 +7043,6 @@
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
@@ -966,7 +956,7 @@
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
-@@ -7402,7 +7090,7 @@
+@@ -7412,7 +7099,7 @@
mv -f morestack.visT morestack.vis
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
rm -f libgcc.a
@@ -975,7 +965,7 @@
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
-@@ -7707,7 +7395,7 @@
+@@ -7717,7 +7404,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -984,7 +974,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -7733,12 +7421,12 @@
+@@ -7743,12 +7430,12 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -999,7 +989,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -7757,7 +7445,7 @@
+@@ -7767,7 +7454,7 @@
checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
@@ -1008,16 +998,16 @@
checking how to hardcode library paths into programs... immediate
checking for ANSI C header files... (cached) yes
checking whether time.h and sys/time.h may both be included... yes
-@@ -7920,7 +7608,7 @@
+@@ -7930,7 +7617,7 @@
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
mv -f .deps/affinity.Tpo .deps/affinity.Plo
- /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd/master.build.install/bin" -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
-libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
-@@ -7974,6 +7662,7 @@
+@@ -7984,6 +7671,7 @@
fi
make[6]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
[...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L. -Wall -L../libgfortran -fsyntax-only omp_lib.f90
@@ -1025,7 +1015,7 @@
make[5]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
-@@ -8185,6 +7874,7 @@
+@@ -8195,6 +7883,7 @@
checking valgrind.h usability... no
checking valgrind.h presence... no
checking for valgrind.h... no
@@ -1033,16 +1023,7 @@
configure: WARNING: fixed-point is not supported for this target, ignored
checking whether make sets $(MAKE)... yes
checking for gawk... gawk
-@@ -8250,7 +7940,7 @@
- checking for mbstowcs... yes
- checking for wcswidth... yes
- checking for mmap... yes
--checking for mincore... yes
-+checking for mincore... no
- checking for setlocale... yes
- checking for clearerr_unlocked... yes
- checking for feof_unlocked... yes
-@@ -8344,7 +8034,6 @@
+@@ -8357,7 +8046,6 @@
Using the following target machine macro files:
../../master/gcc/config/vxworks-dummy.h
../../master/gcc/config/i386/i386.h
@@ -1050,7 +1031,7 @@
../../master/gcc/config/i386/unix.h
../../master/gcc/config/i386/att.h
../../master/gcc/config/dbxelf.h
-@@ -8353,7 +8042,9 @@
+@@ -8366,7 +8054,9 @@
../../master/gcc/config/linux.h
../../master/gcc/config/glibc-stdint.h
../../master/gcc/config/i386/linux.h
@@ -1061,7 +1042,7 @@
checking for __cxa_atexit... yes
checking whether NLS is requested... yes
checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
-@@ -8365,7 +8056,7 @@
+@@ -8378,7 +8068,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1070,7 +1051,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -8381,12 +8072,12 @@
+@@ -8394,12 +8084,12 @@
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1085,7 +1066,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -8398,11 +8089,11 @@
+@@ -8411,11 +8101,11 @@
checking whether the g++ linker (ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
@@ -1099,7 +1080,7 @@
checking how to hardcode library paths into programs... immediate
checking for as... /usr/bin/as
checking what assembler to use... /usr/bin/as
-@@ -8415,7 +8106,7 @@
+@@ -8428,7 +8118,7 @@
checking what objdump to use... /usr/bin/objdump
checking for readelf... /usr/bin/readelf
checking what readelf to use... /usr/bin/readelf
@@ -1108,7 +1089,7 @@
checking assembler for .balign and .p2align... yes
checking assembler for .p2align with maximum skip... yes
checking assembler for .literal16... no
-@@ -8544,12 +8235,12 @@
+@@ -8557,12 +8247,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -1123,7 +1104,7 @@
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether errno must be declared... no
-@@ -8619,13 +8310,13 @@
+@@ -8632,13 +8322,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -1140,7 +1121,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -8640,7 +8331,7 @@
+@@ -8653,7 +8343,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -1149,7 +1130,7 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -8955,7 +8646,7 @@
+@@ -8968,7 +8658,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1158,7 +1139,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -8982,12 +8673,12 @@
+@@ -8995,12 +8685,12 @@
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1173,7 +1154,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -9302,7 +8993,8 @@
+@@ -9315,7 +9005,8 @@
checking build system type... [ARCH]
checking host system type... [ARCH]
checking target system type... [ARCH]
@@ -1183,7 +1164,7 @@
checking whether byte ordering is bigendian... no
configure: updating cache ./config.cache
configure: creating ./config.status
-@@ -9315,12 +9007,8 @@
+@@ -9328,12 +9019,8 @@
source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
@@ -1197,19 +1178,19 @@
ranlib libdecnumber.a
make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
-@@ -9380,9 +9068,9 @@
+@@ -9393,9 +9080,9 @@
HEADERS="auto-host.h ansidecl.h" DEFINES="" \
/bin/bash ../../master/gcc/mkconfig.sh config.h
TARGET_CPU_DEFAULT="" \
- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
-+ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
++ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SINGLE_LIBC DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
/bin/bash ../../master/gcc/mkconfig.sh tm.h
--gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
-+gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt > tmp-optionlist
+-gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt > tmp-optionlist
/bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
echo timestamp > s-options
gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
-@@ -10012,8 +9700,7 @@
+@@ -10026,8 +9713,7 @@
echo timestamp > s-i386-bt
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
../../master/gcc/config/i386/i386.c -o i386.o
@@ -1219,16 +1200,16 @@
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
-@@ -10043,7 +9730,7 @@
+@@ -10057,7 +9743,7 @@
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
rm -rf libbackend.a
--ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
-+ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
ranlib libbackend.a
build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
checksum-options > cc1-checksum.c.tmp && \
-@@ -10334,7 +10021,7 @@
+@@ -10348,7 +10034,7 @@
make[4]: Leaving directory `/media/data[...]/hurd/master.build/prev-gcc'
echo timestamp > stmp-fixinc
rm -f mm_malloc.h
@@ -1237,16 +1218,16 @@
if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
-@@ -10555,7 +10242,7 @@
- (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-11-27 --section=1 rebuild-gcj-db.pod > doc/rebuild-gcj-db.1.T$$ && \
+@@ -10569,7 +10255,7 @@
+ (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-12-08 --section=1 rebuild-gcj-db.pod > doc/rebuild-gcj-db.1.T$$ && \
mv -f doc/rebuild-gcj-db.1.T$$ doc/rebuild-gcj-db.1) || \
(rm -f doc/rebuild-gcj-db.1.T$$ && exit 1)
--rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gcov.pod gfortran.pod fsf-funding.pod gcc.pod
+-rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcj.pod gfdl.pod cpp.pod gij.pod gc-analyze.pod gcov.pod gfortran.pod fsf-funding.pod gcc.pod
+rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcov.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gfortran.pod fsf-funding.pod gcc.pod
make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
Configuring stage 3 in ./lto-plugin
configure: creating cache ./config.cache
-@@ -10591,7 +10278,7 @@
+@@ -10605,7 +10291,7 @@
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1255,7 +1236,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld option to reload object files... -r
-@@ -10618,12 +10305,12 @@
+@@ -10632,12 +10318,12 @@
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1270,7 +1251,15 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -10686,7 +10373,8 @@
+@@ -10677,7 +10363,6 @@
+ libtool: install: warning: remember to run `libtool --finish [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0'
+ make all-am
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/lto-plugin'
+-make[4]: Nothing to be done for `all-am'.
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
+ mkdir -p -- [ARCH]/libgcc
+@@ -10701,7 +10386,8 @@
checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
@@ -1280,7 +1269,7 @@
checking whether fixed-point is supported... no
checking whether assembler supports CFI directives... yes
checking for __attribute__((visibility("hidden")))... yes
-@@ -10890,136 +10578,6 @@
+@@ -10905,136 +10591,6 @@
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
-fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
@@ -1417,7 +1406,7 @@
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
-@@ -11076,7 +10634,7 @@
+@@ -11091,7 +10647,7 @@
mv -f morestack.visT morestack.vis
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
rm -f libgcc.a
@@ -1426,7 +1415,7 @@
if test -z "$objects"; then \
echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
-@@ -11381,7 +10939,7 @@
+@@ -11396,7 +10952,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1435,7 +1424,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -11407,12 +10965,12 @@
+@@ -11422,12 +10978,12 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1450,7 +1439,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -11431,7 +10989,7 @@
+@@ -11446,7 +11002,7 @@
checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
@@ -1459,16 +1448,16 @@
checking how to hardcode library paths into programs... immediate
checking for ANSI C header files... (cached) yes
checking whether time.h and sys/time.h may both be included... yes
-@@ -11594,7 +11152,7 @@
+@@ -11609,7 +11165,7 @@
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
mv -f .deps/affinity.Tpo .deps/affinity.Plo
- /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -no-undefined -bindir "[...]/hurd/master.build.install/bin" -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
-libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
-@@ -11660,8 +11218,8 @@
+@@ -11675,8 +11231,8 @@
make[3]: Leaving directory `/media/data[...]/hurd/master.build'
Comparing stages 2 and 3
warning: gcc/cc1-checksum.o differs
@@ -1478,7 +1467,7 @@
Comparison successful.
if false; then \
rm -rf stage2-*; \
-@@ -11835,7 +11393,7 @@
+@@ -11850,7 +11406,7 @@
checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
@@ -1487,7 +1476,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -11860,19 +11418,19 @@
+@@ -11875,19 +11431,19 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1510,7 +1499,7 @@
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
-@@ -11883,11 +11441,11 @@
+@@ -11898,11 +11454,11 @@
checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1524,7 +1513,7 @@
checking how to hardcode library paths into programs... immediate
checking for exception model to use... call frame
checking for compiler with PCH support... yes
-@@ -11897,7 +11455,7 @@
+@@ -11912,7 +11468,7 @@
checking for atomic builtins for short... yes
checking for atomic builtins for int... yes
checking for atomic builtins for long long... yes
@@ -1533,7 +1522,7 @@
checking for g++ that supports -ffunction-sections -fdata-sections... yes
checking for underlying I/O to use... stdio
checking for C locale to use... gnu
-@@ -11934,8 +11492,8 @@
+@@ -11949,8 +11505,8 @@
checking for additional debug build... no
checking for parallel mode support... yes
checking for extra compiler flags for building...
@@ -1544,7 +1533,7 @@
checking for ENOLINK... yes
checking for EPROTO... yes
checking for ENODATA... yes
-@@ -12186,7 +11744,7 @@
+@@ -12201,7 +11757,7 @@
checking for sys/resource.h... (cached) yes
checking for RLIMIT_DATA... yes
checking for RLIMIT_RSS... yes
@@ -1553,7 +1542,7 @@
checking for RLIMIT_AS... yes
checking for RLIMIT_FSIZE... yes
checking for testsuite resource limits support... yes
-@@ -12331,12 +11889,12 @@
+@@ -12347,12 +11903,12 @@
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
@@ -1568,7 +1557,7 @@
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether errno must be declared... no
-@@ -12406,13 +11964,13 @@
+@@ -12422,13 +11978,13 @@
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
@@ -1585,7 +1574,7 @@
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
-@@ -12427,7 +11985,7 @@
+@@ -12443,7 +11999,7 @@
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
@@ -1594,7 +1583,7 @@
checking for sysmp... no
checking for table... no
checking for times... yes
-@@ -12466,6 +12024,10 @@
+@@ -12482,6 +12038,10 @@
mkdir pic; \
else true; fi
touch stamp-picdir
@@ -1605,16 +1594,16 @@
if [ x"" != x ]; then \
[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -DHAVE_CONFIG_H -g -O2 -I. -I../../../master/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../master/libiberty/regex.c -o pic/regex.o; \
else true; fi
-@@ -13083,6 +12645,8 @@
+@@ -13099,6 +12659,8 @@
ln -s [...]/hurd/master/libstdc++-v3/config/io/basic_file_stdio.cc ./basic_file.cc || true
/bin/bash ../libtool --tag CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o basic_file.lo basic_file.cc
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -fPIC -DPIC -o .libs/basic_file.o
+basic_file.cc: In member function 'std::streamsize std::__basic_file::showmanyc()':
-+basic_file.cc:344:33: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
++basic_file.cc:345:33: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -o basic_file.o >/dev/null 2>&1
ln -s [...]/hurd/master/libstdc++-v3/config/locale/gnu/c_locale.cc ./c++locale.cc || true
/bin/bash ../libtool --tag CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o c++locale.lo c++locale.cc
-@@ -13115,7 +12679,7 @@
+@@ -13131,7 +12693,7 @@
libtool: link: (cd ".libs" && rm -f "libstdc++.so.6" && ln -s "libstdc++.so.6.0.15" "libstdc++.so.6")
libtool: link: (cd ".libs" && rm -f "libstdc++.so" && ln -s "libstdc++.so.6.0.15" "libstdc++.so")
libtool: link: (cd .libs/libstdc++.lax/libsupc++convenience.a && ar x "[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/../libsupc++/.libs/libsupc++convenience.a")
@@ -1623,7 +1612,7 @@
libtool: link: ranlib .libs/libstdc++.a
libtool: link: rm -fr .libs/libstdc++.lax
libtool: link: ( cd ".libs" && rm -f "libstdc++.la" && ln -s "../libstdc++.la" "libstdc++.la" )
-@@ -13335,7 +12899,7 @@
+@@ -13351,7 +12913,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1632,7 +1621,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -13350,19 +12914,19 @@
+@@ -13366,19 +12928,19 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1655,7 +1644,7 @@
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
-@@ -13576,7 +13140,7 @@
+@@ -13592,7 +13154,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1664,7 +1653,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -13591,12 +13155,12 @@
+@@ -13607,12 +13169,12 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1679,7 +1668,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -13775,7 +13339,7 @@
+@@ -13792,7 +13354,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1688,7 +1677,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -13801,12 +13365,12 @@
+@@ -13818,12 +13380,12 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1703,7 +1692,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -14288,7 +13852,7 @@
+@@ -14315,7 +13877,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1712,7 +1701,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -14314,19 +13878,19 @@
+@@ -14341,19 +13903,19 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1735,7 +1724,7 @@
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
-@@ -14343,7 +13907,7 @@
+@@ -14370,7 +13932,7 @@
checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
@@ -1744,7 +1733,7 @@
checking how to hardcode library paths into programs... immediate
checking whether the GNU Fortran compiler is working... yes
checking for special C compiler options needed for large files... no
-@@ -17086,7 +16650,7 @@
+@@ -17113,7 +16675,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1753,7 +1742,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -17112,12 +16676,12 @@
+@@ -17139,12 +16701,12 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1768,7 +1757,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -17129,11 +16693,11 @@
+@@ -17156,11 +16718,11 @@
checking whether the [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking for [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1782,7 +1771,7 @@
checking how to hardcode library paths into programs... immediate
checking for thread model used by GCC... posix
checking for dlopen in -ldl... yes
-@@ -17190,7 +16754,7 @@
+@@ -17217,7 +16779,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1791,7 +1780,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -17217,12 +16781,12 @@
+@@ -17244,12 +16806,12 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1806,15 +1795,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -17254,7 +16818,6 @@
- make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/boehm-gc/include'
- make all-am
- make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/boehm-gc/include'
--make[4]: Nothing to be done for `all-am'.
- make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/boehm-gc/include'
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/boehm-gc/include'
- make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/boehm-gc'
-@@ -17535,6 +17098,11 @@
+@@ -17561,6 +17123,11 @@
-I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include \
-o thr.lo
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/thr.c -c -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -fPIC -DPIC -o .libs/thr.o
@@ -1826,7 +1807,7 @@
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/thr.c -c -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -o thr.o >/dev/null 2>&1
/bin/bash ./libtool --mode=compile [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/exception.c -c \
-I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -fexceptions -Wno-deprecated-declarations \
-@@ -17634,7 +17202,7 @@
+@@ -17660,7 +17227,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1835,7 +1816,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -17660,12 +17228,12 @@
+@@ -17686,12 +17253,12 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1850,7 +1831,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -17910,7 +17478,7 @@
+@@ -17936,7 +17503,7 @@
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
checking whether ln -s works... yes
@@ -1859,7 +1840,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -17936,12 +17504,12 @@
+@@ -17962,12 +17529,12 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1874,7 +1855,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -18000,13 +17568,13 @@
+@@ -18026,13 +17593,13 @@
checking for [ARCH]-dlltool... dlltool
checking for gawk... (cached) gawk
checking for jar... jar
@@ -1890,7 +1871,7 @@
checking which variable specifies run-time library path... LD_LIBRARY_PATH
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
-@@ -18017,7 +17585,7 @@
+@@ -18043,7 +17610,7 @@
checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
@@ -1899,7 +1880,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -18043,19 +17611,19 @@
+@@ -18069,19 +17636,19 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1922,7 +1903,7 @@
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
-@@ -18066,11 +17634,11 @@
+@@ -18092,11 +17659,11 @@
checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
@@ -1936,7 +1917,7 @@
checking how to hardcode library paths into programs... immediate
checking for [ARCH]-gcj... [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include
checking dependency style of [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include ... gcc3
-@@ -18079,7 +17647,7 @@
+@@ -18105,7 +17672,7 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC works... yes
@@ -1945,7 +1926,7 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
-@@ -18132,8 +17700,8 @@
+@@ -18158,8 +17725,8 @@
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for dladdr in -ldl... yes
@@ -1956,7 +1937,7 @@
checking for ld used by GCC... [...]/hurd/master.build/./gcc/collect-ld
checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... (cached) yes
checking for shared library run path origin... done
-@@ -18269,8 +17837,8 @@
+@@ -18295,8 +17862,8 @@
config.status: linking ../../../master/libjava/sysdep/i386/locks.h to sysdep/locks.h
config.status: linking ../../../master/libjava/sysdep/generic/backtrace.h to sysdep/backtrace.h
config.status: linking ../../../master/libjava/sysdep/descriptor-n.h to sysdep/descriptor.h
@@ -1967,7 +1948,7 @@
config.status: executing default-1 commands
Adding multilib support to Makefile in ../../../master/libjava
multidirs=
-@@ -18330,7 +17898,7 @@
+@@ -18356,7 +17923,7 @@
checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) [...]/hurd/master.build/./gcc/nm
checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... (cached) BSD nm
@@ -1976,7 +1957,7 @@
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... (cached) -r
-@@ -18345,12 +17913,12 @@
+@@ -18371,12 +17938,12 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
@@ -1991,7 +1972,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -18373,11 +17941,11 @@
+@@ -18399,11 +17966,11 @@
checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
@@ -2005,7 +1986,7 @@
checking how to hardcode library paths into programs... immediate
checking __attribute__((,,))... yes
checking __attribute__((unused))... yes
-@@ -18388,9 +17956,9 @@
+@@ -18414,9 +17981,9 @@
checking for sys/types.h... (cached) yes
checking for sys/config.h... (cached) no
checking for sys/ioctl.h... (cached) yes
@@ -2018,7 +1999,7 @@
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking utime.h usability... yes
-@@ -18413,9 +17981,9 @@
+@@ -18439,9 +18006,9 @@
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
@@ -2031,7 +2012,7 @@
checking for ifaddrs.h... (cached) yes
checking netinet/in_systm.h usability... yes
checking netinet/in_systm.h presence... yes
-@@ -18472,9 +18040,9 @@
+@@ -18498,9 +18065,9 @@
checking for statvfs... yes
checking for mmap... (cached) yes
checking for munmap... yes
@@ -2044,7 +2025,7 @@
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... (cached) yes
-@@ -18485,7 +18053,7 @@
+@@ -18511,7 +18078,7 @@
checking for getifaddrs... (cached) yes
checking for kqueue... no
checking for kevent... no
@@ -2053,7 +2034,7 @@
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
-@@ -18510,13 +18078,13 @@
+@@ -18536,13 +18103,13 @@
checking gmp.h usability... yes
checking gmp.h presence... yes
checking for gmp.h... yes
@@ -2069,7 +2050,7 @@
checking for a jar-like tool... trying fastjar, gjar and jar
checking for fastjar... /usr/bin/fastjar
checking whether to regenerate parsers with jay... no
-@@ -18653,7 +18221,7 @@
+@@ -18679,7 +18246,7 @@
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for dlfcn.h... (cached) yes
@@ -2078,7 +2059,7 @@
checking command to parse [...]/hurd/master.build/./gcc/nm output from [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include object... (cached) ok
checking for objdir... (cached) .libs
checking for [ARCH]-ar... (cached) ar
-@@ -18666,7 +18234,7 @@
+@@ -18692,7 +18259,7 @@
checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
@@ -2087,7 +2068,7 @@
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
-@@ -18677,7 +18245,7 @@
+@@ -18703,7 +18270,7 @@
checking for library containing opendir... none required
checking which extension is used for loadable modules... .so
checking which variable specifies run-time library path... (cached) LD_LIBRARY_PATH
@@ -2096,7 +2077,14 @@
checking for objdir... .libs
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for shl_load... (cached) no
-@@ -18906,7 +18474,6 @@
+@@ -18925,14 +18492,12 @@
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
+ make all-am
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
+-make[4]: Nothing to be done for `all-am'.
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
+ Making all in include
make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
make all-am
make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
@@ -2104,7 +2092,7 @@
make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
Making all in classpath
-@@ -18922,705 +18489,705 @@
+@@ -18948,705 +18513,705 @@
Adding java source files from VM directory [...]/hurd/master.build/[ARCH]/libjava
Adding generated files in builddir '..'.
touch compile-classes
@@ -3444,7 +3432,7 @@
touch resources
make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/lib'
Making all in doc
-@@ -19743,7 +19310,6 @@
+@@ -19769,7 +19334,6 @@
make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
make all-am
make[5]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
@@ -3452,7 +3440,7 @@
make[5]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
Making all in native
-@@ -19972,30 +19538,30 @@
+@@ -19998,30 +19562,30 @@
echo -n > vm-tools.lst; \
fi
cat classes.lst asm.lst vm-tools.lst > all-classes.lst
@@ -3499,7 +3487,7 @@
cp ../../../../../master/libjava/classpath/tools/resource/com/sun/tools/javac/messages.properties classes/com/sun/tools/javac/messages.properties
cp ../../../../../master/libjava/classpath/tools/resource/sun/rmi/rmic/messages.properties classes/sun/rmi/rmic/messages.properties
cp -pR ../../../../../master/libjava/classpath/tools/asm .
-@@ -20271,6 +19837,9 @@
+@@ -20297,6 +19861,9 @@
/bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF $depbase.Tpo -c -o gnu/gcj/util/natGCInfo.lo ../../../master/libjava/gnu/gcj/util/natGCInfo.cc &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../master/libjava/gnu/gcj/util/natGCInfo.cc -fPIC -DPIC -o gnu/gcj/util/.libs/natGCInfo.o
@@ -3509,7 +3497,7 @@
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../master/libjava/gnu/gcj/util/natGCInfo.cc -o gnu/gcj/util/natGCInfo.o >/dev/null 2>&1
depbase=`echo gnu/java/lang/natMainThread.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/lang/natMainThread.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/lang/natMainThread.lo ../../../master/libjava/gnu/java/lang/natMainThread.cc &&\
-@@ -20331,6 +19900,8 @@
+@@ -20357,6 +19924,8 @@
/bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/natPlainSocketImpl.lo gnu/java/net/natPlainSocketImpl.cc &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -fPIC -DPIC -o gnu/java/net/.libs/natPlainSocketImpl.o
@@ -3518,7 +3506,7 @@
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -o gnu/java/net/natPlainSocketImpl.o >/dev/null 2>&1
depbase=`echo gnu/java/net/protocol/core/natCoreInputStream.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/protocol/core/natCoreInputStream.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/protocol/core/natCoreInputStream.lo ../../../master/libjava/gnu/java/net/protocol/core/natCoreInputStream.cc &&\
-@@ -20361,6 +19932,8 @@
+@@ -20387,6 +19956,8 @@
/bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/nio/channels/natFileChannelImpl.cc &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -fPIC -DPIC -o gnu/java/nio/channels/.libs/natFileChannelImpl.o
@@ -3527,17 +3515,17 @@
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -o gnu/java/nio/channels/natFileChannelImpl.o >/dev/null 2>&1
depbase=`echo gnu/java/security/jce/prng/natVMSecureRandom.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/security/jce/prng/natVMSecureRandom.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/security/jce/prng/natVMSecureRandom.lo gnu/java/security/jce/prng/natVMSecureRandom.cc &&\
-@@ -23336,8 +22909,7 @@
+@@ -23362,8 +22933,7 @@
/bin/bash ./libtool --tag=GCJ --mode=compile [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c -o org-xml.lo @org-xml.list
libtool: compile: [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -fPIC -o .libs/org-xml.o
libtool: compile: [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -o org-xml.o >/dev/null 2>&1
-/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L[...]/hurd/master.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd/master.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -rpath [...]/hurd/master.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu/java/security/jce/hash.lo gnu/java/security/jce/prng.lo gnu/java/security/jce/sig.lo gnu/java/security/key.lo gnu/java/security/key/dss.lo gnu/java/security/key/rsa.lo gnu/java/security/pkcs.lo gnu/java/security/prng.lo gnu/java/security/provider.lo gnu/java/security/sig.lo gnu/java/security/sig/dss.lo gnu/java/security/sig/rsa.lo gnu/java/security/util.lo gnu/java/security/x509.lo gnu/java/security/x509/ext.lo gnu/java/text.lo gnu/java/util.lo gnu/java/util/jar.lo gnu/java/util/prefs.lo gnu/java/util/regex.lo gnu/javax/activation/viewers.lo gnu/javax/crypto.lo gnu/javax/crypto/assembly.lo gnu/javax/crypto/cipher.lo gnu/javax/crypto/jce.lo gnu/javax/crypto/jce/cipher.lo gnu/javax/crypto/jce/key.lo gnu/javax/crypto/jce/keyring.lo gnu/javax/crypto/jce/mac.lo gnu/javax/crypto/jce/params.lo gnu/javax/crypto/jce/prng.lo gnu/javax/crypto/jce/sig.lo gnu/javax/crypto/jce/spec.lo gnu/javax/crypto/key.lo gnu/javax/crypto/key/dh.lo gnu/javax/crypto/key/srp6.lo gnu/javax/crypto/keyring.lo gnu/javax/crypto/kwa.lo gnu/javax/crypto/mac.lo gnu/javax/crypto/mode.lo gnu/javax/crypto/pad.lo gnu/javax/crypto/prng.lo gnu/javax/crypto/sasl.lo gnu/javax/crypto/sasl/anonymous.lo gnu/javax/crypto/sasl/crammd5.lo gnu/javax/crypto/sasl/plain.lo gnu/javax/crypto/sasl/srp.lo gnu/javax/imageio.lo gnu/javax/imageio/bmp.lo gnu/javax/imageio/gif.lo gnu/javax/imageio/jpeg.lo gnu/javax/imageio/png.lo gnu/javax/naming/giop.lo gnu/javax/naming/ictxImpl/trans.lo gnu/javax/naming/jndi/url/corbaname.lo gnu/javax/naming/jndi/url/rmi.lo gnu/javax/net/ssl.lo gnu/javax/net/ssl/provider.lo gnu/javax/print.lo gnu/javax/print/ipp.lo gnu/javax/print/ipp/attribute.lo gnu/javax/print/ipp/attribute/defaults.lo gnu/javax/print/ipp/attribute/job.lo gnu/javax/print/ipp/attribute/printer.lo gnu/javax/print/ipp/attribute/supported.lo gnu/javax/security/auth.lo gnu/javax/security/auth/callback.lo gnu/javax/security/auth/login.lo gnu/javax/sound.lo gnu/javax/sound/sampled/AU.lo gnu/javax/sound/sampled/WAV.lo gnu/javax/swing/plaf/gnu.lo gnu/javax/swing/plaf/metal.lo gnu/javax/swing/text/html.lo gnu/javax/swing/text/html/css.lo gnu/javax/swing/text/html/parser/GnuParserDelegator.lo gnu/javax/swing/text/html/parser/HTML_401F.lo gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.lo gnu/javax/swing/text/html/parser/gnuDTD.lo gnu/javax/swing/text/html/parser/htmlAttributeSet.lo gnu/javax/swing/text/html/parser/htmlValidator.lo gnu/javax/swing/text/html/parser/models.lo gnu/javax/swing/text/html/parser/support.lo gnu/javax/swing/text/html/parser/support/low.lo gnu/javax/swing/tree.lo java/applet.lo java/awt.lo java/awt/color.lo java/awt/datatransfer.lo java/awt/dnd.lo java/awt/dnd/peer.lo java/awt/event.lo java/awt/font.lo java/awt/geom.lo java/awt/im.lo java/awt/im/spi.lo java/awt/image.lo java/awt/image/renderable.lo java/awt/peer.lo java/awt/print.lo java/beans.lo java/beans/beancontext.lo java/io.lo java/lang.lo java/lang/annotation.lo java/lang/instrument.lo java/lang/ref.lo java/lang/reflect.lo java/math.lo java/net.lo java/nio.lo java/nio/channels.lo java/nio/channels/spi.lo java/nio/charset.lo java/nio/charset/spi.lo java/rmi.lo java/rmi/activation.lo java/rmi/dgc.lo java/rmi/registry.lo java/rmi/server.lo java/security.lo java/security/acl.lo java/security/cert.lo java/security/interfaces.lo java/security/spec.lo java/sql.lo java/text.lo java/text/spi.lo java/util.lo java/util/concurrent.lo java/util/concurrent/atomic.lo java/util/concurrent/locks.lo java/util/jar.lo java/util/logging.lo java/util/prefs.lo java/util/regex.lo java/util/spi.lo java/util/zip.lo javax/accessibility.lo javax/activation.lo javax/activity.lo javax/crypto.lo javax/crypto/interfaces.lo javax/crypto/spec.lo javax/management.lo javax/management/loading.lo javax/management/openmbean.lo javax/management/remote.lo javax/management/remote/rmi.lo javax/naming.lo javax/naming/directory.lo javax/naming/event.lo javax/naming/ldap.lo javax/naming/spi.lo javax/net.lo javax/net/ssl.lo javax/print.lo javax/print/attribute.lo javax/print/attribute/standard.lo javax/print/event.lo javax/security/auth.lo javax/security/auth/callback.lo javax/security/auth/kerberos.lo javax/security/auth/login.lo javax/security/auth/spi.lo javax/security/auth/x500.lo javax/security/cert.lo javax/security/sasl.lo javax/sound/midi.lo javax/sound/midi/spi.lo javax/sound/sampled.lo javax/sound/sampled/spi.lo javax/sql.lo javax/swing.lo javax/swing/border.lo javax/swing/colorchooser.lo javax/swing/event.lo javax/swing/filechooser.lo javax/swing/plaf.lo javax/swing/plaf/basic.lo javax/swing/plaf/metal.lo javax/swing/plaf/multi.lo javax/swing/plaf/synth.lo javax/swing/table.lo javax/swing/text.lo javax/swing/text/html.lo javax/swing/text/html/parser.lo javax/swing/text/rtf.lo javax/swing/tree.lo javax/swing/undo.lo javax/tools.lo javax/transaction.lo javax/transaction/xa.lo org/ietf/jgss.lo sun/awt.lo sun/misc.lo sun/reflect.lo sun/reflect/annotation.lo sun/reflect/misc.lo gnu/classpath/jdwp.lo gnu/classpath/jdwp/event.lo gnu/classpath/jdwp/event/filters.lo gnu/classpath/jdwp/exception.lo gnu/classpath/jdwp/id.lo gnu/classpath/jdwp/processor.lo gnu/classpath/jdwp/transport.lo gnu/classpath/jdwp/util.lo gnu/classpath/jdwp/value.lo gnu/gcj/jvmti.lo gnu/java/awt/font/fonts.properties.lo gnu/java/awt/peer/gtk/font.properties.lo gnu/java/awt/peer/x/fonts.properties.lo gnu/java/awt/peer/x/xfonts.properties.lo gnu/java/locale/LocaleInformation.properties.lo gnu/java/locale/LocaleInformation_aa.properties.lo gnu/java/locale/LocaleInformation_aa_DJ.properties.lo gnu/java/locale/LocaleInformation_aa_ER.properties.lo gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.lo gnu/java/locale/LocaleInformation_aa_ET.properties.lo gnu/java/locale/LocaleInformation_af.properties.lo gnu/java/locale/LocaleInformation_af_NA.properties.lo gnu/java/locale/LocaleInformation_af_ZA.properties.lo gnu/java/locale/LocaleInformation_ak.properties.lo gnu/java/locale/LocaleInformation_am.properties.lo gnu/java/locale/LocaleInformation_am_ET.properties.lo gnu/java/locale/LocaleInformation_ar.properties.lo gnu/java/locale/LocaleInformation_ar_DZ.properties.lo gnu/java/locale/LocaleInformation_ar_JO.properties.lo gnu/java/locale/LocaleInformation_ar_LB.properties.lo gnu/java/locale/LocaleInformation_ar_MA.properties.lo gnu/java/locale/LocaleInformation_ar_QA.properties.lo gnu/java/locale/LocaleInformation_ar_SA.properties.lo gnu/java/locale/LocaleInformation_ar_SY.properties.lo gnu/java/locale/LocaleInformation_ar_TN.properties.lo gnu/java/locale/LocaleInformation_ar_YE.properties.lo gnu/java/locale/LocaleInformation_as.properties.lo gnu/java/locale/LocaleInformation_as_IN.properties.lo gnu/java/locale/LocaleInformation_az.properties.lo gnu/java/locale/LocaleInformation_az_Cyrl.properties.lo gnu/java/locale/LocaleInformation_be.properties.lo gnu/java/locale/LocaleInformation_be_BY.properties.lo gnu/java/locale/LocaleInformation_bg.properties.lo gnu/java/locale/LocaleInformation_bg_BG.properties.lo gnu/java/locale/LocaleInformation_bn.properties.lo gnu/java/locale/LocaleInformation_bn_IN.properties.lo gnu/java/locale/LocaleInformation_bo.properties.lo gnu/java/locale/LocaleInformation_bs.properties.lo gnu/java/locale/LocaleInformation_byn.properties.lo gnu/java/locale/LocaleInformation_byn_ER.properties.lo gnu/java/locale/LocaleInformation_ca.properties.lo gnu/java/locale/LocaleInformation_ca_ES.properties.lo gnu/java/locale/LocaleInformation_cch.properties.lo gnu/java/locale/LocaleInformation_cop.properties.lo gnu/java/locale/LocaleInformation_cs.properties.lo gnu/java/locale/LocaleInformation_cs_CZ.properties.lo gnu/java/locale/LocaleInformation_cy.properties.lo gnu/java/locale/LocaleInformation_cy_GB.properties.lo gnu/java/locale/LocaleInformation_da.properties.lo gnu/java/locale/LocaleInformation_da_DK.properties.lo gnu/java/locale/LocaleInformation_de.properties.lo gnu/java/locale/LocaleInformation_de_AT.properties.lo gnu/java/locale/LocaleInformation_de_BE.properties.lo gnu/java/locale/LocaleInformation_de_CH.properties.lo gnu/java/locale/LocaleInformation_de_DE.properties.lo gnu/java/locale/LocaleInformation_de_LI.properties.lo gnu/java/locale/LocaleInformation_de_LU.properties.lo gnu/java/locale/LocaleInformation_dv.properties.lo gnu/java/locale/LocaleInformation_dv_MV.properties.lo gnu/java/locale/LocaleInformation_dz.properties.lo gnu/java/locale/LocaleInformation_dz_BT.properties.lo gnu/java/locale/LocaleInformation_ee.properties.lo gnu/java/locale/LocaleInformation_el.properties.lo gnu/java/locale/LocaleInformation_el_CY.properties.lo gnu/java/locale/LocaleInformation_el_GR.properties.lo gnu/java/locale/LocaleInformation_en.properties.lo gnu/java/locale/LocaleInformation_en_AS.properties.lo gnu/java/locale/LocaleInformation_en_AU.properties.lo gnu/java/locale/LocaleInformation_en_BE.properties.lo gnu/java/locale/LocaleInformation_en_BW.properties.lo gnu/java/locale/LocaleInformation_en_BZ.properties.lo gnu/java/locale/LocaleInformation_en_CA.properties.lo gnu/java/locale/LocaleInformation_en_Dsrt.properties.lo gnu/java/locale/LocaleInformation_en_GB.properties.lo gnu/java/locale/LocaleInformation_en_GU.properties.lo gnu/java/locale/LocaleInformation_en_HK.properties.lo gnu/java/locale/LocaleInformation_en_IE.properties.lo gnu/java/locale/LocaleInformation_en_IN.properties.lo gnu/java/locale/LocaleInformation_en_JM.properties.lo gnu/java/locale/LocaleInformation_en_MH.properties.lo gnu/java/locale/LocaleInformation_en_MP.properties.lo gnu/java/locale/LocaleInformation_en_MT.properties.lo gnu/java/locale/LocaleInformation_en_NA.properties.lo gnu/java/locale/LocaleInformation_en_NZ.properties.lo gnu/java/locale/LocaleInformation_en_PH.properties.lo gnu/java/locale/LocaleInformation_en_PK.properties.lo gnu/java/locale/LocaleInformation_en_SG.properties.lo gnu/java/locale/LocaleInformation_en_Shaw.properties.lo gnu/java/locale/LocaleInformation_en_TT.properties.lo gnu/java/locale/LocaleInformation_en_UM.properties.lo gnu/java/locale/LocaleInformation_en_US.properties.lo gnu/java/locale/LocaleInformation_en_US_POSIX.properties.lo gnu/java/locale/LocaleInformation_en_VI.properties.lo gnu/java/locale/LocaleInformation_en_ZA.properties.lo gnu/java/locale/LocaleInformation_en_ZW.properties.lo gnu/java/locale/LocaleInformation_eo.properties.lo gnu/java/locale/LocaleInformation_es.properties.lo gnu/java/locale/LocaleInformation_es_AR.properties.lo gnu/java/locale/LocaleInformation_es_BO.properties.lo gnu/java/locale/LocaleInformation_es_CL.properties.lo gnu/java/locale/LocaleInformation_es_CO.properties.lo gnu/java/locale/LocaleInformation_es_CR.properties.lo gnu/java/locale/LocaleInformation_es_DO.properties.lo gnu/java/locale/LocaleInformation_es_EC.properties.lo gnu/java/locale/LocaleInformation_es_ES.properties.lo gnu/java/locale/LocaleInformation_es_GT.properties.lo gnu/java/locale/LocaleInformation_es_HN.properties.lo gnu/java/locale/LocaleInformation_es_MX.properties.lo gnu/java/locale/LocaleInformation_es_NI.properties.lo gnu/java/locale/LocaleInformation_es_PA.properties.lo gnu/java/locale/LocaleInformation_es_PE.properties.lo gnu/java/locale/LocaleInformation_es_PR.properties.lo gnu/java/locale/LocaleInformation_es_PY.properties.lo gnu/java/locale/LocaleInformation_es_SV.properties.lo gnu/java/locale/LocaleInformation_es_US.properties.lo gnu/java/locale/LocaleInformation_es_UY.properties.lo gnu/java/locale/LocaleInformation_es_VE.properties.lo gnu/java/locale/LocaleInformation_et.properties.lo gnu/java/locale/LocaleInformation_et_EE.properties.lo gnu/java/locale/LocaleInformation_eu.properties.lo gnu/java/locale/LocaleInformation_eu_ES.properties.lo gnu/java/locale/LocaleInformation_fa.properties.lo gnu/java/locale/LocaleInformation_fa_AF.properties.lo gnu/java/locale/LocaleInformation_fa_IR.properties.lo gnu/java/locale/LocaleInformation_fi.properties.lo gnu/java/locale/LocaleInformation_fi_FI.properties.lo gnu/java/locale/LocaleInformation_fil.properties.lo gnu/java/locale/LocaleInformation_fo.properties.lo gnu/java/locale/LocaleInformation_fo_FO.properties.lo gnu/java/locale/LocaleInformation_fr.properties.lo gnu/java/locale/LocaleInformation_fr_BE.properties.lo gnu/java/locale/LocaleInformation_fr_CA.properties.lo gnu/java/locale/LocaleInformation_fr_CH.properties.lo gnu/java/locale/LocaleInformation_fr_LU.properties.lo gnu/java/locale/LocaleInformation_fur.properties.lo gnu/java/locale/LocaleInformation_ga.properties.lo gnu/java/locale/LocaleInformation_ga_IE.properties.lo gnu/java/locale/LocaleInformation_gaa.properties.lo gnu/java/locale/LocaleInformation_gez.properties.lo gnu/java/locale/LocaleInformation_gez_ER.properties.lo gnu/java/locale/LocaleInformation_gez_ET.properties.lo gnu/java/locale/LocaleInformation_gl.properties.lo gnu/java/locale/LocaleInformation_gl_ES.properties.lo gnu/java/locale/LocaleInformation_gu.properties.lo gnu/java/locale/LocaleInformation_gu_IN.properties.lo gnu/java/locale/LocaleInformation_gv.properties.lo gnu/java/locale/LocaleInformation_gv_GB.properties.lo gnu/java/locale/LocaleInformation_ha.properties.lo gnu/java/locale/LocaleInformation_ha_Arab.properties.lo gnu/java/locale/LocaleInformation_haw.properties.lo gnu/java/locale/LocaleInformation_haw_US.properties.lo gnu/java/locale/LocaleInformation_he.properties.lo gnu/java/locale/LocaleInformation_he_IL.properties.lo gnu/java/locale/LocaleInformation_hi.properties.lo gnu/java/locale/LocaleInformation_hi_IN.properties.lo gnu/java/locale/LocaleInformation_hr.properties.lo gnu/java/locale/LocaleInformation_hu.properties.lo gnu/java/locale/LocaleInformation_hu_HU.properties.lo gnu/java/locale/LocaleInformation_hy.properties.lo gnu/java/locale/LocaleInformation_hy_AM.properties.lo gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.lo gnu/java/locale/LocaleInformation_ia.properties.lo gnu/java/locale/LocaleInformation_id.properties.lo gnu/java/locale/LocaleInformation_id_ID.properties.lo gnu/java/locale/LocaleInformation_ig.properties.lo gnu/java/locale/LocaleInformation_ii.properties.lo gnu/java/locale/LocaleInformation_is.properties.lo gnu/java/locale/LocaleInformation_is_IS.properties.lo gnu/java/locale/LocaleInformation_it.properties.lo gnu/java/locale/LocaleInformation_it_CH.properties.lo gnu/java/locale/LocaleInformation_it_IT.properties.lo gnu/java/locale/LocaleInformation_iu.properties.lo gnu/java/locale/LocaleInformation_ja.properties.lo gnu/java/locale/LocaleInformation_ja_JP.properties.lo gnu/java/locale/LocaleInformation_ka.properties.lo gnu/java/locale/LocaleInformation_kaj.properties.lo gnu/java/locale/LocaleInformation_kam.properties.lo gnu/java/locale/LocaleInformation_kcg.properties.lo gnu/java/locale/LocaleInformation_kfo.properties.lo gnu/java/locale/LocaleInformation_kk.properties.lo gnu/java/locale/LocaleInformation_kk_KZ.properties.lo gnu/java/locale/LocaleInformation_kl.properties.lo gnu/java/locale/LocaleInformation_kl_GL.properties.lo gnu/java/locale/LocaleInformation_km.properties.lo gnu/java/locale/LocaleInformation_km_KH.properties.lo gnu/java/locale/LocaleInformation_kn.properties.lo gnu/java/locale/LocaleInformation_kn_IN.properties.lo gnu/java/locale/LocaleInformation_ko.properties.lo gnu/java/locale/LocaleInformation_ko_KR.properties.lo gnu/java/locale/LocaleInformation_kok.properties.lo gnu/java/locale/LocaleInformation_kok_IN.properties.lo gnu/java/locale/LocaleInformation_kpe.properties.lo gnu/java/locale/LocaleInformation_ku.properties.lo gnu/java/locale/LocaleInformation_ku_Arab.properties.lo gnu/java/locale/LocaleInformation_ku_Latn.properties.lo gnu/java/locale/LocaleInformation_kw.properties.lo gnu/java/locale/LocaleInformation_kw_GB.properties.lo gnu/java/locale/LocaleInformation_ky.properties.lo gnu/java/locale/LocaleInformation_ln.properties.lo gnu/java/locale/LocaleInformation_lo.properties.lo gnu/java/locale/LocaleInformation_lo_LA.properties.lo gnu/java/locale/LocaleInformation_lt.properties.lo gnu/java/locale/LocaleInformation_lt_LT.properties.lo gnu/java/locale/LocaleInformation_lv.properties.lo gnu/java/locale/LocaleInformation_lv_LV.properties.lo gnu/java/locale/LocaleInformation_mk.properties.lo gnu/java/locale/LocaleInformation_ml.properties.lo gnu/java/locale/LocaleInformation_ml_IN.properties.lo gnu/java/locale/LocaleInformation_mn.properties.lo gnu/java/locale/LocaleInformation_mr.properties.lo gnu/java/locale/LocaleInformation_mr_IN.properties.lo gnu/java/locale/LocaleInformation_ms.properties.lo gnu/java/locale/LocaleInformation_ms_BN.properties.lo gnu/java/locale/LocaleInformation_ms_MY.properties.lo gnu/java/locale/LocaleInformation_mt.properties.lo gnu/java/locale/LocaleInformation_mt_MT.properties.lo gnu/java/locale/LocaleInformation_my.properties.lo gnu/java/locale/LocaleInformation_nb.properties.lo gnu/java/locale/LocaleInformation_nb_NO.properties.lo gnu/java/locale/LocaleInformation_ne.properties.lo gnu/java/locale/LocaleInformation_nl.properties.lo gnu/java/locale/LocaleInformation_nl_BE.properties.lo gnu/java/locale/LocaleInformation_nl_NL.properties.lo gnu/java/locale/LocaleInformation_nn.properties.lo gnu/java/locale/LocaleInformation_nn_NO.properties.lo gnu/java/locale/LocaleInformation_nr.properties.lo gnu/java/locale/LocaleInformation_nso.properties.lo gnu/java/locale/LocaleInformation_ny.properties.lo gnu/java/locale/LocaleInformation_om.properties.lo gnu/java/locale/LocaleInformation_om_ET.properties.lo gnu/java/locale/LocaleInformation_om_KE.properties.lo gnu/java/locale/LocaleInformation_or.properties.lo gnu/java/locale/LocaleInformation_or_IN.properties.lo gnu/java/locale/LocaleInformation_pa.properties.lo gnu/java/locale/LocaleInformation_pa_Arab.properties.lo gnu/java/locale/LocaleInformation_pa_IN.properties.lo gnu/java/locale/LocaleInformation_pl.properties.lo gnu/java/locale/LocaleInformation_pl_PL.properties.lo gnu/java/locale/LocaleInformation_ps.properties.lo gnu/java/locale/LocaleInformation_ps_AF.properties.lo gnu/java/locale/LocaleInformation_pt.properties.lo gnu/java/locale/LocaleInformation_pt_BR.properties.lo gnu/java/locale/LocaleInformation_pt_PT.properties.lo gnu/java/locale/LocaleInformation_ro.properties.lo gnu/java/locale/LocaleInformation_ro_RO.properties.lo gnu/java/locale/LocaleInformation_ru.properties.lo gnu/java/locale/LocaleInformation_ru_RU.properties.lo gnu/java/locale/LocaleInformation_ru_UA.properties.lo gnu/java/locale/LocaleInformation_rw.properties.lo gnu/java/locale/LocaleInformation_sa.properties.lo gnu/java/locale/LocaleInformation_sa_IN.properties.lo gnu/java/locale/LocaleInformation_se.properties.lo gnu/java/locale/LocaleInformation_se_FI.properties.lo gnu/java/locale/LocaleInformation_si.properties.lo gnu/java/locale/LocaleInformation_sid.properties.lo gnu/java/locale/LocaleInformation_sid_ET.properties.lo gnu/java/locale/LocaleInformation_sk.properties.lo gnu/java/locale/LocaleInformation_sk_SK.properties.lo gnu/java/locale/LocaleInformation_sl.properties.lo gnu/java/locale/LocaleInformation_sl_SI.properties.lo gnu/java/locale/LocaleInformation_so.properties.lo gnu/java/locale/LocaleInformation_so_DJ.properties.lo gnu/java/locale/LocaleInformation_so_ET.properties.lo gnu/java/locale/LocaleInformation_so_KE.properties.lo gnu/java/locale/LocaleInformation_so_SO.properties.lo gnu/java/locale/LocaleInformation_sq.properties.lo gnu/java/locale/LocaleInformation_sq_AL.properties.lo gnu/java/locale/LocaleInformation_sr.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.lo gnu/java/locale/LocaleInformation_ss.properties.lo gnu/java/locale/LocaleInformation_ssy.properties.lo gnu/java/locale/LocaleInformation_st.properties.lo gnu/java/locale/LocaleInformation_sv.properties.lo gnu/java/locale/LocaleInformation_sv_FI.properties.lo gnu/java/locale/LocaleInformation_sv_SE.properties.lo gnu/java/locale/LocaleInformation_sw.properties.lo gnu/java/locale/LocaleInformation_sw_KE.properties.lo gnu/java/locale/LocaleInformation_sw_TZ.properties.lo gnu/java/locale/LocaleInformation_syr.properties.lo gnu/java/locale/LocaleInformation_syr_SY.properties.lo gnu/java/locale/LocaleInformation_ta.properties.lo gnu/java/locale/LocaleInformation_ta_IN.properties.lo gnu/java/locale/LocaleInformation_te.properties.lo gnu/java/locale/LocaleInformation_te_IN.properties.lo gnu/java/locale/LocaleInformation_tg.properties.lo gnu/java/locale/LocaleInformation_th.properties.lo gnu/java/locale/LocaleInformation_th_TH.properties.lo gnu/java/locale/LocaleInformation_ti.properties.lo gnu/java/locale/LocaleInformation_ti_ER.properties.lo gnu/java/locale/LocaleInformation_ti_ET.properties.lo gnu/java/locale/LocaleInformation_tig.properties.lo gnu/java/locale/LocaleInformation_tig_ER.properties.lo gnu/java/locale/LocaleInformation_tn.properties.lo gnu/java/locale/LocaleInformation_to.properties.lo gnu/java/locale/LocaleInformation_tr.properties.lo gnu/java/locale/LocaleInformation_tr_TR.properties.lo gnu/java/locale/LocaleInformation_trv.properties.lo gnu/java/locale/LocaleInformation_ts.properties.lo gnu/java/locale/LocaleInformation_tt.properties.lo gnu/java/locale/LocaleInformation_tt_RU.properties.lo gnu/java/locale/LocaleInformation_ug.properties.lo gnu/java/locale/LocaleInformation_uk.properties.lo gnu/java/locale/LocaleInformation_uk_UA.properties.lo gnu/java/locale/LocaleInformation_ur.properties.lo gnu/java/locale/LocaleInformation_ur_IN.properties.lo gnu/java/locale/LocaleInformation_uz.properties.lo gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Latn.properties.lo gnu/java/locale/LocaleInformation_ve.properties.lo gnu/java/locale/LocaleInformation_vi.properties.lo gnu/java/locale/LocaleInformation_wal.properties.lo gnu/java/locale/LocaleInformation_wal_ET.properties.lo gnu/java/locale/LocaleInformation_wo.properties.lo gnu/java/locale/LocaleInformation_xh.properties.lo gnu/java/locale/LocaleInformation_yo.properties.lo gnu/java/locale/LocaleInformation_zh.properties.lo gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.lo gnu/java/locale/LocaleInformation_zu.properties.lo gnu/java/util/regex/MessagesBundle.properties.lo gnu/java/util/regex/MessagesBundle_fr.properties.lo gnu/java/util/regex/MessagesBundle_it.properties.lo gnu/javax/print/PrinterDialog.properties.lo gnu/javax/print/PrinterDialog_de.properties.lo gnu/javax/security/auth/callback/MessagesBundle.properties.lo java/text/metazones.properties.lo java/util/iso4217.properties.lo java/util/weeks.properties.lo javax/imageio/plugins/jpeg/MessagesBundle.properties.lo javax/swing/text/html/default.css.lo org/ietf/jgss/MessagesBundle.properties.lo META-INF/services/java.util.prefs.PreferencesFactory.lo META-INF/services/java.util.prefs.PreferencesFactory.in.lo META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.lo META-INF/services/javax.sound.midi.spi.MidiFileReader.lo META-INF/services/javax.sound.midi.spi.MidiFileWriter.lo META-INF/services/javax.sound.sampled.spi.AudioFileReader.lo gnu-CORBA.lo gnu-java-awt-dnd-peer-gtk.lo gnu-java-awt-peer-gtk.lo gnu-java-awt-peer-swing.lo gnu-java-beans.lo gnu-java-lang-management.lo gnu-java-math.lo gnu-java-util-prefs-gconf.lo gnu-javax-management.lo gnu-javax-rmi.lo gnu-javax-sound-midi.lo gnu-xml-aelfred2.lo gnu-xml-dom.lo gnu-xml-libxmlj.lo gnu-xml-pipeline.lo gnu-xml-stream.lo gnu-xml-transform.lo gnu-xml-util.lo gnu-xml-validation.lo gnu-xml-xpath.lo java-lang-management.lo javax-imageio.lo javax-rmi.lo javax-xml.lo org-omg-CORBA.lo org-omg-CORBA_2_3.lo org-omg-CosNaming.lo org-omg-Dynamic.lo org-omg-DynamicAny.lo org-omg-IOP.lo org-omg-Messaging.lo org-omg-PortableInterceptor.lo org-omg-PortableServer.lo org-omg-SendingContext.lo org-omg-stub.lo org-relaxng.lo org-w3c.lo org-xml.lo ../libffi/libffi_convenience.la ../zlib/libzgcj_convenience.la ../boehm-gc/libgcjgc_convenience.la
-libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
-+/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L[...]/hurd/master.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd/master.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -rpath [...]/hurd/master.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu/java/security/jce/hash.lo gnu/java/security/jce/prng.lo gnu/java/security/jce/sig.lo gnu/java/security/key.lo gnu/java/security/key/dss.lo gnu/java/security/key/rsa.lo gnu/java/security/pkcs.lo gnu/java/security/prng.lo gnu/java/security/provider.lo gnu/java/secu libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
++/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L[...]/hurd/master.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd/master.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -rpath [...]/hurd/master.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
libtool: link: (cd ".libs" && rm -f "libgcj.so.12" && ln -s "libgcj.so.12.0.0" "libgcj.so.12")
libtool: link: (cd ".libs" && rm -f "libgcj.so" && ln -s "libgcj.so.12.0.0" "libgcj.so")
libtool: link: (cd .libs/libgcj.lax/libltdlc.a && ar x "[...]/hurd/master.build/[ARCH]/libjava/./libltdl/.libs/libltdlc.a")
-@@ -23438,12 +23010,12 @@
+@@ -23464,12 +23034,12 @@
libtool: link: ln org/ietf/jgss/MessagesBundle.properties.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o || cp org/ietf/jgss/MessagesBundle.properties.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o
libtool: link: ln .libs/libgcj.lax/libffi_convenience.a/debug.o .libs/libgcj.lax/lt91-debug.o || cp .libs/libgcj.lax/libffi_convenience.a/debug.o .libs/libgcj.lax/lt91-debug.o
libtool: link: ln .libs/libgcj.lax/libgcjgc_convenience.a/misc.o .libs/libgcj.lax/lt92-misc.o || cp .libs/libgcj.lax/libgcjgc_convenience.a/misc.o .libs/libgcj.lax/lt92-misc.o
@@ -3553,7 +3541,7 @@
libtool: link: ar rc .libs/libjvm.a jni-libjvm.o
libtool: link: ranlib .libs/libjvm.a
libtool: link: ( cd ".libs" && rm -f "libjvm.la" && ln -s "../libjvm.la" "libjvm.la" )
-@@ -23452,8 +23024,8 @@
+@@ -23478,8 +23048,8 @@
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../master/libjava/gij.cc -fPIC -DPIC -o .libs/gij.o
libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../master/libjava/gij.cc -o gij.o >/dev/null 2>&1
--
cgit v1.2.3
From dc65d5dcbbaf72b84ec84cd0ce1a0bb24f960b73 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 10 Dec 2010 12:09:33 +0100
Subject: open_issues/gcc/testsuite (Install): New.
---
open_issues/gcc/testsuite.mdwn | 33 ++++-
open_issues/gcc/testsuite/log_install-diff | 221 +++++++++++++++++++++++++++++
2 files changed, 253 insertions(+), 1 deletion(-)
create mode 100644 open_issues/gcc/testsuite/log_install-diff
diff --git a/open_issues/gcc/testsuite.mdwn b/open_issues/gcc/testsuite.mdwn
index 73b36008..3bb1fe3d 100644
--- a/open_issues/gcc/testsuite.mdwn
+++ b/open_issues/gcc/testsuite.mdwn
@@ -10,6 +10,9 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_gcc]]
+
+# Build
+
Here's a log of a GCC build run; this is from our [[Git repository's
5ac39af7792ba0dc363cc199060faf53dfa9dc1a (2010-12-08)
sources|source_repositories/gcc]], run on kepler.SCHWINGE and grubber.
@@ -29,7 +32,8 @@ On grubber, this needs roughly 24 hours, and takes up around 2.5 GiB.
[[log_build-diff]].
-Analysis of most issues:
+
+## Analysis
* [[`checking if gcc static flag -static
works... no`|glibc_madvise_vs_static_linking]]
@@ -145,6 +149,33 @@ Analysis of most issues:
`-Wl,-Bsymbolic` vs. `-Wl,-Bsymbolic-functions`
+
+# Install
+
+ $ make SHELL=/bin/bash install 2>&1 | tee log_install
+ [...]
+
+(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
+harmonized.)
+
+On grubber, this needs roughly 15 minutes, and takes up around 0.7 GiB.
+
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-pc-linux-gnu%[ARCH]%g"') <(ssh grubber 'cd tmp/gcc/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-unknown-gnu0\.3%[ARCH]%g"') > open_issues/gcc/testsuite/log_install-diff
+
+[[log_install-diff]].
+
+
+## Analysis
+
+ * `libtool: finish`: `ldconfig` is not run for the Hurd.
+
+ * `libjvm.la`, `.libs/libjvm.so`, `libgij.la`, `.libs/libgij.so.12.0.0`
+
+ `-Wl,-Bsymbolic` vs. `-Wl,-Bsymbolic-functions` (as above)
+
+
+# Testsuite
+
$ make SHELL=/bin/bash -k check 2>&1 | tee log_check
diff --git a/open_issues/gcc/testsuite/log_install-diff b/open_issues/gcc/testsuite/log_install-diff
new file mode 100644
index 00000000..0cccbf4d
--- /dev/null
+++ b/open_issues/gcc/testsuite/log_install-diff
@@ -0,0 +1,221 @@
+--- /dev/fd/63 2010-12-10 12:00:47.102216005 +0100
++++ /dev/fd/62 2010-12-10 12:00:47.102216005 +0100
+@@ -395,7 +395,7 @@
+ /usr/bin/install -c -m 644 ../../master/gcc/cp/cxx-pretty-print.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/cp/cxx-pretty-print.h
+ /usr/bin/install -c -m 644 ../../master/gcc/cp/name-lookup.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/cp/name-lookup.h
+ /bin/bash ../../master/gcc/../mkinstalldirs [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include
+-headers=`echo tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h coretypes.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h toplev.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h tree-pass.h timevar.h timevar.def gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h ggc.h gtype-desc.h statistics.h tree-dump.h ../../master/gcc/../include/splay-tree.h tree-pass.h timevar.h timevar.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h ../../master/gcc/../libcpp/include/line-map.h input.h vec.h statistics.h opts.h params.h params.def plugin.def options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h config/i386/i386-protos.h tm-preds.h auto-host.h ../../master/gcc/../include/ansidecl.h auto-host.h ansidecl.h auto-host.h ansidecl.h intl.h plugin-version.h configargs.h diagnostic.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def c-family/c-objc.h c-family/c-pretty-print.h pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-iterator.h plugin.h gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h tree-flow.h tree-flow-inline.h tree-ssa-operands.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h ../../master/gcc/../include/hashtab.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h ipa-reference.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-ssa-alias.h langhooks.h incpath.h debug.h except.h ../../master/gcc/../include/hashtab.h vecprim.h vecir.h tree-ssa-sccvn.h real.h output.h ipa-utils.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h c-family/c-pragma.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cppdefault.h flags.h ../../master/gcc/../include/md5.h params.def params.h prefix.h tree-inline.h ipa-prop.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h vec.h statistics.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h tm_p.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h cfgloop.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h vecprim.h double-int.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h emit-rtl.h version.h | tr ' ' '\012' | sort -u`; \
++headers=`echo tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h coretypes.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h toplev.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h tree-pass.h timevar.h timevar.def gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h ggc.h gtype-desc.h statistics.h tree-dump.h ../../master/gcc/../include/splay-tree.h tree-pass.h timevar.h timevar.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h ../../master/gcc/../libcpp/include/line-map.h input.h vec.h statistics.h opts.h params.h params.def plugin.def options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h config/i386/i386-protos.h tm-preds.h auto-host.h ../../master/gcc/../include/ansidecl.h auto-host.h ansidecl.h auto-host.h ansidecl.h intl.h plugin-version.h configargs.h diagnostic.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def c-family/c-objc.h c-family/c-pretty-print.h pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-iterator.h plugin.h gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h tree-flow.h tree-flow-inline.h tree-ssa-operands.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h ../../master/gcc/../include/hashtab.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h ipa-reference.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-ssa-alias.h langhooks.h incpath.h debug.h except.h ../../master/gcc/../include/hashtab.h vecprim.h vecir.h tree-ssa-sccvn.h real.h output.h ipa-utils.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h c-family/c-pragma.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cppdefault.h flags.h ../../master/gcc/../include/md5.h params.def params.h prefix.h tree-inline.h ipa-prop.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h vec.h statistics.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h tm_p.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h cfgloop.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h vecprim.h double-int.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h emit-rtl.h version.h | tr ' ' '\012' | sort -u`; \
+ srcdirstrip=`echo "../../master/gcc" | sed 's/[].[^$\\*|]/\\\\&/g'`; \
+ for file in $headers; do \
+ if [ -f $file ] ; then \
+@@ -433,13 +433,14 @@
+ mkdir -p -- [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config
+ /usr/bin/install -c -m 644 ../../master/gcc/config/elfos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/elfos.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/glibc-stdint.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/glibc-stdint.h
++/usr/bin/install -c -m 644 ../../master/gcc/config/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/gnu.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/att.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/att.h
+ mkdir -p -- [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386
++/usr/bin/install -c -m 644 ../../master/gcc/config/i386/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/gnu.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386-protos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386-protos.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/linux.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/unix.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/unix.h
+-/usr/bin/install -c -m 644 ../../master/gcc/config/linux-android.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux-android.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/svr4.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/svr4.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/vxworks-dummy.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/vxworks-dummy.h
+@@ -470,12 +471,13 @@
+ /usr/bin/install -c -m 644 ../../master/gcc/config/dbxelf.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/dbxelf.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/elfos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/elfos.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/glibc-stdint.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/glibc-stdint.h
++/usr/bin/install -c -m 644 ../../master/gcc/config/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/gnu.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/att.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/att.h
++/usr/bin/install -c -m 644 ../../master/gcc/config/i386/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/gnu.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386-protos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386-protos.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/linux.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/unix.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/unix.h
+-/usr/bin/install -c -m 644 ../../master/gcc/config/linux-android.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux-android.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/svr4.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/svr4.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/vxworks-dummy.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/vxworks-dummy.h
+@@ -638,7 +640,6 @@
+ libtool: install: /usr/bin/install -c .libs/liblto_plugin.a [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0/liblto_plugin.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0/liblto_plugin.a
+ libtool: install: ranlib [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0/liblto_plugin.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0
+@@ -789,7 +790,6 @@
+ libtool: install: /usr/bin/install -c .libs/libsupc++.a [...]/hurd/master.build.install/lib/libsupc++.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libsupc++.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libsupc++.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -839,7 +839,6 @@
+ libtool: install: /usr/bin/install -c .libs/libstdc++.a [...]/hurd/master.build.install/lib/libstdc++.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libstdc++.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libstdc++.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1115,9 +1114,6 @@
+ libtool: install: /usr/bin/install -c .libs/libmudflapth.a [...]/hurd/master.build.install/lib/libmudflapth.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libmudflapth.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libmudflapth.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1250,9 +1246,6 @@
+ libtool: install: /usr/bin/install -c .libs/libssp_nonshared.a [...]/hurd/master.build.install/lib/libssp_nonshared.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libssp_nonshared.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libssp_nonshared.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1450,9 +1443,6 @@
+ libtool: install: /usr/bin/install -c .libs/libquadmath.a [...]/hurd/master.build.install/lib/libquadmath.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libquadmath.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libquadmath.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1584,7 +1574,6 @@
+ libtool: install: /usr/bin/install -c .libs/libgfortranbegin.a [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/libgfortranbegin.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/libgfortranbegin.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/libgfortranbegin.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0
+@@ -1617,9 +1606,6 @@
+ libtool: install: /usr/bin/install -c .libs/libgfortran.a [...]/hurd/master.build.install/lib/libgfortran.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgfortran.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libgfortran.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1652,9 +1638,6 @@
+ libtool: install: /usr/bin/install -c .libs/libobjc.a [...]/hurd/master.build.install/lib/libobjc.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libobjc.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libobjc.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1724,9 +1707,6 @@
+ done; \
+ fi
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libobjc'
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -2048,9 +2028,6 @@
+ libtool: install: /usr/bin/install -c .libs/libffi.a [...]/hurd/master.build.install/lib/libffi.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libffi.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libffi.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -2260,7 +2237,6 @@
+ /bin/bash ../../../libtool --mode=install /usr/bin/install -c libjavamath.la '[...]/hurd/master.build.install/lib/gcj-4.6.0-12'
+ libtool: install: /usr/bin/install -c .libs/libjavamath.so [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjavamath.so
+ libtool: install: /usr/bin/install -c .libs/libjavamath.lai [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjavamath.la
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib/gcj-4.6.0-12
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib/gcj-4.6.0-12
+@@ -2451,14 +2427,13 @@
+ test -z "[...]/hurd/master.build.install/lib/gcj-4.6.0-12" || /bin/mkdir -p "[...]/hurd/master.build.install/lib/gcj-4.6.0-12"
+ /bin/bash ./libtool --mode=install /usr/bin/install -c libjvm.la '[...]/hurd/master.build.install/lib/gcj-4.6.0-12'
+ libtool: install: warning: relinking `libjvm.la'
+-libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
+-libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
++libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
++libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
+ libtool: install: /usr/bin/install -c .libs/libjvm.soT [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.so
+ libtool: install: /usr/bin/install -c .libs/libjvm.lai [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.la
+ libtool: install: /usr/bin/install -c .libs/libjvm.a [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib/gcj-4.6.0-12
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib/gcj-4.6.0-12
+@@ -2532,8 +2507,8 @@
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgcj.so.12.0.0 libgcj.so || { rm -f libgcj.so && ln -s libgcj.so.12.0.0 libgcj.so; }; })
+ libtool: install: /usr/bin/install -c .libs/libgcj.lai [...]/hurd/master.build.install/lib/libgcj.la
+ libtool: install: warning: relinking `libgij.la'
+-libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
+-libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
++libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
++libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
+ libtool: install: /usr/bin/install -c .libs/libgij.so.12.0.0T [...]/hurd/master.build.install/lib/libgij.so.12.0.0
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so.12 || { rm -f libgij.so.12 && ln -s libgij.so.12.0.0 libgij.so.12; }; })
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so || { rm -f libgij.so && ln -s libgij.so.12.0.0 libgij.so; }; })
+@@ -2561,9 +2536,6 @@
+ libtool: install: /usr/bin/install -c .libs/libgcj_bc.a [...]/hurd/master.build.install/lib/libgcj_bc.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgcj_bc.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libgcj_bc.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -2613,8 +2585,8 @@
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgcj.so.12.0.0 libgcj.so || { rm -f libgcj.so && ln -s libgcj.so.12.0.0 libgcj.so; }; })
+ libtool: install: /usr/bin/install -c .libs/libgcj.lai [...]/hurd/master.build.install/lib/libgcj.la
+ libtool: install: warning: relinking `libgij.la'
+-libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
+-libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
++libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
++libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
+ libtool: install: /usr/bin/install -c .libs/libgij.so.12.0.0T [...]/hurd/master.build.install/lib/libgij.so.12.0.0
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so.12 || { rm -f libgij.so.12 && ln -s libgij.so.12.0.0 libgij.so.12; }; })
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so || { rm -f libgij.so && ln -s libgij.so.12.0.0 libgij.so; }; })
+@@ -2642,9 +2614,6 @@
+ libtool: install: /usr/bin/install -c .libs/libgcj_bc.a [...]/hurd/master.build.install/lib/libgcj_bc.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgcj_bc.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libgcj_bc.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -3776,9 +3745,6 @@
+ libtool: install: /usr/bin/install -c .libs/libgomp.a [...]/hurd/master.build.install/lib/libgomp.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgomp.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libgomp.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
--
cgit v1.2.3
From 49657ebaef939b56a58b226ac1635165c9346dc4 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Fri, 10 Dec 2010 12:19:51 +0100
Subject: open_issues/gcc/testsuite: Integrate into open_issues/gcc.
---
open_issues/boehm_gc.mdwn | 2 +-
...rk_mach_port_mod_refs_ekern_urefs_owerflow.mdwn | 2 +-
open_issues/gcc.mdwn | 178 +-
open_issues/gcc/log_build-diff | 3554 ++++++++++++++++++++
open_issues/gcc/log_build-hurd.sed | 11 +
open_issues/gcc/log_build-linux.sed | 10 +
open_issues/gcc/log_install-diff | 221 ++
open_issues/gcc/testsuite.mdwn | 182 -
open_issues/gcc/testsuite/log_build-diff | 3554 --------------------
open_issues/gcc/testsuite/log_build-hurd.sed | 11 -
open_issues/gcc/testsuite/log_build-linux.sed | 10 -
open_issues/gcc/testsuite/log_install-diff | 221 --
open_issues/unit_testing.mdwn | 2 +-
13 files changed, 3973 insertions(+), 3985 deletions(-)
create mode 100644 open_issues/gcc/log_build-diff
create mode 100644 open_issues/gcc/log_build-hurd.sed
create mode 100644 open_issues/gcc/log_build-linux.sed
create mode 100644 open_issues/gcc/log_install-diff
delete mode 100644 open_issues/gcc/testsuite.mdwn
delete mode 100644 open_issues/gcc/testsuite/log_build-diff
delete mode 100644 open_issues/gcc/testsuite/log_build-hurd.sed
delete mode 100644 open_issues/gcc/testsuite/log_build-linux.sed
delete mode 100644 open_issues/gcc/testsuite/log_install-diff
diff --git a/open_issues/boehm_gc.mdwn b/open_issues/boehm_gc.mdwn
index 34cc2ee0..c215d501 100644
--- a/open_issues/boehm_gc.mdwn
+++ b/open_issues/boehm_gc.mdwn
@@ -272,7 +272,7 @@ It has last been run and compared on 2010-11-10, based on CVS HEAD sources from
# TODO
- * Port stuff to [[/GCC]] / [[test it there|gcc/testsuite]].
+ * Port stuff to [[GCC]], and test it there.
* What are other applications to test Boehm GC? Also especially in
combination with [[/libpthread]] and dynamic loading of shared libraries?
diff --git a/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn b/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
index 2bd0cd38..ab3ba98b 100644
--- a/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
+++ b/open_issues/fork_mach_port_mod_refs_ekern_urefs_owerflow.mdwn
@@ -10,7 +10,7 @@ License|/fdl]]."]]"""]]
[[!meta title="fork: mach_port_mod_refs: EKERN_UREFS_OWERFLOW"]]
-In the [[GCC testsuite|gcc/testsuite]], at this point:
+In the [[GCC testsuite|gcc]], at this point:
Running /home/tschwinge/tmp/gcc/hurd/gcc/testsuite/gcc.c-torture/unsorted/unsorted.exp ...
diff --git a/open_issues/gcc.mdwn b/open_issues/gcc.mdwn
index 01997128..b5f35d44 100644
--- a/open_issues/gcc.mdwn
+++ b/open_issues/gcc.mdwn
@@ -17,6 +17,8 @@ Apart from the target-specific configuration machinery, there shouldn't be any
major differences within GCC between the GNU/Hurd and GNU/Linux ports, for
example. Especially all the compiler magic is all the same.
+[[!toc levels=2]]
+
# [[General information|/gcc]]
@@ -44,7 +46,7 @@ On 2010-11-17,
[[tschwinge]] reviewed the Debian GCC Boehm GC changes, compared them to the
upstream code, and put it into the local *hurd/boehm-gc/config_backport*
branch, planning to submit it to gcc-patches after testing with the GCC
-[[testsuite]].
+testsuite.
# Configuration
@@ -118,9 +120,6 @@ Last reviewed up to the [[Git mirror's 3457702eb6f8ee22acaee881dc7f783c3aa2fa91
[[IFUNC]]
-# [[Testsuite]]
-
-
# TODO
Debian's GCC package has Hurd-specific patches. Some have been forwarded
@@ -138,3 +137,174 @@ getting them integrated.
* [Tool chain configuration: GNU/\* sharing stuff with
GNU/Linux](http://gcc.gnu.org/ml/gcc/2007-11/msg00289.html)
+
+
+# Build
+
+Here's a log of a GCC build run; this is from our [[Git repository's
+5ac39af7792ba0dc363cc199060faf53dfa9dc1a (2010-12-08)
+sources|source_repositories/gcc]], run on kepler.SCHWINGE and grubber.
+
+ $ export LC_ALL=C
+ $ ../master/configure --prefix="$PWD".install 2>&1 | tee log_build
+ [...]
+ $ make SHELL=/bin/bash 2>&1 | tee log_build_
+ [...]
+
+(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
+harmonized.)
+
+On grubber, this needs roughly 24 hours, and takes up around 2.5 GiB.
+
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd/master.build/log_build* | sed -e "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/log_build-linux.sed) <(ssh grubber 'cd tmp/gcc/ && cat hurd/master.build/log_build* | sed "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/log_build-hurd.sed) > open_issues/gcc/log_build-diff
+
+[[log_build-diff]].
+
+
+## Analysis
+
+ * [[`checking if gcc static flag -static
+ works... no`|glibc_madvise_vs_static_linking]]
+
+ * DFP
+
+ +configure: WARNING: decimal float is not supported for this target, ignored
+
+ ... and later on:
+
+ -checking for decimal floating point... bid
+ +checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
+ +dpd
+
+ ... and later on:
+
+ -checking whether decimal floating point is supported... yes
+ +checking whether decimal floating point is supported... no
+ +configure: WARNING: decimal float is not supported for this target, ignored
+
+ * `host-linux.c` vs. `host-default.c`
+
+ * *fixincludes* stuff
+
+ * malloc?
+
+ -cat ../../hurd/gcc/config/i386/pmm_malloc.h > mm_malloc.h
+ +cat ../../hurd/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+
+ * *libgomp*
+
+ * `libgomp/config/linux/`, `libgomp/config/linux/x86`
+
+ * `-ftls-model=initial-exec -march=i486 -mtune=i686`
+
+ * `-static` vs. `dlopen`
+
+ -checking whether a statically linked program can dlopen itself... no
+ +checking whether a statically linked program can dlopen itself... yes
+
+ * ISO/IEC TR 24733
+
+ -checking for ISO/IEC TR 24733 ... yes
+ +checking for ISO/IEC TR 24733 ... no
+
+ * `basic_file.cc`
+
+ +basic_file.cc: In member function 'std::streamsize std::__basic_file::showmanyc()':
+ +basic_file.cc:344:33: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+
+ * `libtool: link: ar rc .libs/libstdc++.a [...]`
+
+ Just different order of object files, or another problem?
+
+ * `gcc/gthr-posix.h`
+
+ +In file included from ../.././gcc/gthr-default.h:1:0,
+ + from [...]/hurd/libobjc/../gcc/gthr.h:162,
+ + from [...]/hurd/libobjc/thr.c:43:
+ +[...]/hurd/libobjc/../gcc/gthr-posix.h: In function '__gthread_objc_thread_set_priority':
+ +[...]/hurd/libobjc/../gcc/gthr-posix.h:384:41: warning: unused parameter 'priority' [-Wunused-parameter]
+
+ * `java-signal.h`, `java-signal-aux.h`
+
+ -config.status: linking ../../../hurd/libjava/include/i386-signal.h to include/java-signal.h
+ -config.status: linking ../../../hurd/libjava/include/i386-signal.h to include/java-signal-aux.h
+ +config.status: linking ../../../hurd/libjava/include/default-signal.h to include/java-signal.h
+ +config.status: linking ../../../hurd/libjava/include/default-signal.h to include/java-signal-aux.h
+
+ * `jni_md.h`
+
+ -checking jni_md.h support... yes
+ +checking jni_md.h support... configure: WARNING: no
+
+ * *default library search path*
+
+ -checking for the default library search path... /lib /usr/lib /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/local/lib
+ +checking for the default library search path... /lib /usr/lib
+
+ * `./classpath/[...]/*.properties`
+
+ Just different order of files, or another problem?
+
+ * `libjava/gnu/gcj/util/natGCInfo.cc`
+
+ +../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:440:1: warning: unused parameter 'name' [-Wunused-parameter]
+ +../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:446:1: warning: unused parameter 'name' [-Wunused-parameter]
+ +../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:452:1: warning: unused parameter 'name' [-Wunused-parameter]
+
+ * `gnu/java/net/natPlainSocketImpl.cc`
+
+ +gnu/java/net/natPlainSocketImpl.cc: In member function 'virtual jint gnu::java::net::PlainSocketImpl::available()':
+ +gnu/java/net/natPlainSocketImpl.cc:515:27: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+
+ * `gnu/java/nio/channels/natFileChannelImpl.cc`
+
+ +gnu/java/nio/channels/natFileChannelImpl.cc: In member function 'jint gnu::java::nio::channels::FileChannelImpl::available()':
+ +gnu/java/nio/channels/natFileChannelImpl.cc:388:20: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+
+ * `libgcj.la`, `.libs/libgcj.a`
+
+ Just different order of object files, or another problem?
+
+ Is there a pattern that GNU/Hurd hands out the files alphabetically sorted
+ where it wouldn't need to ([[!taglink open_issue_hurd]])?
+
+ Why does the GNU Hurd's `lib_build_` repeatedly contain a long series
+ (several KiB) of NUL (0) characters after the 5319th column in the
+ `/bin/bash ./libtool --tag=CXX --mode=link [...] -o libgcj.la [...]`
+ command line? Is that only in the log?
+
+ * `libjvm.la`, `.libs/libjvm.so`, `libgij.la`, `.libs/libgij.so.12.0.0`
+
+ `-Wl,-Bsymbolic` vs. `-Wl,-Bsymbolic-functions`
+
+
+# Install
+
+ $ make SHELL=/bin/bash install 2>&1 | tee log_install
+ [...]
+
+(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
+harmonized.)
+
+On grubber, this needs roughly 15 minutes, and takes up around 0.7 GiB.
+
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-pc-linux-gnu%[ARCH]%g"') <(ssh grubber 'cd tmp/gcc/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-unknown-gnu0\.3%[ARCH]%g"') > open_issues/gcc/log_install-diff
+
+[[log_install-diff]].
+
+
+## Analysis
+
+ * `libtool: finish`: `ldconfig` is not run for the Hurd.
+
+ * `libjvm.la`, `.libs/libjvm.so`, `libgij.la`, `.libs/libgij.so.12.0.0`
+
+ `-Wl,-Bsymbolic` vs. `-Wl,-Bsymbolic-functions` (as above)
+
+
+# Testsuite
+
+
+
+ $ make SHELL=/bin/bash -k check 2>&1 | tee log_check
+ [...]
diff --git a/open_issues/gcc/log_build-diff b/open_issues/gcc/log_build-diff
new file mode 100644
index 00000000..777011a3
--- /dev/null
+++ b/open_issues/gcc/log_build-diff
@@ -0,0 +1,3554 @@
+--- /dev/fd/63 2010-12-10 08:34:20.938216003 +0100
++++ /dev/fd/62 2010-12-10 08:34:20.938216003 +0100
+@@ -313,6 +313,7 @@
+ checking valgrind.h usability... no
+ checking valgrind.h presence... no
+ checking for valgrind.h... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ configure: WARNING: fixed-point is not supported for this target, ignored
+ checking whether make sets $(MAKE)... yes
+ checking for gawk... gawk
+@@ -475,7 +476,6 @@
+ Using the following target machine macro files:
+ ../../master/gcc/config/vxworks-dummy.h
+ ../../master/gcc/config/i386/i386.h
+- ../../master/gcc/config/linux-android.h
+ ../../master/gcc/config/i386/unix.h
+ ../../master/gcc/config/i386/att.h
+ ../../master/gcc/config/dbxelf.h
+@@ -484,7 +484,9 @@
+ ../../master/gcc/config/linux.h
+ ../../master/gcc/config/glibc-stdint.h
+ ../../master/gcc/config/i386/linux.h
+-Using host-linux.o for host machine hooks.
++ ../../master/gcc/config/gnu.h
++ ../../master/gcc/config/i386/gnu.h
++Using host-default.o for host machine hooks.
+ checking for __cxa_atexit... yes
+ checking whether NLS is requested... yes
+ checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
+@@ -496,7 +498,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -512,12 +514,12 @@
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -529,11 +531,11 @@
+ checking whether the g++ linker (ld) supports shared libraries... yes
+ checking for g++ option to produce PIC... -fPIC -DPIC
+ checking if g++ PIC flag -fPIC -DPIC works... yes
+-checking if g++ static flag -static works... yes
++checking if g++ static flag -static works... no
+ checking if g++ supports -c -o file.o... yes
+ checking if g++ supports -c -o file.o... (cached) yes
+ checking whether the g++ linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for as... /usr/bin/as
+ checking what assembler to use... /usr/bin/as
+@@ -546,7 +548,7 @@
+ checking what objdump to use... /usr/bin/objdump
+ checking for readelf... /usr/bin/readelf
+ checking what readelf to use... /usr/bin/readelf
+-checking assembler flags... --32
++checking assembler flags...
+ checking assembler for .balign and .p2align... yes
+ checking assembler for .p2align with maximum skip... yes
+ checking assembler for .literal16... no
+@@ -675,12 +677,12 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -750,13 +752,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -771,7 +773,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -1111,12 +1113,12 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -1186,13 +1188,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -1207,7 +1209,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -1622,7 +1624,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -1649,12 +1651,12 @@
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -1969,7 +1971,8 @@
+ checking build system type... [ARCH]
+ checking host system type... [ARCH]
+ checking target system type... [ARCH]
+-checking for decimal floating point... bid
++checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
++dpd
+ checking whether byte ordering is bigendian... no
+ configure: updating cache ./config.cache
+ configure: creating ./config.status
+@@ -1982,12 +1985,8 @@
+ source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
+ source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
+ source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
+-source='../../master/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/bid2dpd_dpd2bid.c
+-source='../../master/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee32.c
+-source='../../master/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee64.c
+-source='../../master/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee128.c
+ rm -f libdecnumber.a
+-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
++ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
+ ranlib libdecnumber.a
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
+@@ -2047,9 +2046,9 @@
+ HEADERS="auto-host.h ansidecl.h" DEFINES="" \
+ /bin/bash ../../master/gcc/mkconfig.sh config.h
+ TARGET_CPU_DEFAULT="" \
+- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
++ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SINGLE_LIBC DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
+ /bin/bash ../../master/gcc/mkconfig.sh tm.h
+-gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt > tmp-optionlist
+ /bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
+ echo timestamp > s-options
+ gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
+@@ -2810,8 +2809,7 @@
+ ../../master/gcc/config/i386/i386.c: In function 'ix86_handle_fndecl_attribute':
+ ../../master/gcc/config/i386/i386.c:29153: warning: unknown conversion type character 'E' in format
+ ../../master/gcc/config/i386/i386.c:29153: warning: too many arguments for format
+-gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
+- ../../master/gcc/config/host-linux.c
++gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/host-default.c -o host-default.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
+@@ -2841,7 +2839,7 @@
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
+ gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
+ rm -rf libbackend.a
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+ ranlib libbackend.a
+ build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
+ checksum-options > cc1-checksum.c.tmp && \
+@@ -2992,89 +2990,39 @@
+ done; \
+ fi
+ Fixing headers into [...]/hurd/master.build/gcc/include-fixed for [ARCH] target
+-Forbidden identifiers: i386 linux unix
++Forbidden identifiers: MACH i386 unix
+ Finding directories and links to directories
+ Searching /usr/include/.
+ Searching /usr/include/./libpng
++ Searching /usr/include/./mach/machine
+ Searching /usr/include/./c++/4.4.5
+ Making symbolic directory links
+ Fixing directory /usr/include into [...]/hurd/master.build/gcc/include-fixed
+-Applying machine_name to openssl/bn.h
+-Fixed: openssl/bn.h
+-Applying machine_name to openssl/e_os2.h
+-Applying sysv68_string to string.h
+-Applying sun_malloc to malloc.h
+-Applying pthread_incomplete_struct_argument to pthread.h
+-Applying io_quotes_use to sound/asound.h
+-Applying io_quotes_use to sound/asequencer.h
+-Applying io_quotes_use to sound/emu10k1.h
+-Applying glibc_stdint to stdint.h
++Applying io_quotes_def to bits/ioctls.h
+ Applying io_quotes_def to glib-2.0/gio/gmountoperation.h
+-Applying io_quotes_use to linux/i2o-dev.h
+-Applying io_quotes_use to linux/raw.h
+-Applying io_quotes_use to linux/fs.h
+-Applying io_quotes_use to linux/spi/spidev.h
+-Applying io_quotes_use to linux/gigaset_dev.h
+-Applying io_quotes_use to linux/aufs_type.h
+-Applying io_quotes_use to linux/mmtimer.h
+-Applying io_quotes_use to linux/cm4000_cs.h
+-Applying io_quotes_use to linux/phantom.h
+-Applying io_quotes_use to linux/ipmi.h
+-Applying io_quotes_use to linux/usb/tmc.h
+-Applying io_quotes_use to linux/usb/vstusb.h
+-Applying io_quotes_use to linux/random.h
+-Applying io_quotes_use to linux/if_pppox.h
+-Applying io_quotes_use to linux/fd.h
+-Applying io_quotes_use to linux/auto_fs4.h
+-Applying io_quotes_use to linux/blkpg.h
+-Applying io_quotes_use to linux/ppdev.h
+-Applying io_quotes_use to linux/input.h
+-Applying io_quotes_use to linux/dm-ioctl.h
+-Applying io_quotes_use to linux/cciss_ioctl.h
+-Applying io_quotes_use to linux/raid/md_u.h
+-Applying io_quotes_use to linux/agpgart.h
+-Applying io_quotes_use to linux/dn.h
+-Applying io_quotes_use to linux/rfkill.h
+-Applying io_quotes_use to linux/auto_fs.h
+-Applying io_quotes_def to linux/soundcard.h
+-Applying io_quotes_def to linux/version.h
+-Applying io_quotes_use to linux/atmbr2684.h
+-Applying io_quotes_use to linux/nbd.h
+-Applying io_quotes_use to linux/uinput.h
+-Applying io_quotes_use to linux/reiserfs_fs.h
+-Applying io_quotes_use to linux/videotext.h
+-Applying io_quotes_use to linux/synclink.h
+-Applying io_quotes_use to linux/kvm.h
+-Applying machine_name to linux/a.out.h
+-Fixed: linux/a.out.h
+-Applying io_quotes_def to linux/pci_regs.h
+-Applying io_quotes_use to linux/watchdog.h
+-Applying io_quotes_def to linux/ppp-comp.h
+-Applying io_quotes_use to linux/pktcdvd.h
+-Applying io_quotes_use to linux/suspend_ioctls.h
++Applying glibc_stdint to stdint.h
++Applying ctrl_quotes_def to readline/chardefs.h
++Applying sun_malloc to malloc.h
++Applying machine_name to a.out.h
++Fixed: a.out.h
++Applying io_quotes_def to libIDL-2.0/libIDL/IDL.h
++Applying io_quotes_use to libIDL-2.0/libIDL/IDL.h
++Applying io_quotes_def to mach/i386/ioccom.h
++Fixed: mach/i386/ioccom.h
++Applying ctrl_quotes_def to dialog.h
++Applying hpux8_bogus_inlines to math.h
+ Applying machine_name to X11/Xw32defs.h
+ Fixed: X11/Xw32defs.h
+-Applying machine_name to freetype2/freetype/config/ftconfig.h
+-Fixed: freetype2/freetype/config/ftconfig.h
+-Quoted includes in freetype2/freetype/config/ftconfig.h
+-Applying io_quotes_use to video/sisfb.h
+-Applying ctrl_quotes_def to dialog.h
+-Applying io_quotes_def to c++/4.4/parallel/settings.h
++Applying io_quotes_def to X11/Xmu/Atoms.h
+ Applying io_quotes_def to c++/4.4/parallel/multiway_merge.h
+-Applying io_quotes_use to sys/raw.h
+-Applying io_quotes_use to sys/mount.h
+-Applying hpux8_bogus_inlines to math.h
+-Applying stdio_va_list_clients to krb5.h
++Applying io_quotes_def to c++/4.4/parallel/settings.h
++Applying sysv68_string to string.h
+ Applying io_quotes_def to gtk-2.0/gtk/gtkmountoperation.h
+-Applying io_quotes_use to rdma/ib_user_mad.h
+-Applying io_quotes_use to asm/mtrr.h
+-Applying io_quotes_use to mtd/ubi-user.h
+-Applying ctrl_quotes_def to readline/chardefs.h
+ Cleaning up unneeded directories:
+ fixincludes is done
+ echo timestamp > stmp-fixinc
+ rm -f mm_malloc.h
+-cat ../../master/gcc/config/i386/pmm_malloc.h > mm_malloc.h
++cat ../../master/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+ if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
+ if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
+ for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
+@@ -3223,7 +3171,7 @@
+ (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-12-08 --section=7 fsf-funding.pod > doc/fsf-funding.7.T$$ && \
+ mv -f doc/fsf-funding.7.T$$ doc/fsf-funding.7) || \
+ (rm -f doc/fsf-funding.7.T$$ && exit 1)
+-rm gfdl.pod cpp.pod gcov.pod fsf-funding.pod gcc.pod
++rm gcov.pod gfdl.pod cpp.pod fsf-funding.pod gcc.pod
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
+ Configuring stage 1 in ./lto-plugin
+ configure: creating cache ./config.cache
+@@ -3259,7 +3207,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -3286,12 +3234,12 @@
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -3355,7 +3303,8 @@
+ checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
+ checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
+-checking whether decimal floating point is supported... yes
++checking whether decimal floating point is supported... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ checking whether fixed-point is supported... no
+ checking whether assembler supports CFI directives... yes
+ checking for __attribute__((visibility("hidden")))... yes
+@@ -3559,136 +3508,6 @@
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../master/libgcc/config/libbid/bid_decimal_globals.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../master/libgcc/config/libbid/bid_decimal_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../master/libgcc/config/libbid/bid_binarydecimal.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../master/libgcc/config/libbid/bid_convert_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../master/libgcc/config/libbid/_isinfd32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../master/libgcc/config/libbid/_isinfd64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../master/libgcc/config/libbid/_isinfd128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../master/libgcc/config/libbid/bid64_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../master/libgcc/config/libbid/bid128_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../master/libgcc/config/libbid/bid128_fma.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../master/libgcc/config/libbid/bid_round.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../master/libgcc/config/libbid/bid_from_int.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../master/libgcc/config/libbid/bid64_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../master/libgcc/config/libbid/bid128_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../master/libgcc/config/libbid/bid64_div.c
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../master/libgcc/config/libbid/bid128_div.c
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../master/libgcc/config/libbid/bid64_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../master/libgcc/config/libbid/bid128_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../master/libgcc/config/libbid/bid64_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../master/libgcc/config/libbid/bid128_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../master/libgcc/config/libbid/bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid64_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../master/libgcc/config/libbid/bid64_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../master/libgcc/config/libbid/bid64_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../master/libgcc/config/libbid/bid128_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../master/libgcc/config/libbid/bid128_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_addsub_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_div_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_mul_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_eq_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ne_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_lt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_gt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_le_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ge_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_si_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_di_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_usi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_udi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_df_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_xf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_tf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_unord_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_addsub_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_div_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_mul_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_eq_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ne_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_lt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_gt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_le_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ge_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_si_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_di_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_usi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_udi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_sf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_df_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_xf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_tf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_unord_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_addsub_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_div_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_mul_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_eq_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ne_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_lt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_gt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_le_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ge_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_si_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_di_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_usi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_udi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_sf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_df_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_xf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_tf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_unord_td.c
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
+@@ -3745,7 +3564,7 @@
+ mv -f morestack.visT morestack.vis
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
+ rm -f libgcc.a
+-objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
++objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
+ if test -z "$objects"; then \
+ echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
+@@ -4050,7 +3869,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -4076,12 +3895,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -4252,7 +4071,7 @@
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
+ mv -f .deps/affinity.Tpo .deps/affinity.Plo
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
++libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+ libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
+ libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
+ libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
+@@ -4516,6 +4335,7 @@
+ checking valgrind.h usability... no
+ checking valgrind.h presence... no
+ checking for valgrind.h... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ configure: WARNING: fixed-point is not supported for this target, ignored
+ checking whether make sets $(MAKE)... yes
+ checking for gawk... gawk
+@@ -4678,7 +4498,6 @@
+ Using the following target machine macro files:
+ ../../master/gcc/config/vxworks-dummy.h
+ ../../master/gcc/config/i386/i386.h
+- ../../master/gcc/config/linux-android.h
+ ../../master/gcc/config/i386/unix.h
+ ../../master/gcc/config/i386/att.h
+ ../../master/gcc/config/dbxelf.h
+@@ -4687,7 +4506,9 @@
+ ../../master/gcc/config/linux.h
+ ../../master/gcc/config/glibc-stdint.h
+ ../../master/gcc/config/i386/linux.h
+-Using host-linux.o for host machine hooks.
++ ../../master/gcc/config/gnu.h
++ ../../master/gcc/config/i386/gnu.h
++Using host-default.o for host machine hooks.
+ checking for __cxa_atexit... yes
+ checking whether NLS is requested... yes
+ checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
+@@ -4699,7 +4520,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -4715,12 +4536,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -4732,11 +4553,11 @@
+ checking whether the g++ linker (ld) supports shared libraries... yes
+ checking for g++ option to produce PIC... -fPIC -DPIC
+ checking if g++ PIC flag -fPIC -DPIC works... yes
+-checking if g++ static flag -static works... yes
++checking if g++ static flag -static works... no
+ checking if g++ supports -c -o file.o... yes
+ checking if g++ supports -c -o file.o... (cached) yes
+ checking whether the g++ linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for as... /usr/bin/as
+ checking what assembler to use... /usr/bin/as
+@@ -4749,7 +4570,7 @@
+ checking what objdump to use... /usr/bin/objdump
+ checking for readelf... /usr/bin/readelf
+ checking what readelf to use... /usr/bin/readelf
+-checking assembler flags... --32
++checking assembler flags...
+ checking assembler for .balign and .p2align... yes
+ checking assembler for .p2align with maximum skip... yes
+ checking assembler for .literal16... no
+@@ -4878,12 +4699,12 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -4953,13 +4774,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -4974,7 +4795,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -5289,7 +5110,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -5316,12 +5137,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -5636,7 +5457,8 @@
+ checking build system type... [ARCH]
+ checking host system type... [ARCH]
+ checking target system type... [ARCH]
+-checking for decimal floating point... bid
++checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
++dpd
+ checking whether byte ordering is bigendian... no
+ configure: updating cache ./config.cache
+ configure: creating ./config.status
+@@ -5649,12 +5471,8 @@
+ source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
+ source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
+ source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
+-source='../../master/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/bid2dpd_dpd2bid.c
+-source='../../master/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee32.c
+-source='../../master/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee64.c
+-source='../../master/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee128.c
+ rm -f libdecnumber.a
+-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
++ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
+ ranlib libdecnumber.a
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
+@@ -5714,9 +5532,9 @@
+ HEADERS="auto-host.h ansidecl.h" DEFINES="" \
+ /bin/bash ../../master/gcc/mkconfig.sh config.h
+ TARGET_CPU_DEFAULT="" \
+- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
++ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SINGLE_LIBC DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
+ /bin/bash ../../master/gcc/mkconfig.sh tm.h
+-gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt > tmp-optionlist
+ /bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
+ echo timestamp > s-options
+ gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
+@@ -6347,8 +6165,7 @@
+ echo timestamp > s-i386-bt
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
+ ../../master/gcc/config/i386/i386.c -o i386.o
+-[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
+- ../../master/gcc/config/host-linux.c
++[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/host-default.c -o host-default.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
+@@ -6378,7 +6195,7 @@
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
+ rm -rf libbackend.a
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+ ranlib libbackend.a
+ build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
+ checksum-options > cc1-checksum.c.tmp && \
+@@ -6669,7 +6486,7 @@
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/prev-gcc'
+ echo timestamp > stmp-fixinc
+ rm -f mm_malloc.h
+-cat ../../master/gcc/config/i386/pmm_malloc.h > mm_malloc.h
++cat ../../master/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+ if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
+ if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
+ for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
+@@ -6890,7 +6707,7 @@
+ (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-12-08 --section=1 rebuild-gcj-db.pod > doc/rebuild-gcj-db.1.T$$ && \
+ mv -f doc/rebuild-gcj-db.1.T$$ doc/rebuild-gcj-db.1) || \
+ (rm -f doc/rebuild-gcj-db.1.T$$ && exit 1)
+-rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcj.pod gfdl.pod cpp.pod gij.pod gc-analyze.pod gcov.pod gfortran.pod fsf-funding.pod gcc.pod
++rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcov.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gfortran.pod fsf-funding.pod gcc.pod
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
+ Configuring stage 2 in ./lto-plugin
+ configure: creating cache ./config.cache
+@@ -6926,7 +6743,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -6953,12 +6770,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -6998,7 +6815,6 @@
+ libtool: install: warning: remember to run `libtool --finish [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0'
+ make all-am
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/lto-plugin'
+-make[4]: Nothing to be done for `all-am'.
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
+ mkdir -p -- [ARCH]/libgcc
+@@ -7022,7 +6838,8 @@
+ checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
+ checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
+-checking whether decimal floating point is supported... yes
++checking whether decimal floating point is supported... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ checking whether fixed-point is supported... no
+ checking whether assembler supports CFI directives... yes
+ checking for __attribute__((visibility("hidden")))... yes
+@@ -7226,136 +7043,6 @@
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../master/libgcc/config/libbid/bid_decimal_globals.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../master/libgcc/config/libbid/bid_decimal_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../master/libgcc/config/libbid/bid_binarydecimal.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../master/libgcc/config/libbid/bid_convert_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../master/libgcc/config/libbid/_isinfd32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../master/libgcc/config/libbid/_isinfd64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../master/libgcc/config/libbid/_isinfd128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../master/libgcc/config/libbid/bid64_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../master/libgcc/config/libbid/bid128_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../master/libgcc/config/libbid/bid128_fma.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../master/libgcc/config/libbid/bid_round.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../master/libgcc/config/libbid/bid_from_int.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../master/libgcc/config/libbid/bid64_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../master/libgcc/config/libbid/bid128_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../master/libgcc/config/libbid/bid64_div.c
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../master/libgcc/config/libbid/bid128_div.c
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../master/libgcc/config/libbid/bid64_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../master/libgcc/config/libbid/bid128_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../master/libgcc/config/libbid/bid64_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../master/libgcc/config/libbid/bid128_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../master/libgcc/config/libbid/bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid64_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../master/libgcc/config/libbid/bid64_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../master/libgcc/config/libbid/bid64_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../master/libgcc/config/libbid/bid128_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../master/libgcc/config/libbid/bid128_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_addsub_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_div_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_mul_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_eq_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ne_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_lt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_gt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_le_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ge_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_si_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_di_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_usi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_udi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_df_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_xf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_tf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_unord_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_addsub_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_div_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_mul_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_eq_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ne_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_lt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_gt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_le_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ge_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_si_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_di_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_usi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_udi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_sf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_df_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_xf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_tf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_unord_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_addsub_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_div_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_mul_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_eq_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ne_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_lt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_gt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_le_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ge_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_si_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_di_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_usi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_udi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_sf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_df_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_xf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_tf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_unord_td.c
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
+@@ -7412,7 +7099,7 @@
+ mv -f morestack.visT morestack.vis
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
+ rm -f libgcc.a
+-objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
++objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
+ if test -z "$objects"; then \
+ echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
+@@ -7717,7 +7404,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -7743,12 +7430,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -7767,7 +7454,7 @@
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for ANSI C header files... (cached) yes
+ checking whether time.h and sys/time.h may both be included... yes
+@@ -7930,7 +7617,7 @@
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
+ mv -f .deps/affinity.Tpo .deps/affinity.Plo
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
++libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+ libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
+ libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
+ libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
+@@ -7984,6 +7671,7 @@
+ fi
+ make[6]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
+ [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L. -Wall -L../libgfortran -fsyntax-only omp_lib.f90
++:
+ make[5]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
+@@ -8195,6 +7883,7 @@
+ checking valgrind.h usability... no
+ checking valgrind.h presence... no
+ checking for valgrind.h... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ configure: WARNING: fixed-point is not supported for this target, ignored
+ checking whether make sets $(MAKE)... yes
+ checking for gawk... gawk
+@@ -8357,7 +8046,6 @@
+ Using the following target machine macro files:
+ ../../master/gcc/config/vxworks-dummy.h
+ ../../master/gcc/config/i386/i386.h
+- ../../master/gcc/config/linux-android.h
+ ../../master/gcc/config/i386/unix.h
+ ../../master/gcc/config/i386/att.h
+ ../../master/gcc/config/dbxelf.h
+@@ -8366,7 +8054,9 @@
+ ../../master/gcc/config/linux.h
+ ../../master/gcc/config/glibc-stdint.h
+ ../../master/gcc/config/i386/linux.h
+-Using host-linux.o for host machine hooks.
++ ../../master/gcc/config/gnu.h
++ ../../master/gcc/config/i386/gnu.h
++Using host-default.o for host machine hooks.
+ checking for __cxa_atexit... yes
+ checking whether NLS is requested... yes
+ checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
+@@ -8378,7 +8068,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -8394,12 +8084,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -8411,11 +8101,11 @@
+ checking whether the g++ linker (ld) supports shared libraries... yes
+ checking for g++ option to produce PIC... -fPIC -DPIC
+ checking if g++ PIC flag -fPIC -DPIC works... yes
+-checking if g++ static flag -static works... yes
++checking if g++ static flag -static works... no
+ checking if g++ supports -c -o file.o... yes
+ checking if g++ supports -c -o file.o... (cached) yes
+ checking whether the g++ linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for as... /usr/bin/as
+ checking what assembler to use... /usr/bin/as
+@@ -8428,7 +8118,7 @@
+ checking what objdump to use... /usr/bin/objdump
+ checking for readelf... /usr/bin/readelf
+ checking what readelf to use... /usr/bin/readelf
+-checking assembler flags... --32
++checking assembler flags...
+ checking assembler for .balign and .p2align... yes
+ checking assembler for .p2align with maximum skip... yes
+ checking assembler for .literal16... no
+@@ -8557,12 +8247,12 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -8632,13 +8322,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -8653,7 +8343,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -8968,7 +8658,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -8995,12 +8685,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -9315,7 +9005,8 @@
+ checking build system type... [ARCH]
+ checking host system type... [ARCH]
+ checking target system type... [ARCH]
+-checking for decimal floating point... bid
++checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
++dpd
+ checking whether byte ordering is bigendian... no
+ configure: updating cache ./config.cache
+ configure: creating ./config.status
+@@ -9328,12 +9019,8 @@
+ source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
+ source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
+ source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
+-source='../../master/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/bid2dpd_dpd2bid.c
+-source='../../master/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee32.c
+-source='../../master/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee64.c
+-source='../../master/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee128.c
+ rm -f libdecnumber.a
+-ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
++ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
+ ranlib libdecnumber.a
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
+@@ -9393,9 +9080,9 @@
+ HEADERS="auto-host.h ansidecl.h" DEFINES="" \
+ /bin/bash ../../master/gcc/mkconfig.sh config.h
+ TARGET_CPU_DEFAULT="" \
+- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
++ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SINGLE_LIBC DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
+ /bin/bash ../../master/gcc/mkconfig.sh tm.h
+-gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
++gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt > tmp-optionlist
+ /bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
+ echo timestamp > s-options
+ gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
+@@ -10026,8 +9713,7 @@
+ echo timestamp > s-i386-bt
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
+ ../../master/gcc/config/i386/i386.c -o i386.o
+-[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
+- ../../master/gcc/config/host-linux.c
++[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/host-default.c -o host-default.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
+@@ -10057,7 +9743,7 @@
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
+ [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
+ rm -rf libbackend.a
+-ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
++ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
+ ranlib libbackend.a
+ build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
+ checksum-options > cc1-checksum.c.tmp && \
+@@ -10348,7 +10034,7 @@
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/prev-gcc'
+ echo timestamp > stmp-fixinc
+ rm -f mm_malloc.h
+-cat ../../master/gcc/config/i386/pmm_malloc.h > mm_malloc.h
++cat ../../master/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+ if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
+ if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
+ for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
+@@ -10569,7 +10255,7 @@
+ (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-12-08 --section=1 rebuild-gcj-db.pod > doc/rebuild-gcj-db.1.T$$ && \
+ mv -f doc/rebuild-gcj-db.1.T$$ doc/rebuild-gcj-db.1) || \
+ (rm -f doc/rebuild-gcj-db.1.T$$ && exit 1)
+-rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcj.pod gfdl.pod cpp.pod gij.pod gc-analyze.pod gcov.pod gfortran.pod fsf-funding.pod gcc.pod
++rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcov.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gfortran.pod fsf-funding.pod gcc.pod
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
+ Configuring stage 3 in ./lto-plugin
+ configure: creating cache ./config.cache
+@@ -10605,7 +10291,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+@@ -10632,12 +10318,12 @@
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -10677,7 +10363,6 @@
+ libtool: install: warning: remember to run `libtool --finish [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0'
+ make all-am
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/lto-plugin'
+-make[4]: Nothing to be done for `all-am'.
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
+ mkdir -p -- [ARCH]/libgcc
+@@ -10701,7 +10386,8 @@
+ checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
+ checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
+-checking whether decimal floating point is supported... yes
++checking whether decimal floating point is supported... no
++configure: WARNING: decimal float is not supported for this target, ignored
+ checking whether fixed-point is supported... no
+ checking whether assembler supports CFI directives... yes
+ checking for __attribute__((visibility("hidden")))... yes
+@@ -10905,136 +10591,6 @@
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
+ -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../master/libgcc/config/libbid/bid_decimal_globals.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../master/libgcc/config/libbid/bid_decimal_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../master/libgcc/config/libbid/bid_binarydecimal.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../master/libgcc/config/libbid/bid_convert_data.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../master/libgcc/config/libbid/_isinfd32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../master/libgcc/config/libbid/_isinfd64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../master/libgcc/config/libbid/_isinfd128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../master/libgcc/config/libbid/bid64_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../master/libgcc/config/libbid/bid128_noncomp.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../master/libgcc/config/libbid/bid128_fma.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../master/libgcc/config/libbid/bid_round.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../master/libgcc/config/libbid/bid_from_int.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../master/libgcc/config/libbid/bid64_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../master/libgcc/config/libbid/bid128_add.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../master/libgcc/config/libbid/bid64_div.c
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
+-../../../master/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../master/libgcc/config/libbid/bid128_div.c
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
+-../../../master/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../master/libgcc/config/libbid/bid64_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../master/libgcc/config/libbid/bid128_mul.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../master/libgcc/config/libbid/bid64_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../master/libgcc/config/libbid/bid128_compare.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../master/libgcc/config/libbid/bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid64_to_bid128.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../master/libgcc/config/libbid/bid64_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../master/libgcc/config/libbid/bid64_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../master/libgcc/config/libbid/bid128_to_int32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../master/libgcc/config/libbid/bid128_to_int64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint32.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint64.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_addsub_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_div_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_mul_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_eq_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ne_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_lt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_gt_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_le_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ge_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_si_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_di_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_usi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_udi_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_df_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_xf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_tf_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_unord_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_addsub_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_div_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_mul_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_eq_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ne_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_lt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_gt_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_le_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ge_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_si_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_di_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_usi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_udi_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_sf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_df_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_xf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_tf_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_unord_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_addsub_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_div_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_mul_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_eq_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ne_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_lt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_gt_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_le_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ge_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_si.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_di.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_usi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_udi.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_si_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_di_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_usi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_udi_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_df.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_xf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_tf.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_sf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_df_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_xf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_tf_to_td.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_dd.c
+-[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_unord_td.c
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
+ ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
+@@ -11091,7 +10647,7 @@
+ mv -f morestack.visT morestack.vis
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
+ rm -f libgcc.a
+-objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
++objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
+ if test -z "$objects"; then \
+ echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
+@@ -11396,7 +10952,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -11422,12 +10978,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -11446,7 +11002,7 @@
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for ANSI C header files... (cached) yes
+ checking whether time.h and sys/time.h may both be included... yes
+@@ -11609,7 +11165,7 @@
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
+ mv -f .deps/affinity.Tpo .deps/affinity.Plo
+ /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
++libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
+ libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
+ libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
+ libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
+@@ -11675,8 +11231,8 @@
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build'
+ Comparing stages 2 and 3
+ warning: gcc/cc1-checksum.o differs
+-warning: gcc/cc1obj-checksum.o differs
+ warning: gcc/cc1plus-checksum.o differs
++warning: gcc/cc1obj-checksum.o differs
+ Comparison successful.
+ if false; then \
+ rm -rf stage2-*; \
+@@ -11850,7 +11406,7 @@
+ checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -11875,19 +11431,19 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... yes
+@@ -11898,11 +11454,11 @@
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for exception model to use... call frame
+ checking for compiler with PCH support... yes
+@@ -11912,7 +11468,7 @@
+ checking for atomic builtins for short... yes
+ checking for atomic builtins for int... yes
+ checking for atomic builtins for long long... yes
+-checking for ISO/IEC TR 24733 ... yes
++checking for ISO/IEC TR 24733 ... no
+ checking for g++ that supports -ffunction-sections -fdata-sections... yes
+ checking for underlying I/O to use... stdio
+ checking for C locale to use... gnu
+@@ -11949,8 +11505,8 @@
+ checking for additional debug build... no
+ checking for parallel mode support... yes
+ checking for extra compiler flags for building...
+-checking for EOWNERDEAD... yes
+-checking for ENOTRECOVERABLE... yes
++checking for EOWNERDEAD... no
++checking for ENOTRECOVERABLE... no
+ checking for ENOLINK... yes
+ checking for EPROTO... yes
+ checking for ENODATA... yes
+@@ -12201,7 +11757,7 @@
+ checking for sys/resource.h... (cached) yes
+ checking for RLIMIT_DATA... yes
+ checking for RLIMIT_RSS... yes
+-checking for RLIMIT_VMEM... no
++checking for RLIMIT_VMEM... yes
+ checking for RLIMIT_AS... yes
+ checking for RLIMIT_FSIZE... yes
+ checking for testsuite resource limits support... yes
+@@ -12347,12 +11903,12 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -12422,13 +11978,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -12443,7 +11999,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -12482,6 +12038,10 @@
+ mkdir pic; \
+ else true; fi
+ touch stamp-picdir
++CONFIG_FILES= CONFIG_HEADERS=config.h:../../../master/libiberty/config.in /bin/bash ./config.status
++config.status: creating config.h
++config.status: config.h is unchanged
++config.status: executing default commands
+ if [ x"" != x ]; then \
+ [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -DHAVE_CONFIG_H -g -O2 -I. -I../../../master/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../master/libiberty/regex.c -o pic/regex.o; \
+ else true; fi
+@@ -13099,6 +12659,8 @@
+ ln -s [...]/hurd/master/libstdc++-v3/config/io/basic_file_stdio.cc ./basic_file.cc || true
+ /bin/bash ../libtool --tag CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o basic_file.lo basic_file.cc
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -fPIC -DPIC -o .libs/basic_file.o
++basic_file.cc: In member function 'std::streamsize std::__basic_file::showmanyc()':
++basic_file.cc:345:33: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -o basic_file.o >/dev/null 2>&1
+ ln -s [...]/hurd/master/libstdc++-v3/config/locale/gnu/c_locale.cc ./c++locale.cc || true
+ /bin/bash ../libtool --tag CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o c++locale.lo c++locale.cc
+@@ -13131,7 +12693,7 @@
+ libtool: link: (cd ".libs" && rm -f "libstdc++.so.6" && ln -s "libstdc++.so.6.0.15" "libstdc++.so.6")
+ libtool: link: (cd ".libs" && rm -f "libstdc++.so" && ln -s "libstdc++.so.6.0.15" "libstdc++.so")
+ libtool: link: (cd .libs/libstdc++.lax/libsupc++convenience.a && ar x "[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/../libsupc++/.libs/libsupc++convenience.a")
+-libtool: link: ar rc .libs/libstdc++.a atomic.o bitmap_allocator.o pool_allocator.o mt_allocator.o codecvt.o compatibility.o compatibility-c++0x.o compatibility-debug_list.o compatibility-list.o complex_io.o ctype.o debug.o functexcept.o globals_io.o hash_c++0x.o hash_tr1.o hashtable_c++0x.o hashtable_tr1.o ios.o ios_failure.o ios_init.o ios_locale.o limits.o list.o debug_list.o locale.o locale_init.o locale_facets.o localename.o math_stubs_float.o math_stubs_long_double.o stdexcept.o strstream.o system_error.o tree.o allocator-inst.o concept-inst.o fstream-inst.o ext-inst.o ios-inst.o iostream-inst.o istream-inst.o istream.o locale-inst.o misc-inst.o ostream-inst.o sstream-inst.o streambuf-inst.o streambuf.o string-inst.o valarray-inst.o wlocale-inst.o wstring-inst.o mutex.o condition_variable.o chrono.o thread.o future.o atomicity.o codecvt_members.o collate_members.o ctype_members.o messages_members.o monetary_members.o numeric_members.o time_members.o basic_file.o c++locale.o parallel_list.o parallel_settings.o compatibility-parallel_list.o .libs/libstdc++.lax/libsupc++convenience.a/new_opv.o .libs/libstdc++.lax/libsupc++convenience.a/si_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/del_op.o .libs/libstdc++.lax/libsupc++convenience.a/eh_globals.o .libs/libstdc++.lax/libsupc++convenience.a/enum_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/bad_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/eh_call.o .libs/libstdc++.lax/libsupc++convenience.a/vterminate.o .libs/libstdc++.lax/libsupc++convenience.a/function_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/cp-demangle.o .libs/libstdc++.lax/libsupc++convenience.a/atexit_arm.o .libs/libstdc++.lax/libsupc++convenience.a/eh_throw.o .libs/libstdc++.lax/libsupc++convenience.a/eh_terminate.o .libs/libstdc++.lax/libsupc++convenience.a/guard.o .libs/libstdc++.lax/libsupc++convenience.a/eh_catch.o .libs/libstdc++.lax/libsupc++convenience.a/fundamental_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/hash_bytes.o .libs/libstdc++.lax/libsupc++convenience.a/del_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo.o .libs/libstdc++.lax/libsupc++convenience.a/new_handler.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo2.o .libs/libstdc++.lax/libsupc++convenience.a/pointer_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_ptr.o .libs/libstdc++.lax/libsupc++convenience.a/pmem_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/vec.o .libs/libstdc++.lax/libsupc++convenience.a/eh_arm.o .libs/libstdc++.lax/libsupc++convenience.a/class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_type.o .libs/libstdc++.lax/libsupc++convenience.a/eh_unex_handler.o .libs/libstdc++.lax/libsupc++convenience.a/del_opv.o .libs/libstdc++.lax/libsupc++convenience.a/eh_personality.o .libs/libstdc++.lax/libsupc++convenience.a/pbase_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_aux_runtime.o .libs/libstdc++.lax/libsupc++convenience.a/eh_term_handler.o .libs/libstdc++.lax/libsupc++convenience.a/array_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/new_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/del_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/vmi_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/new_op.o .libs/libstdc++.lax/libsupc++convenience.a/bad_cast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_exception.o .libs/libstdc++.lax/libsupc++convenience.a/bad_typeid.o .libs/libstdc++.lax/libsupc++convenience.a/dyncast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/new_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/pure.o
++libtool: link: ar rc .libs/libstdc++.a atomic.o bitmap_allocator.o pool_allocator.o mt_allocator.o codecvt.o compatibility.o compatibility-c++0x.o compatibility-debug_list.o compatibility-list.o complex_io.o ctype.o debug.o functexcept.o globals_io.o hash_c++0x.o hash_tr1.o hashtable_c++0x.o hashtable_tr1.o ios.o ios_failure.o ios_init.o ios_locale.o limits.o list.o debug_list.o locale.o locale_init.o locale_facets.o localename.o math_stubs_float.o math_stubs_long_double.o stdexcept.o strstream.o system_error.o tree.o allocator-inst.o concept-inst.o fstream-inst.o ext-inst.o ios-inst.o iostream-inst.o istream-inst.o istream.o locale-inst.o misc-inst.o ostream-inst.o sstream-inst.o streambuf-inst.o streambuf.o string-inst.o valarray-inst.o wlocale-inst.o wstring-inst.o mutex.o condition_variable.o chrono.o thread.o future.o atomicity.o codecvt_members.o collate_members.o ctype_members.o messages_members.o monetary_members.o numeric_members.o time_members.o basic_file.o c++locale.o parallel_list.o parallel_settings.o compatibility-parallel_list.o .libs/libstdc++.lax/libsupc++convenience.a/array_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/atexit_arm.o .libs/libstdc++.lax/libsupc++convenience.a/bad_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/bad_cast.o .libs/libstdc++.lax/libsupc++convenience.a/bad_typeid.o .libs/libstdc++.lax/libsupc++convenience.a/class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/del_op.o .libs/libstdc++.lax/libsupc++convenience.a/del_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/del_opv.o .libs/libstdc++.lax/libsupc++convenience.a/del_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/dyncast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/eh_arm.o .libs/libstdc++.lax/libsupc++convenience.a/eh_aux_runtime.o .libs/libstdc++.lax/libsupc++convenience.a/eh_call.o .libs/libstdc++.lax/libsupc++convenience.a/eh_catch.o .libs/libstdc++.lax/libsupc++convenience.a/eh_exception.o .libs/libstdc++.lax/libsupc++convenience.a/eh_globals.o .libs/libstdc++.lax/libsupc++convenience.a/eh_personality.o .libs/libstdc++.lax/libsupc++convenience.a/eh_ptr.o .libs/libstdc++.lax/libsupc++convenience.a/eh_term_handler.o .libs/libstdc++.lax/libsupc++convenience.a/eh_terminate.o .libs/libstdc++.lax/libsupc++convenience.a/eh_throw.o .libs/libstdc++.lax/libsupc++convenience.a/eh_type.o .libs/libstdc++.lax/libsupc++convenience.a/eh_unex_handler.o .libs/libstdc++.lax/libsupc++convenience.a/enum_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/function_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/fundamental_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/guard.o .libs/libstdc++.lax/libsupc++convenience.a/hash_bytes.o .libs/libstdc++.lax/libsupc++convenience.a/new_handler.o .libs/libstdc++.lax/libsupc++convenience.a/new_op.o .libs/libstdc++.lax/libsupc++convenience.a/new_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/new_opv.o .libs/libstdc++.lax/libsupc++convenience.a/new_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/pbase_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pmem_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pointer_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pure.o .libs/libstdc++.lax/libsupc++convenience.a/si_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo2.o .libs/libstdc++.lax/libsupc++convenience.a/vec.o .libs/libstdc++.lax/libsupc++convenience.a/vmi_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/vterminate.o .libs/libstdc++.lax/libsupc++convenience.a/cp-demangle.o
+ libtool: link: ranlib .libs/libstdc++.a
+ libtool: link: rm -fr .libs/libstdc++.lax
+ libtool: link: ( cd ".libs" && rm -f "libstdc++.la" && ln -s "../libstdc++.la" "libstdc++.la" )
+@@ -13351,7 +12913,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -13366,19 +12928,19 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... yes
+@@ -13592,7 +13154,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -13607,12 +13169,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -13792,7 +13354,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -13818,12 +13380,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -14315,7 +13877,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -14341,19 +13903,19 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... yes
+@@ -14370,7 +13932,7 @@
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether the GNU Fortran compiler is working... yes
+ checking for special C compiler options needed for large files... no
+@@ -17113,7 +16675,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -17139,12 +16701,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -17156,11 +16718,11 @@
+ checking whether the [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for thread model used by GCC... posix
+ checking for dlopen in -ldl... yes
+@@ -17217,7 +16779,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -17244,12 +16806,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -17561,6 +17123,11 @@
+ -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include \
+ -o thr.lo
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/thr.c -c -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -fPIC -DPIC -o .libs/thr.o
++In file included from ../.././gcc/gthr-default.h:1:0,
++ from [...]/hurd/master/libobjc/../gcc/gthr.h:162,
++ from [...]/hurd/master/libobjc/thr.c:43:
++[...]/hurd/master/libobjc/../gcc/gthr-posix.h: In function '__gthread_objc_thread_set_priority':
++[...]/hurd/master/libobjc/../gcc/gthr-posix.h:384:41: warning: unused parameter 'priority' [-Wunused-parameter]
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/thr.c -c -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -o thr.o >/dev/null 2>&1
+ /bin/bash ./libtool --mode=compile [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/exception.c -c \
+ -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -fexceptions -Wno-deprecated-declarations \
+@@ -17660,7 +17227,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -17686,12 +17253,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -17936,7 +17503,7 @@
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -17962,12 +17529,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -18026,13 +17593,13 @@
+ checking for [ARCH]-dlltool... dlltool
+ checking for gawk... (cached) gawk
+ checking for jar... jar
+-checking for zip... /usr/bin/zip
++checking for zip... no
+ checking for unzip... /usr/bin/unzip
+ checking whether to enable maintainer-specific portions of Makefiles... no
+ [ARCH]
+ checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
+ checking if the GNU linker ([...]/hurd/master.build/./gcc/collect-ld) supports -Bsymbolic-functions... yes
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking which variable specifies run-time library path... LD_LIBRARY_PATH
+ checking how to print strings... printf
+ checking for a sed that does not truncate output... /bin/sed
+@@ -18043,7 +17610,7 @@
+ checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
+ checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
+@@ -18069,19 +17636,19 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... yes
+@@ -18092,11 +17659,11 @@
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for [ARCH]-gcj... [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include
+ checking dependency style of [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include ... gcc3
+@@ -18105,7 +17672,7 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC works... yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+@@ -18158,8 +17725,8 @@
+ checking sys/resource.h presence... yes
+ checking for sys/resource.h... yes
+ checking for dladdr in -ldl... yes
+-checking for /proc/self/exe... yes
+-checking for /proc/self/maps... yes
++checking for /proc/self/exe... no
++checking for /proc/self/maps... no
+ checking for ld used by GCC... [...]/hurd/master.build/./gcc/collect-ld
+ checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... (cached) yes
+ checking for shared library run path origin... done
+@@ -18295,8 +17862,8 @@
+ config.status: linking ../../../master/libjava/sysdep/i386/locks.h to sysdep/locks.h
+ config.status: linking ../../../master/libjava/sysdep/generic/backtrace.h to sysdep/backtrace.h
+ config.status: linking ../../../master/libjava/sysdep/descriptor-n.h to sysdep/descriptor.h
+-config.status: linking ../../../master/libjava/include/i386-signal.h to include/java-signal.h
+-config.status: linking ../../../master/libjava/include/i386-signal.h to include/java-signal-aux.h
++config.status: linking ../../../master/libjava/include/default-signal.h to include/java-signal.h
++config.status: linking ../../../master/libjava/include/default-signal.h to include/java-signal-aux.h
+ config.status: executing default-1 commands
+ Adding multilib support to Makefile in ../../../master/libjava
+ multidirs=
+@@ -18356,7 +17923,7 @@
+ checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... (cached) yes
+ checking for BSD- or MS-compatible name lister (nm)... (cached) [...]/hurd/master.build/./gcc/nm
+ checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... (cached) BSD nm
+-checking the maximum length of command line arguments... (cached) 805306365
++checking the maximum length of command line arguments... (cached) -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... (cached) -r
+@@ -18371,12 +17938,12 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
+ checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) yes
++checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) no
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... (cached) no
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -18399,11 +17966,11 @@
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
+-checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) yes
++checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) no
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+-checking dynamic linker characteristics... (cached) GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking __attribute__((,,))... yes
+ checking __attribute__((unused))... yes
+@@ -18414,9 +17981,9 @@
+ checking for sys/types.h... (cached) yes
+ checking for sys/config.h... (cached) no
+ checking for sys/ioctl.h... (cached) yes
+-checking asm/ioctls.h usability... yes
+-checking asm/ioctls.h presence... yes
+-checking for asm/ioctls.h... yes
++checking asm/ioctls.h usability... no
++checking asm/ioctls.h presence... no
++checking for asm/ioctls.h... no
+ checking for inttypes.h... (cached) yes
+ checking for stdint.h... (cached) yes
+ checking utime.h usability... yes
+@@ -18439,9 +18006,9 @@
+ checking sys/event.h usability... no
+ checking sys/event.h presence... no
+ checking for sys/event.h... no
+-checking sys/epoll.h usability... yes
+-checking sys/epoll.h presence... yes
+-checking for sys/epoll.h... yes
++checking sys/epoll.h usability... no
++checking sys/epoll.h presence... no
++checking for sys/epoll.h... no
+ checking for ifaddrs.h... (cached) yes
+ checking netinet/in_systm.h usability... yes
+ checking netinet/in_systm.h presence... yes
+@@ -18498,9 +18065,9 @@
+ checking for statvfs... yes
+ checking for mmap... (cached) yes
+ checking for munmap... yes
+-checking for mincore... yes
+-checking for msync... yes
+-checking for madvise... yes
++checking for mincore... no
++checking for msync... no
++checking for madvise... no
+ checking for getpagesize... yes
+ checking for sysconf... yes
+ checking for lstat... (cached) yes
+@@ -18511,7 +18078,7 @@
+ checking for getifaddrs... (cached) yes
+ checking for kqueue... no
+ checking for kevent... no
+-checking for epoll_create... yes
++checking for epoll_create... no
+ checking for getloadavg... yes
+ checking for magic_open in -lmagic... no
+ checking whether struct sockaddr_in6 is in netinet/in.h... yes
+@@ -18536,13 +18103,13 @@
+ checking gmp.h usability... yes
+ checking gmp.h presence... yes
+ checking for gmp.h... yes
+-checking jni_md.h support... yes
++checking jni_md.h support... configure: WARNING: no
+ checking whether to enable maintainer-specific portions of Makefiles... no
+ checking for mkdir... /bin/mkdir
+ checking for cp... /bin/cp
+ checking for date... /bin/date
+ checking for find... /usr/bin/find
+-checking for zip... (cached) /usr/bin/zip
++checking for zip... (cached) no
+ checking for a jar-like tool... trying fastjar, gjar and jar
+ checking for fastjar... /usr/bin/fastjar
+ checking whether to regenerate parsers with jay... no
+@@ -18679,7 +18246,7 @@
+ checking for stdint.h... (cached) yes
+ checking for unistd.h... (cached) yes
+ checking for dlfcn.h... (cached) yes
+-checking the maximum length of command line arguments... (cached) 805306365
++checking the maximum length of command line arguments... (cached) -1
+ checking command to parse [...]/hurd/master.build/./gcc/nm output from [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include object... (cached) ok
+ checking for objdir... (cached) .libs
+ checking for [ARCH]-ar... (cached) ar
+@@ -18692,7 +18259,7 @@
+ checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
+ checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -18703,7 +18270,7 @@
+ checking for library containing opendir... none required
+ checking which extension is used for loadable modules... .so
+ checking which variable specifies run-time library path... (cached) LD_LIBRARY_PATH
+-checking for the default library search path... /lib /usr/lib /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/local/lib
++checking for the default library search path... /lib /usr/lib
+ checking for objdir... .libs
+ checking whether libtool supports -dlopen/-dlpreopen... yes
+ checking for shl_load... (cached) no
+@@ -18925,14 +18492,12 @@
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
+ make all-am
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
+-make[4]: Nothing to be done for `all-am'.
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
+ Making all in include
+ make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
+ make all-am
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
+-make[4]: Nothing to be done for `all-am'.
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
+ Making all in classpath
+@@ -18948,705 +18513,705 @@
+ Adding java source files from VM directory [...]/hurd/master.build/[ARCH]/libjava
+ Adding generated files in builddir '..'.
+ touch compile-classes
+-./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties
+-./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
+-./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties
+-./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties
+-./classpath/tools/resource/sun/rmi/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/sun/rmi/rmic/messages.properties
+-./classpath/tools/resource/com/sun/tools/javac/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/com/sun/tools/javac/messages.properties
+-./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties
+-./classpath/resource/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog_de.properties
+-./classpath/resource/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/resource/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/font/fonts.properties
++./classpath/resource/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/gtk/font.properties
++./classpath/resource/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/fonts.properties
++./classpath/resource/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/xfonts.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_wo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_to.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk_SK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_JO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_my.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv_LV.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_af.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZW.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_af.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_MA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_fi_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi_FI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_MP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MP.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl_GL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_da.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_am.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_my.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_trv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_da.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_be_BY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_st.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_to.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_JM.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw_GB.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_NA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_si.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_st.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ss.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_am.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_be.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_be.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_si.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu_HU.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CL.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties
+ ./classpath/resource/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_US.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties
+-./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
+-./classpath/resource/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/gtk/font.properties
+-./classpath/resource/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/fonts.properties
+-./classpath/resource/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/xfonts.properties
+-./classpath/resource/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/font/fonts.properties
+-./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties
++./classpath/resource/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties
++./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties
+ ./classpath/resource/gnu/java/util/regex/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle.properties
+ ./classpath/resource/gnu/java/util/regex/MessagesBundle_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_fr.properties
+-./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties
+-./classpath/resource/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/org/ietf/jgss/MessagesBundle.properties
++./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/resource/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog.properties
++./classpath/resource/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog_de.properties
++./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties
+ ./classpath/resource/java/text/metazones.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/text/metazones.properties
+ ./classpath/resource/java/util/iso4217.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/iso4217.properties
+-./classpath/resource/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/weeks.properties
+ ./classpath/resource/java/util/logging/logging.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/logging/logging.properties
+-./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties
+-./classpath/lib/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog_de.properties
+-./classpath/lib/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/resource/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/weeks.properties
++./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties
++./classpath/resource/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/org/ietf/jgss/MessagesBundle.properties
++./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties
++./classpath/tools/resource/com/sun/tools/javac/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/com/sun/tools/javac/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties
++./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties
++./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
++./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties
++./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties
++./classpath/tools/resource/sun/rmi/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/sun/rmi/rmic/messages.properties
++./classpath/lib/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/font/fonts.properties
++./classpath/lib/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/gtk/font.properties
++./classpath/lib/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/fonts.properties
++./classpath/lib/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/xfonts.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_US.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_wo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_my.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_to.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_af.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_am_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_fi_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi_FI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_MP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MP.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_my.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_da.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_st.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_MX.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_am.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_am.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_be.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_si.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tr_TR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eo.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BW.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_to.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl_PL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PH.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_BO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_CY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_si.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ne.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_st.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_VI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_be.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties
+ ./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties
+-./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
+-./classpath/lib/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/gtk/font.properties
+-./classpath/lib/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/fonts.properties
+-./classpath/lib/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/xfonts.properties
+-./classpath/lib/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/font/fonts.properties
+-./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties
++./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties
+ ./classpath/lib/gnu/java/util/regex/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle.properties
+ ./classpath/lib/gnu/java/util/regex/MessagesBundle_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_fr.properties
+-./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties
+-./classpath/lib/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/org/ietf/jgss/MessagesBundle.properties
++./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties
++./classpath/lib/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog.properties
++./classpath/lib/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog_de.properties
++./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties
+ ./classpath/lib/java/text/metazones.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/text/metazones.properties
+ ./classpath/lib/java/util/iso4217.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/iso4217.properties
+-./classpath/lib/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/weeks.properties
+ ./classpath/lib/java/util/logging/logging.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/logging/logging.properties
++./classpath/lib/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/weeks.properties
++./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties
++./classpath/lib/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/org/ietf/jgss/MessagesBundle.properties
+ touch resources
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/lib'
+ Making all in doc
+@@ -19769,7 +19334,6 @@
+ make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
+ make all-am
+ make[5]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
+-make[5]: Nothing to be done for `all-am'.
+ make[5]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
+ make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
+ Making all in native
+@@ -19998,30 +19562,30 @@
+ echo -n > vm-tools.lst; \
+ fi
+ cat classes.lst asm.lst vm-tools.lst > all-classes.lst
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties classes/gnu/classpath/tools/orbd/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/jar/messages.properties classes/gnu/classpath/tools/jar/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties classes/gnu/classpath/tools/serialver/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties classes/gnu/classpath/tools/tnameserv/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties classes/gnu/classpath/tools/rmid/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties classes/gnu/classpath/tools/keytool/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties classes/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties classes/gnu/classpath/tools/appletviewer/messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/common/Messages.properties classes/gnu/classpath/tools/common/Messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties classes/gnu/classpath/tools/getopt/Messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties classes/gnu/classpath/tools/native2ascii/messages.properties
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties classes/gnu/classpath/tools/appletviewer/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties classes/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/jar/messages.properties classes/gnu/classpath/tools/jar/messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties classes/gnu/classpath/tools/jarsigner/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties classes/gnu/classpath/tools/keytool/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties classes/gnu/classpath/tools/native2ascii/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties classes/gnu/classpath/tools/orbd/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties classes/gnu/classpath/tools/rmic/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav classes/gnu/classpath/tools/rmic/templates/ImplTie.jav
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav classes/gnu/classpath/tools/rmic/templates/Stub.jav
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav classes/gnu/classpath/tools/rmic/templates/StubMethod.jav
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav classes/gnu/classpath/tools/rmic/templates/Stub_12.jav
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12Method.jav classes/gnu/classpath/tools/rmic/templates/Stub_12Method.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav classes/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Tie.jav classes/gnu/classpath/tools/rmic/templates/Tie.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav classes/gnu/classpath/tools/rmic/templates/Stub_12.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav classes/gnu/classpath/tools/rmic/templates/Stub.jav
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethod.jav classes/gnu/classpath/tools/rmic/templates/TieMethod.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav classes/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav classes/gnu/classpath/tools/rmic/templates/ImplTie.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav classes/gnu/classpath/tools/rmic/templates/StubMethod.jav
+- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties classes/gnu/classpath/tools/rmic/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties classes/gnu/classpath/tools/rmid/messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties classes/gnu/classpath/tools/rmiregistry/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties classes/gnu/classpath/tools/serialver/messages.properties
++ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties classes/gnu/classpath/tools/tnameserv/messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/com/sun/tools/javac/messages.properties classes/com/sun/tools/javac/messages.properties
+ cp ../../../../../master/libjava/classpath/tools/resource/sun/rmi/rmic/messages.properties classes/sun/rmi/rmic/messages.properties
+ cp -pR ../../../../../master/libjava/classpath/tools/asm .
+@@ -20297,6 +19861,9 @@
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF $depbase.Tpo -c -o gnu/gcj/util/natGCInfo.lo ../../../master/libjava/gnu/gcj/util/natGCInfo.cc &&\
+ mv -f $depbase.Tpo $depbase.Plo
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../master/libjava/gnu/gcj/util/natGCInfo.cc -fPIC -DPIC -o gnu/gcj/util/.libs/natGCInfo.o
++../../../master/libjava/gnu/gcj/util/natGCInfo.cc:440:1: warning: unused parameter 'name' [-Wunused-parameter]
++../../../master/libjava/gnu/gcj/util/natGCInfo.cc:446:1: warning: unused parameter 'name' [-Wunused-parameter]
++../../../master/libjava/gnu/gcj/util/natGCInfo.cc:452:1: warning: unused parameter 'name' [-Wunused-parameter]
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../master/libjava/gnu/gcj/util/natGCInfo.cc -o gnu/gcj/util/natGCInfo.o >/dev/null 2>&1
+ depbase=`echo gnu/java/lang/natMainThread.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/lang/natMainThread.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/lang/natMainThread.lo ../../../master/libjava/gnu/java/lang/natMainThread.cc &&\
+@@ -20357,6 +19924,8 @@
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/natPlainSocketImpl.lo gnu/java/net/natPlainSocketImpl.cc &&\
+ mv -f $depbase.Tpo $depbase.Plo
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -fPIC -DPIC -o gnu/java/net/.libs/natPlainSocketImpl.o
++gnu/java/net/natPlainSocketImpl.cc: In member function 'virtual jint gnu::java::net::PlainSocketImpl::available()':
++gnu/java/net/natPlainSocketImpl.cc:515:27: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -o gnu/java/net/natPlainSocketImpl.o >/dev/null 2>&1
+ depbase=`echo gnu/java/net/protocol/core/natCoreInputStream.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/protocol/core/natCoreInputStream.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/protocol/core/natCoreInputStream.lo ../../../master/libjava/gnu/java/net/protocol/core/natCoreInputStream.cc &&\
+@@ -20387,6 +19956,8 @@
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/nio/channels/natFileChannelImpl.cc &&\
+ mv -f $depbase.Tpo $depbase.Plo
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -fPIC -DPIC -o gnu/java/nio/channels/.libs/natFileChannelImpl.o
++gnu/java/nio/channels/natFileChannelImpl.cc: In member function 'jint gnu::java::nio::channels::FileChannelImpl::available()':
++gnu/java/nio/channels/natFileChannelImpl.cc:388:20: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -o gnu/java/nio/channels/natFileChannelImpl.o >/dev/null 2>&1
+ depbase=`echo gnu/java/security/jce/prng/natVMSecureRandom.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
+ /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/security/jce/prng/natVMSecureRandom.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/security/jce/prng/natVMSecureRandom.lo gnu/java/security/jce/prng/natVMSecureRandom.cc &&\
+@@ -23362,8 +22933,7 @@
+ /bin/bash ./libtool --tag=GCJ --mode=compile [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c -o org-xml.lo @org-xml.list
+ libtool: compile: [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -fPIC -o .libs/org-xml.o
+ libtool: compile: [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -o org-xml.o >/dev/null 2>&1
+-/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L[...]/hurd/master.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd/master.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -rpath [...]/hurd/master.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu/java/security/jce/hash.lo gnu/java/security/jce/prng.lo gnu/java/security/jce/sig.lo gnu/java/security/key.lo gnu/java/security/key/dss.lo gnu/java/security/key/rsa.lo gnu/java/security/pkcs.lo gnu/java/security/prng.lo gnu/java/security/provider.lo gnu/java/security/sig.lo gnu/java/security/sig/dss.lo gnu/java/security/sig/rsa.lo gnu/java/security/util.lo gnu/java/security/x509.lo gnu/java/security/x509/ext.lo gnu/java/text.lo gnu/java/util.lo gnu/java/util/jar.lo gnu/java/util/prefs.lo gnu/java/util/regex.lo gnu/javax/activation/viewers.lo gnu/javax/crypto.lo gnu/javax/crypto/assembly.lo gnu/javax/crypto/cipher.lo gnu/javax/crypto/jce.lo gnu/javax/crypto/jce/cipher.lo gnu/javax/crypto/jce/key.lo gnu/javax/crypto/jce/keyring.lo gnu/javax/crypto/jce/mac.lo gnu/javax/crypto/jce/params.lo gnu/javax/crypto/jce/prng.lo gnu/javax/crypto/jce/sig.lo gnu/javax/crypto/jce/spec.lo gnu/javax/crypto/key.lo gnu/javax/crypto/key/dh.lo gnu/javax/crypto/key/srp6.lo gnu/javax/crypto/keyring.lo gnu/javax/crypto/kwa.lo gnu/javax/crypto/mac.lo gnu/javax/crypto/mode.lo gnu/javax/crypto/pad.lo gnu/javax/crypto/prng.lo gnu/javax/crypto/sasl.lo gnu/javax/crypto/sasl/anonymous.lo gnu/javax/crypto/sasl/crammd5.lo gnu/javax/crypto/sasl/plain.lo gnu/javax/crypto/sasl/srp.lo gnu/javax/imageio.lo gnu/javax/imageio/bmp.lo gnu/javax/imageio/gif.lo gnu/javax/imageio/jpeg.lo gnu/javax/imageio/png.lo gnu/javax/naming/giop.lo gnu/javax/naming/ictxImpl/trans.lo gnu/javax/naming/jndi/url/corbaname.lo gnu/javax/naming/jndi/url/rmi.lo gnu/javax/net/ssl.lo gnu/javax/net/ssl/provider.lo gnu/javax/print.lo gnu/javax/print/ipp.lo gnu/javax/print/ipp/attribute.lo gnu/javax/print/ipp/attribute/defaults.lo gnu/javax/print/ipp/attribute/job.lo gnu/javax/print/ipp/attribute/printer.lo gnu/javax/print/ipp/attribute/supported.lo gnu/javax/security/auth.lo gnu/javax/security/auth/callback.lo gnu/javax/security/auth/login.lo gnu/javax/sound.lo gnu/javax/sound/sampled/AU.lo gnu/javax/sound/sampled/WAV.lo gnu/javax/swing/plaf/gnu.lo gnu/javax/swing/plaf/metal.lo gnu/javax/swing/text/html.lo gnu/javax/swing/text/html/css.lo gnu/javax/swing/text/html/parser/GnuParserDelegator.lo gnu/javax/swing/text/html/parser/HTML_401F.lo gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.lo gnu/javax/swing/text/html/parser/gnuDTD.lo gnu/javax/swing/text/html/parser/htmlAttributeSet.lo gnu/javax/swing/text/html/parser/htmlValidator.lo gnu/javax/swing/text/html/parser/models.lo gnu/javax/swing/text/html/parser/support.lo gnu/javax/swing/text/html/parser/support/low.lo gnu/javax/swing/tree.lo java/applet.lo java/awt.lo java/awt/color.lo java/awt/datatransfer.lo java/awt/dnd.lo java/awt/dnd/peer.lo java/awt/event.lo java/awt/font.lo java/awt/geom.lo java/awt/im.lo java/awt/im/spi.lo java/awt/image.lo java/awt/image/renderable.lo java/awt/peer.lo java/awt/print.lo java/beans.lo java/beans/beancontext.lo java/io.lo java/lang.lo java/lang/annotation.lo java/lang/instrument.lo java/lang/ref.lo java/lang/reflect.lo java/math.lo java/net.lo java/nio.lo java/nio/channels.lo java/nio/channels/spi.lo java/nio/charset.lo java/nio/charset/spi.lo java/rmi.lo java/rmi/activation.lo java/rmi/dgc.lo java/rmi/registry.lo java/rmi/server.lo java/security.lo java/security/acl.lo java/security/cert.lo java/security/interfaces.lo java/security/spec.lo java/sql.lo java/text.lo java/text/spi.lo java/util.lo java/util/concurrent.lo java/util/concurrent/atomic.lo java/util/concurrent/locks.lo java/util/jar.lo java/util/logging.lo java/util/prefs.lo java/util/regex.lo java/util/spi.lo java/util/zip.lo javax/accessibility.lo javax/activation.lo javax/activity.lo javax/crypto.lo javax/crypto/interfaces.lo javax/crypto/spec.lo javax/management.lo javax/management/loading.lo javax/management/openmbean.lo javax/management/remote.lo javax/management/remote/rmi.lo javax/naming.lo javax/naming/directory.lo javax/naming/event.lo javax/naming/ldap.lo javax/naming/spi.lo javax/net.lo javax/net/ssl.lo javax/print.lo javax/print/attribute.lo javax/print/attribute/standard.lo javax/print/event.lo javax/security/auth.lo javax/security/auth/callback.lo javax/security/auth/kerberos.lo javax/security/auth/login.lo javax/security/auth/spi.lo javax/security/auth/x500.lo javax/security/cert.lo javax/security/sasl.lo javax/sound/midi.lo javax/sound/midi/spi.lo javax/sound/sampled.lo javax/sound/sampled/spi.lo javax/sql.lo javax/swing.lo javax/swing/border.lo javax/swing/colorchooser.lo javax/swing/event.lo javax/swing/filechooser.lo javax/swing/plaf.lo javax/swing/plaf/basic.lo javax/swing/plaf/metal.lo javax/swing/plaf/multi.lo javax/swing/plaf/synth.lo javax/swing/table.lo javax/swing/text.lo javax/swing/text/html.lo javax/swing/text/html/parser.lo javax/swing/text/rtf.lo javax/swing/tree.lo javax/swing/undo.lo javax/tools.lo javax/transaction.lo javax/transaction/xa.lo org/ietf/jgss.lo sun/awt.lo sun/misc.lo sun/reflect.lo sun/reflect/annotation.lo sun/reflect/misc.lo gnu/classpath/jdwp.lo gnu/classpath/jdwp/event.lo gnu/classpath/jdwp/event/filters.lo gnu/classpath/jdwp/exception.lo gnu/classpath/jdwp/id.lo gnu/classpath/jdwp/processor.lo gnu/classpath/jdwp/transport.lo gnu/classpath/jdwp/util.lo gnu/classpath/jdwp/value.lo gnu/gcj/jvmti.lo gnu/java/awt/font/fonts.properties.lo gnu/java/awt/peer/gtk/font.properties.lo gnu/java/awt/peer/x/fonts.properties.lo gnu/java/awt/peer/x/xfonts.properties.lo gnu/java/locale/LocaleInformation.properties.lo gnu/java/locale/LocaleInformation_aa.properties.lo gnu/java/locale/LocaleInformation_aa_DJ.properties.lo gnu/java/locale/LocaleInformation_aa_ER.properties.lo gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.lo gnu/java/locale/LocaleInformation_aa_ET.properties.lo gnu/java/locale/LocaleInformation_af.properties.lo gnu/java/locale/LocaleInformation_af_NA.properties.lo gnu/java/locale/LocaleInformation_af_ZA.properties.lo gnu/java/locale/LocaleInformation_ak.properties.lo gnu/java/locale/LocaleInformation_am.properties.lo gnu/java/locale/LocaleInformation_am_ET.properties.lo gnu/java/locale/LocaleInformation_ar.properties.lo gnu/java/locale/LocaleInformation_ar_DZ.properties.lo gnu/java/locale/LocaleInformation_ar_JO.properties.lo gnu/java/locale/LocaleInformation_ar_LB.properties.lo gnu/java/locale/LocaleInformation_ar_MA.properties.lo gnu/java/locale/LocaleInformation_ar_QA.properties.lo gnu/java/locale/LocaleInformation_ar_SA.properties.lo gnu/java/locale/LocaleInformation_ar_SY.properties.lo gnu/java/locale/LocaleInformation_ar_TN.properties.lo gnu/java/locale/LocaleInformation_ar_YE.properties.lo gnu/java/locale/LocaleInformation_as.properties.lo gnu/java/locale/LocaleInformation_as_IN.properties.lo gnu/java/locale/LocaleInformation_az.properties.lo gnu/java/locale/LocaleInformation_az_Cyrl.properties.lo gnu/java/locale/LocaleInformation_be.properties.lo gnu/java/locale/LocaleInformation_be_BY.properties.lo gnu/java/locale/LocaleInformation_bg.properties.lo gnu/java/locale/LocaleInformation_bg_BG.properties.lo gnu/java/locale/LocaleInformation_bn.properties.lo gnu/java/locale/LocaleInformation_bn_IN.properties.lo gnu/java/locale/LocaleInformation_bo.properties.lo gnu/java/locale/LocaleInformation_bs.properties.lo gnu/java/locale/LocaleInformation_byn.properties.lo gnu/java/locale/LocaleInformation_byn_ER.properties.lo gnu/java/locale/LocaleInformation_ca.properties.lo gnu/java/locale/LocaleInformation_ca_ES.properties.lo gnu/java/locale/LocaleInformation_cch.properties.lo gnu/java/locale/LocaleInformation_cop.properties.lo gnu/java/locale/LocaleInformation_cs.properties.lo gnu/java/locale/LocaleInformation_cs_CZ.properties.lo gnu/java/locale/LocaleInformation_cy.properties.lo gnu/java/locale/LocaleInformation_cy_GB.properties.lo gnu/java/locale/LocaleInformation_da.properties.lo gnu/java/locale/LocaleInformation_da_DK.properties.lo gnu/java/locale/LocaleInformation_de.properties.lo gnu/java/locale/LocaleInformation_de_AT.properties.lo gnu/java/locale/LocaleInformation_de_BE.properties.lo gnu/java/locale/LocaleInformation_de_CH.properties.lo gnu/java/locale/LocaleInformation_de_DE.properties.lo gnu/java/locale/LocaleInformation_de_LI.properties.lo gnu/java/locale/LocaleInformation_de_LU.properties.lo gnu/java/locale/LocaleInformation_dv.properties.lo gnu/java/locale/LocaleInformation_dv_MV.properties.lo gnu/java/locale/LocaleInformation_dz.properties.lo gnu/java/locale/LocaleInformation_dz_BT.properties.lo gnu/java/locale/LocaleInformation_ee.properties.lo gnu/java/locale/LocaleInformation_el.properties.lo gnu/java/locale/LocaleInformation_el_CY.properties.lo gnu/java/locale/LocaleInformation_el_GR.properties.lo gnu/java/locale/LocaleInformation_en.properties.lo gnu/java/locale/LocaleInformation_en_AS.properties.lo gnu/java/locale/LocaleInformation_en_AU.properties.lo gnu/java/locale/LocaleInformation_en_BE.properties.lo gnu/java/locale/LocaleInformation_en_BW.properties.lo gnu/java/locale/LocaleInformation_en_BZ.properties.lo gnu/java/locale/LocaleInformation_en_CA.properties.lo gnu/java/locale/LocaleInformation_en_Dsrt.properties.lo gnu/java/locale/LocaleInformation_en_GB.properties.lo gnu/java/locale/LocaleInformation_en_GU.properties.lo gnu/java/locale/LocaleInformation_en_HK.properties.lo gnu/java/locale/LocaleInformation_en_IE.properties.lo gnu/java/locale/LocaleInformation_en_IN.properties.lo gnu/java/locale/LocaleInformation_en_JM.properties.lo gnu/java/locale/LocaleInformation_en_MH.properties.lo gnu/java/locale/LocaleInformation_en_MP.properties.lo gnu/java/locale/LocaleInformation_en_MT.properties.lo gnu/java/locale/LocaleInformation_en_NA.properties.lo gnu/java/locale/LocaleInformation_en_NZ.properties.lo gnu/java/locale/LocaleInformation_en_PH.properties.lo gnu/java/locale/LocaleInformation_en_PK.properties.lo gnu/java/locale/LocaleInformation_en_SG.properties.lo gnu/java/locale/LocaleInformation_en_Shaw.properties.lo gnu/java/locale/LocaleInformation_en_TT.properties.lo gnu/java/locale/LocaleInformation_en_UM.properties.lo gnu/java/locale/LocaleInformation_en_US.properties.lo gnu/java/locale/LocaleInformation_en_US_POSIX.properties.lo gnu/java/locale/LocaleInformation_en_VI.properties.lo gnu/java/locale/LocaleInformation_en_ZA.properties.lo gnu/java/locale/LocaleInformation_en_ZW.properties.lo gnu/java/locale/LocaleInformation_eo.properties.lo gnu/java/locale/LocaleInformation_es.properties.lo gnu/java/locale/LocaleInformation_es_AR.properties.lo gnu/java/locale/LocaleInformation_es_BO.properties.lo gnu/java/locale/LocaleInformation_es_CL.properties.lo gnu/java/locale/LocaleInformation_es_CO.properties.lo gnu/java/locale/LocaleInformation_es_CR.properties.lo gnu/java/locale/LocaleInformation_es_DO.properties.lo gnu/java/locale/LocaleInformation_es_EC.properties.lo gnu/java/locale/LocaleInformation_es_ES.properties.lo gnu/java/locale/LocaleInformation_es_GT.properties.lo gnu/java/locale/LocaleInformation_es_HN.properties.lo gnu/java/locale/LocaleInformation_es_MX.properties.lo gnu/java/locale/LocaleInformation_es_NI.properties.lo gnu/java/locale/LocaleInformation_es_PA.properties.lo gnu/java/locale/LocaleInformation_es_PE.properties.lo gnu/java/locale/LocaleInformation_es_PR.properties.lo gnu/java/locale/LocaleInformation_es_PY.properties.lo gnu/java/locale/LocaleInformation_es_SV.properties.lo gnu/java/locale/LocaleInformation_es_US.properties.lo gnu/java/locale/LocaleInformation_es_UY.properties.lo gnu/java/locale/LocaleInformation_es_VE.properties.lo gnu/java/locale/LocaleInformation_et.properties.lo gnu/java/locale/LocaleInformation_et_EE.properties.lo gnu/java/locale/LocaleInformation_eu.properties.lo gnu/java/locale/LocaleInformation_eu_ES.properties.lo gnu/java/locale/LocaleInformation_fa.properties.lo gnu/java/locale/LocaleInformation_fa_AF.properties.lo gnu/java/locale/LocaleInformation_fa_IR.properties.lo gnu/java/locale/LocaleInformation_fi.properties.lo gnu/java/locale/LocaleInformation_fi_FI.properties.lo gnu/java/locale/LocaleInformation_fil.properties.lo gnu/java/locale/LocaleInformation_fo.properties.lo gnu/java/locale/LocaleInformation_fo_FO.properties.lo gnu/java/locale/LocaleInformation_fr.properties.lo gnu/java/locale/LocaleInformation_fr_BE.properties.lo gnu/java/locale/LocaleInformation_fr_CA.properties.lo gnu/java/locale/LocaleInformation_fr_CH.properties.lo gnu/java/locale/LocaleInformation_fr_LU.properties.lo gnu/java/locale/LocaleInformation_fur.properties.lo gnu/java/locale/LocaleInformation_ga.properties.lo gnu/java/locale/LocaleInformation_ga_IE.properties.lo gnu/java/locale/LocaleInformation_gaa.properties.lo gnu/java/locale/LocaleInformation_gez.properties.lo gnu/java/locale/LocaleInformation_gez_ER.properties.lo gnu/java/locale/LocaleInformation_gez_ET.properties.lo gnu/java/locale/LocaleInformation_gl.properties.lo gnu/java/locale/LocaleInformation_gl_ES.properties.lo gnu/java/locale/LocaleInformation_gu.properties.lo gnu/java/locale/LocaleInformation_gu_IN.properties.lo gnu/java/locale/LocaleInformation_gv.properties.lo gnu/java/locale/LocaleInformation_gv_GB.properties.lo gnu/java/locale/LocaleInformation_ha.properties.lo gnu/java/locale/LocaleInformation_ha_Arab.properties.lo gnu/java/locale/LocaleInformation_haw.properties.lo gnu/java/locale/LocaleInformation_haw_US.properties.lo gnu/java/locale/LocaleInformation_he.properties.lo gnu/java/locale/LocaleInformation_he_IL.properties.lo gnu/java/locale/LocaleInformation_hi.properties.lo gnu/java/locale/LocaleInformation_hi_IN.properties.lo gnu/java/locale/LocaleInformation_hr.properties.lo gnu/java/locale/LocaleInformation_hu.properties.lo gnu/java/locale/LocaleInformation_hu_HU.properties.lo gnu/java/locale/LocaleInformation_hy.properties.lo gnu/java/locale/LocaleInformation_hy_AM.properties.lo gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.lo gnu/java/locale/LocaleInformation_ia.properties.lo gnu/java/locale/LocaleInformation_id.properties.lo gnu/java/locale/LocaleInformation_id_ID.properties.lo gnu/java/locale/LocaleInformation_ig.properties.lo gnu/java/locale/LocaleInformation_ii.properties.lo gnu/java/locale/LocaleInformation_is.properties.lo gnu/java/locale/LocaleInformation_is_IS.properties.lo gnu/java/locale/LocaleInformation_it.properties.lo gnu/java/locale/LocaleInformation_it_CH.properties.lo gnu/java/locale/LocaleInformation_it_IT.properties.lo gnu/java/locale/LocaleInformation_iu.properties.lo gnu/java/locale/LocaleInformation_ja.properties.lo gnu/java/locale/LocaleInformation_ja_JP.properties.lo gnu/java/locale/LocaleInformation_ka.properties.lo gnu/java/locale/LocaleInformation_kaj.properties.lo gnu/java/locale/LocaleInformation_kam.properties.lo gnu/java/locale/LocaleInformation_kcg.properties.lo gnu/java/locale/LocaleInformation_kfo.properties.lo gnu/java/locale/LocaleInformation_kk.properties.lo gnu/java/locale/LocaleInformation_kk_KZ.properties.lo gnu/java/locale/LocaleInformation_kl.properties.lo gnu/java/locale/LocaleInformation_kl_GL.properties.lo gnu/java/locale/LocaleInformation_km.properties.lo gnu/java/locale/LocaleInformation_km_KH.properties.lo gnu/java/locale/LocaleInformation_kn.properties.lo gnu/java/locale/LocaleInformation_kn_IN.properties.lo gnu/java/locale/LocaleInformation_ko.properties.lo gnu/java/locale/LocaleInformation_ko_KR.properties.lo gnu/java/locale/LocaleInformation_kok.properties.lo gnu/java/locale/LocaleInformation_kok_IN.properties.lo gnu/java/locale/LocaleInformation_kpe.properties.lo gnu/java/locale/LocaleInformation_ku.properties.lo gnu/java/locale/LocaleInformation_ku_Arab.properties.lo gnu/java/locale/LocaleInformation_ku_Latn.properties.lo gnu/java/locale/LocaleInformation_kw.properties.lo gnu/java/locale/LocaleInformation_kw_GB.properties.lo gnu/java/locale/LocaleInformation_ky.properties.lo gnu/java/locale/LocaleInformation_ln.properties.lo gnu/java/locale/LocaleInformation_lo.properties.lo gnu/java/locale/LocaleInformation_lo_LA.properties.lo gnu/java/locale/LocaleInformation_lt.properties.lo gnu/java/locale/LocaleInformation_lt_LT.properties.lo gnu/java/locale/LocaleInformation_lv.properties.lo gnu/java/locale/LocaleInformation_lv_LV.properties.lo gnu/java/locale/LocaleInformation_mk.properties.lo gnu/java/locale/LocaleInformation_ml.properties.lo gnu/java/locale/LocaleInformation_ml_IN.properties.lo gnu/java/locale/LocaleInformation_mn.properties.lo gnu/java/locale/LocaleInformation_mr.properties.lo gnu/java/locale/LocaleInformation_mr_IN.properties.lo gnu/java/locale/LocaleInformation_ms.properties.lo gnu/java/locale/LocaleInformation_ms_BN.properties.lo gnu/java/locale/LocaleInformation_ms_MY.properties.lo gnu/java/locale/LocaleInformation_mt.properties.lo gnu/java/locale/LocaleInformation_mt_MT.properties.lo gnu/java/locale/LocaleInformation_my.properties.lo gnu/java/locale/LocaleInformation_nb.properties.lo gnu/java/locale/LocaleInformation_nb_NO.properties.lo gnu/java/locale/LocaleInformation_ne.properties.lo gnu/java/locale/LocaleInformation_nl.properties.lo gnu/java/locale/LocaleInformation_nl_BE.properties.lo gnu/java/locale/LocaleInformation_nl_NL.properties.lo gnu/java/locale/LocaleInformation_nn.properties.lo gnu/java/locale/LocaleInformation_nn_NO.properties.lo gnu/java/locale/LocaleInformation_nr.properties.lo gnu/java/locale/LocaleInformation_nso.properties.lo gnu/java/locale/LocaleInformation_ny.properties.lo gnu/java/locale/LocaleInformation_om.properties.lo gnu/java/locale/LocaleInformation_om_ET.properties.lo gnu/java/locale/LocaleInformation_om_KE.properties.lo gnu/java/locale/LocaleInformation_or.properties.lo gnu/java/locale/LocaleInformation_or_IN.properties.lo gnu/java/locale/LocaleInformation_pa.properties.lo gnu/java/locale/LocaleInformation_pa_Arab.properties.lo gnu/java/locale/LocaleInformation_pa_IN.properties.lo gnu/java/locale/LocaleInformation_pl.properties.lo gnu/java/locale/LocaleInformation_pl_PL.properties.lo gnu/java/locale/LocaleInformation_ps.properties.lo gnu/java/locale/LocaleInformation_ps_AF.properties.lo gnu/java/locale/LocaleInformation_pt.properties.lo gnu/java/locale/LocaleInformation_pt_BR.properties.lo gnu/java/locale/LocaleInformation_pt_PT.properties.lo gnu/java/locale/LocaleInformation_ro.properties.lo gnu/java/locale/LocaleInformation_ro_RO.properties.lo gnu/java/locale/LocaleInformation_ru.properties.lo gnu/java/locale/LocaleInformation_ru_RU.properties.lo gnu/java/locale/LocaleInformation_ru_UA.properties.lo gnu/java/locale/LocaleInformation_rw.properties.lo gnu/java/locale/LocaleInformation_sa.properties.lo gnu/java/locale/LocaleInformation_sa_IN.properties.lo gnu/java/locale/LocaleInformation_se.properties.lo gnu/java/locale/LocaleInformation_se_FI.properties.lo gnu/java/locale/LocaleInformation_si.properties.lo gnu/java/locale/LocaleInformation_sid.properties.lo gnu/java/locale/LocaleInformation_sid_ET.properties.lo gnu/java/locale/LocaleInformation_sk.properties.lo gnu/java/locale/LocaleInformation_sk_SK.properties.lo gnu/java/locale/LocaleInformation_sl.properties.lo gnu/java/locale/LocaleInformation_sl_SI.properties.lo gnu/java/locale/LocaleInformation_so.properties.lo gnu/java/locale/LocaleInformation_so_DJ.properties.lo gnu/java/locale/LocaleInformation_so_ET.properties.lo gnu/java/locale/LocaleInformation_so_KE.properties.lo gnu/java/locale/LocaleInformation_so_SO.properties.lo gnu/java/locale/LocaleInformation_sq.properties.lo gnu/java/locale/LocaleInformation_sq_AL.properties.lo gnu/java/locale/LocaleInformation_sr.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.lo gnu/java/locale/LocaleInformation_ss.properties.lo gnu/java/locale/LocaleInformation_ssy.properties.lo gnu/java/locale/LocaleInformation_st.properties.lo gnu/java/locale/LocaleInformation_sv.properties.lo gnu/java/locale/LocaleInformation_sv_FI.properties.lo gnu/java/locale/LocaleInformation_sv_SE.properties.lo gnu/java/locale/LocaleInformation_sw.properties.lo gnu/java/locale/LocaleInformation_sw_KE.properties.lo gnu/java/locale/LocaleInformation_sw_TZ.properties.lo gnu/java/locale/LocaleInformation_syr.properties.lo gnu/java/locale/LocaleInformation_syr_SY.properties.lo gnu/java/locale/LocaleInformation_ta.properties.lo gnu/java/locale/LocaleInformation_ta_IN.properties.lo gnu/java/locale/LocaleInformation_te.properties.lo gnu/java/locale/LocaleInformation_te_IN.properties.lo gnu/java/locale/LocaleInformation_tg.properties.lo gnu/java/locale/LocaleInformation_th.properties.lo gnu/java/locale/LocaleInformation_th_TH.properties.lo gnu/java/locale/LocaleInformation_ti.properties.lo gnu/java/locale/LocaleInformation_ti_ER.properties.lo gnu/java/locale/LocaleInformation_ti_ET.properties.lo gnu/java/locale/LocaleInformation_tig.properties.lo gnu/java/locale/LocaleInformation_tig_ER.properties.lo gnu/java/locale/LocaleInformation_tn.properties.lo gnu/java/locale/LocaleInformation_to.properties.lo gnu/java/locale/LocaleInformation_tr.properties.lo gnu/java/locale/LocaleInformation_tr_TR.properties.lo gnu/java/locale/LocaleInformation_trv.properties.lo gnu/java/locale/LocaleInformation_ts.properties.lo gnu/java/locale/LocaleInformation_tt.properties.lo gnu/java/locale/LocaleInformation_tt_RU.properties.lo gnu/java/locale/LocaleInformation_ug.properties.lo gnu/java/locale/LocaleInformation_uk.properties.lo gnu/java/locale/LocaleInformation_uk_UA.properties.lo gnu/java/locale/LocaleInformation_ur.properties.lo gnu/java/locale/LocaleInformation_ur_IN.properties.lo gnu/java/locale/LocaleInformation_uz.properties.lo gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Latn.properties.lo gnu/java/locale/LocaleInformation_ve.properties.lo gnu/java/locale/LocaleInformation_vi.properties.lo gnu/java/locale/LocaleInformation_wal.properties.lo gnu/java/locale/LocaleInformation_wal_ET.properties.lo gnu/java/locale/LocaleInformation_wo.properties.lo gnu/java/locale/LocaleInformation_xh.properties.lo gnu/java/locale/LocaleInformation_yo.properties.lo gnu/java/locale/LocaleInformation_zh.properties.lo gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.lo gnu/java/locale/LocaleInformation_zu.properties.lo gnu/java/util/regex/MessagesBundle.properties.lo gnu/java/util/regex/MessagesBundle_fr.properties.lo gnu/java/util/regex/MessagesBundle_it.properties.lo gnu/javax/print/PrinterDialog.properties.lo gnu/javax/print/PrinterDialog_de.properties.lo gnu/javax/security/auth/callback/MessagesBundle.properties.lo java/text/metazones.properties.lo java/util/iso4217.properties.lo java/util/weeks.properties.lo javax/imageio/plugins/jpeg/MessagesBundle.properties.lo javax/swing/text/html/default.css.lo org/ietf/jgss/MessagesBundle.properties.lo META-INF/services/java.util.prefs.PreferencesFactory.lo META-INF/services/java.util.prefs.PreferencesFactory.in.lo META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.lo META-INF/services/javax.sound.midi.spi.MidiFileReader.lo META-INF/services/javax.sound.midi.spi.MidiFileWriter.lo META-INF/services/javax.sound.sampled.spi.AudioFileReader.lo gnu-CORBA.lo gnu-java-awt-dnd-peer-gtk.lo gnu-java-awt-peer-gtk.lo gnu-java-awt-peer-swing.lo gnu-java-beans.lo gnu-java-lang-management.lo gnu-java-math.lo gnu-java-util-prefs-gconf.lo gnu-javax-management.lo gnu-javax-rmi.lo gnu-javax-sound-midi.lo gnu-xml-aelfred2.lo gnu-xml-dom.lo gnu-xml-libxmlj.lo gnu-xml-pipeline.lo gnu-xml-stream.lo gnu-xml-transform.lo gnu-xml-util.lo gnu-xml-validation.lo gnu-xml-xpath.lo java-lang-management.lo javax-imageio.lo javax-rmi.lo javax-xml.lo org-omg-CORBA.lo org-omg-CORBA_2_3.lo org-omg-CosNaming.lo org-omg-Dynamic.lo org-omg-DynamicAny.lo org-omg-IOP.lo org-omg-Messaging.lo org-omg-PortableInterceptor.lo org-omg-PortableServer.lo org-omg-SendingContext.lo org-omg-stub.lo org-relaxng.lo org-w3c.lo org-xml.lo ../libffi/libffi_convenience.la ../zlib/libzgcj_convenience.la ../boehm-gc/libgcjgc_convenience.la
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
++/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L[...]/hurd/master.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd/master.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -rpath [...]/hurd/master.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
+ libtool: link: (cd ".libs" && rm -f "libgcj.so.12" && ln -s "libgcj.so.12.0.0" "libgcj.so.12")
+ libtool: link: (cd ".libs" && rm -f "libgcj.so" && ln -s "libgcj.so.12.0.0" "libgcj.so")
+ libtool: link: (cd .libs/libgcj.lax/libltdlc.a && ar x "[...]/hurd/master.build/[ARCH]/libjava/./libltdl/.libs/libltdlc.a")
+@@ -23464,12 +23034,12 @@
+ libtool: link: ln org/ietf/jgss/MessagesBundle.properties.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o || cp org/ietf/jgss/MessagesBundle.properties.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o
+ libtool: link: ln .libs/libgcj.lax/libffi_convenience.a/debug.o .libs/libgcj.lax/lt91-debug.o || cp .libs/libgcj.lax/libffi_convenience.a/debug.o .libs/libgcj.lax/lt91-debug.o
+ libtool: link: ln .libs/libgcj.lax/libgcjgc_convenience.a/misc.o .libs/libgcj.lax/lt92-misc.o || cp .libs/libgcj.lax/libgcjgc_convenience.a/misc.o .libs/libgcj.lax/lt92-misc.o
+-libtool: link: ar rc .libs/libgcj.a prims.o jni.o exception.o stacktrace.o link.o defineclass.o verify.o jvmti.o interpret.o gnu/classpath/jdwp/natVMFrame.o gnu/classpath/jdwp/natVMMethod.o gnu/classpath/jdwp/natVMVirtualMachine.o gnu/classpath/natConfiguration.o gnu/classpath/natSystemProperties.o gnu/classpath/natVMStackWalker.o gnu/gcj/natCore.o gnu/gcj/convert/JIS0208_to_Unicode.o gnu/gcj/convert/JIS0212_to_Unicode.o gnu/gcj/convert/Unicode_to_JIS.o gnu/gcj/convert/natIconv.o gnu/gcj/convert/natInput_EUCJIS.o gnu/gcj/convert/natInput_SJIS.o gnu/gcj/convert/natOutput_EUCJIS.o gnu/gcj/convert/natOutput_SJIS.o gnu/gcj/io/natSimpleSHSStream.o gnu/gcj/io/shs.o gnu/gcj/jvmti/natBreakpoint.o gnu/gcj/jvmti/natNormalBreakpoint.o gnu/gcj/runtime/natFinalizerThread.o gnu/gcj/runtime/natSharedLibLoader.o gnu/gcj/runtime/natSystemClassLoader.o gnu/gcj/runtime/natStringBuffer.o gnu/gcj/util/natDebug.o gnu/gcj/util/natGCInfo.o gnu/java/lang/natMainThread.o gnu/java/lang/management/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/natVMCompilationMXBeanImpl.o gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/natVMMemoryMXBeanImpl.o gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/natVMThreadMXBeanImpl.o gnu/java/net/natPlainDatagramSocketImpl.o gnu/java/net/natPlainSocketImpl.o gnu/java/net/protocol/core/natCoreInputStream.o gnu/java/nio/natVMPipe.o gnu/java/nio/natVMSelector.o gnu/java/nio/natNIOServerSocket.o gnu/java/nio/natVMChannel.o gnu/java/nio/channels/natFileChannelImpl.o gnu/java/security/jce/prng/natVMSecureRandom.o java/io/natFile.o java/io/natVMObjectInputStream.o java/io/natVMObjectStreamClass.o java/lang/natCharacter.o java/lang/natClass.o java/lang/natClassLoader.o java/lang/natConcreteProcess.o java/lang/natVMDouble.o java/lang/natVMFloat.o java/lang/natMath.o java/lang/natObject.o java/lang/natRuntime.o java/lang/natString.o java/lang/natAbstractStringBuffer.o java/lang/natSystem.o java/lang/natThread.o java/lang/natThreadLocal.o java/lang/natVMClassLoader.o java/lang/natVMProcess.o java/lang/natVMThrowable.o java/lang/ref/natReference.o java/lang/reflect/natArray.o java/lang/reflect/natConstructor.o java/lang/reflect/natField.o java/lang/reflect/natMethod.o java/lang/reflect/natVMProxy.o java/net/natVMInetAddress.o java/net/natVMNetworkInterface.o java/net/natVMURLConnection.o java/nio/channels/natVMChannels.o java/nio/natVMDirectByteBufferImpl.o java/security/natVMAccessController.o java/security/natVMAccessControlState.o java/text/natCollator.o java/util/natVMTimeZone.o java/util/concurrent/atomic/natAtomicLong.o java/util/logging/natLogger.o java/util/zip/natDeflater.o java/util/zip/natInflater.o sun/misc/natUnsafe.o boehm.o posix.o posix-threads.o java/lang/Object.o java/lang/Class.o java/process-Posix.o gnu/awt.o gnu/awt/j2d.o gnu/classpath.o gnu/classpath/debug.o gnu/classpath/toolkit.o gnu/gcj.o gnu/gcj/convert.o gnu/gcj/io.o gnu/gcj/runtime.o gnu/gcj/util.o .libs/libgcj.lax/lt1-awt.o gnu/java/awt/color.o gnu/java/awt/dnd.o gnu/java/awt/font.o gnu/java/awt/font/autofit.o gnu/java/awt/font/opentype.o gnu/java/awt/font/opentype/truetype.o gnu/java/awt/image.o gnu/java/awt/java2d.o gnu/java/awt/peer.o gnu/java/awt/peer/headless.o gnu/java/awt/print.o .libs/libgcj.lax/lt2-io.o gnu/java/lang.o gnu/java/lang/reflect.o gnu/java/locale.o gnu/java/net.o gnu/java/net/loader.o gnu/java/net/local.o gnu/java/net/protocol/core.o gnu/java/net/protocol/file.o gnu/java/net/protocol/ftp.o gnu/java/net/protocol/gcjlib.o gnu/java/net/protocol/http.o gnu/java/net/protocol/https.o gnu/java/net/protocol/jar.o gnu/java/nio.o gnu/java/nio/channels.o gnu/java/nio/charset.o gnu/java/rmi.o gnu/java/rmi/activation.o gnu/java/rmi/dgc.o gnu/java/rmi/registry.o gnu/java/rmi/server.o gnu/java/security.o gnu/java/security/action.o gnu/java/security/ber.o gnu/java/security/der.o gnu/java/security/hash.o .libs/libgcj.lax/lt3-hash.o gnu/java/security/jce/prng.o gnu/java/security/jce/sig.o gnu/java/security/key.o gnu/java/security/key/dss.o gnu/java/security/key/rsa.o gnu/java/security/pkcs.o .libs/libgcj.lax/lt4-prng.o gnu/java/security/provider.o .libs/libgcj.lax/lt5-sig.o .libs/libgcj.lax/lt6-dss.o .libs/libgcj.lax/lt7-rsa.o .libs/libgcj.lax/lt8-util.o gnu/java/security/x509.o gnu/java/security/x509/ext.o gnu/java/text.o .libs/libgcj.lax/lt9-util.o .libs/libgcj.lax/lt10-jar.o gnu/java/util/prefs.o gnu/java/util/regex.o gnu/javax/activation/viewers.o gnu/javax/crypto.o gnu/javax/crypto/assembly.o gnu/javax/crypto/cipher.o gnu/javax/crypto/jce.o .libs/libgcj.lax/lt11-cipher.o .libs/libgcj.lax/lt12-key.o gnu/javax/crypto/jce/keyring.o gnu/javax/crypto/jce/mac.o gnu/javax/crypto/jce/params.o .libs/libgcj.lax/lt13-prng.o .libs/libgcj.lax/lt14-sig.o gnu/javax/crypto/jce/spec.o .libs/libgcj.lax/lt15-key.o gnu/javax/crypto/key/dh.o gnu/javax/crypto/key/srp6.o .libs/libgcj.lax/lt16-keyring.o gnu/javax/crypto/kwa.o .libs/libgcj.lax/lt17-mac.o gnu/javax/crypto/mode.o gnu/javax/crypto/pad.o .libs/libgcj.lax/lt18-prng.o gnu/javax/crypto/sasl.o gnu/javax/crypto/sasl/anonymous.o gnu/javax/crypto/sasl/crammd5.o gnu/javax/crypto/sasl/plain.o gnu/javax/crypto/sasl/srp.o gnu/javax/imageio.o gnu/javax/imageio/bmp.o gnu/javax/imageio/gif.o gnu/javax/imageio/jpeg.o gnu/javax/imageio/png.o gnu/javax/naming/giop.o gnu/javax/naming/ictxImpl/trans.o gnu/javax/naming/jndi/url/corbaname.o .libs/libgcj.lax/lt19-rmi.o gnu/javax/net/ssl.o .libs/libgcj.lax/lt20-provider.o .libs/libgcj.lax/lt21-print.o gnu/javax/print/ipp.o gnu/javax/print/ipp/attribute.o gnu/javax/print/ipp/attribute/defaults.o gnu/javax/print/ipp/attribute/job.o gnu/javax/print/ipp/attribute/printer.o gnu/javax/print/ipp/attribute/supported.o gnu/javax/security/auth.o gnu/javax/security/auth/callback.o gnu/javax/security/auth/login.o gnu/javax/sound.o gnu/javax/sound/sampled/AU.o gnu/javax/sound/sampled/WAV.o gnu/javax/swing/plaf/gnu.o gnu/javax/swing/plaf/metal.o gnu/javax/swing/text/html.o gnu/javax/swing/text/html/css.o gnu/javax/swing/text/html/parser/GnuParserDelegator.o gnu/javax/swing/text/html/parser/HTML_401F.o gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/gnuDTD.o gnu/javax/swing/text/html/parser/htmlAttributeSet.o gnu/javax/swing/text/html/parser/htmlValidator.o gnu/javax/swing/text/html/parser/models.o gnu/javax/swing/text/html/parser/support.o gnu/javax/swing/text/html/parser/support/low.o gnu/javax/swing/tree.o java/applet.o .libs/libgcj.lax/lt22-awt.o .libs/libgcj.lax/lt23-color.o java/awt/datatransfer.o .libs/libgcj.lax/lt24-dnd.o .libs/libgcj.lax/lt25-peer.o java/awt/event.o .libs/libgcj.lax/lt26-font.o java/awt/geom.o java/awt/im.o java/awt/im/spi.o .libs/libgcj.lax/lt27-image.o java/awt/image/renderable.o .libs/libgcj.lax/lt28-peer.o .libs/libgcj.lax/lt29-print.o java/beans.o java/beans/beancontext.o .libs/libgcj.lax/lt30-io.o .libs/libgcj.lax/lt31-lang.o java/lang/annotation.o java/lang/instrument.o java/lang/ref.o .libs/libgcj.lax/lt32-reflect.o java/math.o .libs/libgcj.lax/lt33-net.o .libs/libgcj.lax/lt34-nio.o .libs/libgcj.lax/lt35-channels.o .libs/libgcj.lax/lt36-spi.o .libs/libgcj.lax/lt37-charset.o .libs/libgcj.lax/lt38-spi.o .libs/libgcj.lax/lt39-rmi.o .libs/libgcj.lax/lt40-activation.o .libs/libgcj.lax/lt41-dgc.o .libs/libgcj.lax/lt42-registry.o .libs/libgcj.lax/lt43-server.o .libs/libgcj.lax/lt44-security.o java/security/acl.o java/security/cert.o java/security/interfaces.o .libs/libgcj.lax/lt45-spec.o java/sql.o .libs/libgcj.lax/lt46-text.o .libs/libgcj.lax/lt47-spi.o .libs/libgcj.lax/lt48-util.o java/util/concurrent.o java/util/concurrent/atomic.o java/util/concurrent/locks.o .libs/libgcj.lax/lt49-jar.o java/util/logging.o .libs/libgcj.lax/lt50-prefs.o .libs/libgcj.lax/lt51-regex.o .libs/libgcj.lax/lt52-spi.o java/util/zip.o javax/accessibility.o .libs/libgcj.lax/lt53-activation.o javax/activity.o .libs/libgcj.lax/lt54-crypto.o .libs/libgcj.lax/lt55-interfaces.o .libs/libgcj.lax/lt56-spec.o javax/management.o javax/management/loading.o javax/management/openmbean.o javax/management/remote.o .libs/libgcj.lax/lt57-rmi.o javax/naming.o javax/naming/directory.o .libs/libgcj.lax/lt58-event.o javax/naming/ldap.o .libs/libgcj.lax/lt59-spi.o .libs/libgcj.lax/lt60-net.o .libs/libgcj.lax/lt61-ssl.o .libs/libgcj.lax/lt62-print.o .libs/libgcj.lax/lt63-attribute.o javax/print/attribute/standard.o .libs/libgcj.lax/lt64-event.o .libs/libgcj.lax/lt65-auth.o .libs/libgcj.lax/lt66-callback.o javax/security/auth/kerberos.o .libs/libgcj.lax/lt67-login.o .libs/libgcj.lax/lt68-spi.o javax/security/auth/x500.o .libs/libgcj.lax/lt69-cert.o .libs/libgcj.lax/lt70-sasl.o javax/sound/midi.o .libs/libgcj.lax/lt71-spi.o javax/sound/sampled.o .libs/libgcj.lax/lt72-spi.o .libs/libgcj.lax/lt73-sql.o javax/swing.o javax/swing/border.o javax/swing/colorchooser.o .libs/libgcj.lax/lt74-event.o javax/swing/filechooser.o javax/swing/plaf.o javax/swing/plaf/basic.o .libs/libgcj.lax/lt75-metal.o javax/swing/plaf/multi.o javax/swing/plaf/synth.o javax/swing/table.o .libs/libgcj.lax/lt76-text.o .libs/libgcj.lax/lt77-html.o javax/swing/text/html/parser.o javax/swing/text/rtf.o .libs/libgcj.lax/lt78-tree.o javax/swing/undo.o javax/tools.o javax/transaction.o javax/transaction/xa.o org/ietf/jgss.o .libs/libgcj.lax/lt79-awt.o sun/misc.o .libs/libgcj.lax/lt80-reflect.o .libs/libgcj.lax/lt81-annotation.o .libs/libgcj.lax/lt82-misc.o gnu/classpath/jdwp.o .libs/libgcj.lax/lt83-event.o gnu/classpath/jdwp/event/filters.o .libs/libgcj.lax/lt84-exception.o gnu/classpath/jdwp/id.o gnu/classpath/jdwp/processor.o gnu/classpath/jdwp/transport.o .libs/libgcj.lax/lt85-util.o gnu/classpath/jdwp/value.o .libs/libgcj.lax/lt86-jvmti.o gnu/java/awt/font/fonts.properties.o gnu/java/awt/peer/gtk/font.properties.o .libs/libgcj.lax/lt87-fonts.properties.o gnu/java/awt/peer/x/xfonts.properties.o gnu/java/locale/LocaleInformation.properties.o gnu/java/locale/LocaleInformation_aa.properties.o gnu/java/locale/LocaleInformation_aa_DJ.properties.o gnu/java/locale/LocaleInformation_aa_ER.properties.o gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/LocaleInformation_aa_ET.properties.o gnu/java/locale/LocaleInformation_af.properties.o gnu/java/locale/LocaleInformation_af_NA.properties.o gnu/java/locale/LocaleInformation_af_ZA.properties.o gnu/java/locale/LocaleInformation_ak.properties.o gnu/java/locale/LocaleInformation_am.properties.o gnu/java/locale/LocaleInformation_am_ET.properties.o gnu/java/locale/LocaleInformation_ar.properties.o gnu/java/locale/LocaleInformation_ar_DZ.properties.o gnu/java/locale/LocaleInformation_ar_JO.properties.o gnu/java/locale/LocaleInformation_ar_LB.properties.o gnu/java/locale/LocaleInformation_ar_MA.properties.o gnu/java/locale/LocaleInformation_ar_QA.properties.o gnu/java/locale/LocaleInformation_ar_SA.properties.o gnu/java/locale/LocaleInformation_ar_SY.properties.o gnu/java/locale/LocaleInformation_ar_TN.properties.o gnu/java/locale/LocaleInformation_ar_YE.properties.o gnu/java/locale/LocaleInformation_as.properties.o gnu/java/locale/LocaleInformation_as_IN.properties.o gnu/java/locale/LocaleInformation_az.properties.o gnu/java/locale/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/LocaleInformation_be.properties.o gnu/java/locale/LocaleInformation_be_BY.properties.o gnu/java/locale/LocaleInformation_bg.properties.o gnu/java/locale/LocaleInformation_bg_BG.properties.o gnu/java/locale/LocaleInformation_bn.properties.o gnu/java/locale/LocaleInformation_bn_IN.properties.o gnu/java/locale/LocaleInformation_bo.properties.o gnu/java/locale/LocaleInformation_bs.properties.o gnu/java/locale/LocaleInformation_byn.properties.o gnu/java/locale/LocaleInformation_byn_ER.properties.o gnu/java/locale/LocaleInformation_ca.properties.o gnu/java/locale/LocaleInformation_ca_ES.properties.o gnu/java/locale/LocaleInformation_cch.properties.o gnu/java/locale/LocaleInformation_cop.properties.o gnu/java/locale/LocaleInformation_cs.properties.o gnu/java/locale/LocaleInformation_cs_CZ.properties.o gnu/java/locale/LocaleInformation_cy.properties.o gnu/java/locale/LocaleInformation_cy_GB.properties.o gnu/java/locale/LocaleInformation_da.properties.o gnu/java/locale/LocaleInformation_da_DK.properties.o gnu/java/locale/LocaleInformation_de.properties.o gnu/java/locale/LocaleInformation_de_AT.properties.o gnu/java/locale/LocaleInformation_de_BE.properties.o gnu/java/locale/LocaleInformation_de_CH.properties.o gnu/java/locale/LocaleInformation_de_DE.properties.o gnu/java/locale/LocaleInformation_de_LI.properties.o gnu/java/locale/LocaleInformation_de_LU.properties.o gnu/java/locale/LocaleInformation_dv.properties.o gnu/java/locale/LocaleInformation_dv_MV.properties.o gnu/java/locale/LocaleInformation_dz.properties.o gnu/java/locale/LocaleInformation_dz_BT.properties.o gnu/java/locale/LocaleInformation_ee.properties.o gnu/java/locale/LocaleInformation_el.properties.o gnu/java/locale/LocaleInformation_el_CY.properties.o gnu/java/locale/LocaleInformation_el_GR.properties.o gnu/java/locale/LocaleInformation_en.properties.o gnu/java/locale/LocaleInformation_en_AS.properties.o gnu/java/locale/LocaleInformation_en_AU.properties.o gnu/java/locale/LocaleInformation_en_BE.properties.o gnu/java/locale/LocaleInformation_en_BW.properties.o gnu/java/locale/LocaleInformation_en_BZ.properties.o gnu/java/locale/LocaleInformation_en_CA.properties.o gnu/java/locale/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/LocaleInformation_en_GB.properties.o gnu/java/locale/LocaleInformation_en_GU.properties.o gnu/java/locale/LocaleInformation_en_HK.properties.o gnu/java/locale/LocaleInformation_en_IE.properties.o gnu/java/locale/LocaleInformation_en_IN.properties.o gnu/java/locale/LocaleInformation_en_JM.properties.o gnu/java/locale/LocaleInformation_en_MH.properties.o gnu/java/locale/LocaleInformation_en_MP.properties.o gnu/java/locale/LocaleInformation_en_MT.properties.o gnu/java/locale/LocaleInformation_en_NA.properties.o gnu/java/locale/LocaleInformation_en_NZ.properties.o gnu/java/locale/LocaleInformation_en_PH.properties.o gnu/java/locale/LocaleInformation_en_PK.properties.o gnu/java/locale/LocaleInformation_en_SG.properties.o gnu/java/locale/LocaleInformation_en_Shaw.properties.o gnu/java/locale/LocaleInformation_en_TT.properties.o gnu/java/locale/LocaleInformation_en_UM.properties.o gnu/java/locale/LocaleInformation_en_US.properties.o gnu/java/locale/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/LocaleInformation_en_VI.properties.o gnu/java/locale/LocaleInformation_en_ZA.properties.o gnu/java/locale/LocaleInformation_en_ZW.properties.o gnu/java/locale/LocaleInformation_eo.properties.o gnu/java/locale/LocaleInformation_es.properties.o gnu/java/locale/LocaleInformation_es_AR.properties.o gnu/java/locale/LocaleInformation_es_BO.properties.o gnu/java/locale/LocaleInformation_es_CL.properties.o gnu/java/locale/LocaleInformation_es_CO.properties.o gnu/java/locale/LocaleInformation_es_CR.properties.o gnu/java/locale/LocaleInformation_es_DO.properties.o gnu/java/locale/LocaleInformation_es_EC.properties.o gnu/java/locale/LocaleInformation_es_ES.properties.o gnu/java/locale/LocaleInformation_es_GT.properties.o gnu/java/locale/LocaleInformation_es_HN.properties.o gnu/java/locale/LocaleInformation_es_MX.properties.o gnu/java/locale/LocaleInformation_es_NI.properties.o gnu/java/locale/LocaleInformation_es_PA.properties.o gnu/java/locale/LocaleInformation_es_PE.properties.o gnu/java/locale/LocaleInformation_es_PR.properties.o gnu/java/locale/LocaleInformation_es_PY.properties.o gnu/java/locale/LocaleInformation_es_SV.properties.o gnu/java/locale/LocaleInformation_es_US.properties.o gnu/java/locale/LocaleInformation_es_UY.properties.o gnu/java/locale/LocaleInformation_es_VE.properties.o gnu/java/locale/LocaleInformation_et.properties.o gnu/java/locale/LocaleInformation_et_EE.properties.o gnu/java/locale/LocaleInformation_eu.properties.o gnu/java/locale/LocaleInformation_eu_ES.properties.o gnu/java/locale/LocaleInformation_fa.properties.o gnu/java/locale/LocaleInformation_fa_AF.properties.o gnu/java/locale/LocaleInformation_fa_IR.properties.o gnu/java/locale/LocaleInformation_fi.properties.o gnu/java/locale/LocaleInformation_fi_FI.properties.o gnu/java/locale/LocaleInformation_fil.properties.o gnu/java/locale/LocaleInformation_fo.properties.o gnu/java/locale/LocaleInformation_fo_FO.properties.o gnu/java/locale/LocaleInformation_fr.properties.o gnu/java/locale/LocaleInformation_fr_BE.properties.o gnu/java/locale/LocaleInformation_fr_CA.properties.o gnu/java/locale/LocaleInformation_fr_CH.properties.o gnu/java/locale/LocaleInformation_fr_LU.properties.o gnu/java/locale/LocaleInformation_fur.properties.o gnu/java/locale/LocaleInformation_ga.properties.o gnu/java/locale/LocaleInformation_ga_IE.properties.o gnu/java/locale/LocaleInformation_gaa.properties.o gnu/java/locale/LocaleInformation_gez.properties.o gnu/java/locale/LocaleInformation_gez_ER.properties.o gnu/java/locale/LocaleInformation_gez_ET.properties.o gnu/java/locale/LocaleInformation_gl.properties.o gnu/java/locale/LocaleInformation_gl_ES.properties.o gnu/java/locale/LocaleInformation_gu.properties.o gnu/java/locale/LocaleInformation_gu_IN.properties.o gnu/java/locale/LocaleInformation_gv.properties.o gnu/java/locale/LocaleInformation_gv_GB.properties.o gnu/java/locale/LocaleInformation_ha.properties.o gnu/java/locale/LocaleInformation_ha_Arab.properties.o gnu/java/locale/LocaleInformation_haw.properties.o gnu/java/locale/LocaleInformation_haw_US.properties.o gnu/java/locale/LocaleInformation_he.properties.o gnu/java/locale/LocaleInformation_he_IL.properties.o gnu/java/locale/LocaleInformation_hi.properties.o gnu/java/locale/LocaleInformation_hi_IN.properties.o gnu/java/locale/LocaleInformation_hr.properties.o gnu/java/locale/LocaleInformation_hu.properties.o gnu/java/locale/LocaleInformation_hu_HU.properties.o gnu/java/locale/LocaleInformation_hy.properties.o gnu/java/locale/LocaleInformation_hy_AM.properties.o gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/LocaleInformation_ia.properties.o gnu/java/locale/LocaleInformation_id.properties.o gnu/java/locale/LocaleInformation_id_ID.properties.o gnu/java/locale/LocaleInformation_ig.properties.o gnu/java/locale/LocaleInformation_ii.properties.o gnu/java/locale/LocaleInformation_is.properties.o gnu/java/locale/LocaleInformation_is_IS.properties.o gnu/java/locale/LocaleInformation_it.properties.o gnu/java/locale/LocaleInformation_it_CH.properties.o gnu/java/locale/LocaleInformation_it_IT.properties.o gnu/java/locale/LocaleInformation_iu.properties.o gnu/java/locale/LocaleInformation_ja.properties.o gnu/java/locale/LocaleInformation_ja_JP.properties.o gnu/java/locale/LocaleInformation_ka.properties.o gnu/java/locale/LocaleInformation_kaj.properties.o gnu/java/locale/LocaleInformation_kam.properties.o gnu/java/locale/LocaleInformation_kcg.properties.o gnu/java/locale/LocaleInformation_kfo.properties.o gnu/java/locale/LocaleInformation_kk.properties.o gnu/java/locale/LocaleInformation_kk_KZ.properties.o gnu/java/locale/LocaleInformation_kl.properties.o gnu/java/locale/LocaleInformation_kl_GL.properties.o gnu/java/locale/LocaleInformation_km.properties.o gnu/java/locale/LocaleInformation_km_KH.properties.o gnu/java/locale/LocaleInformation_kn.properties.o gnu/java/locale/LocaleInformation_kn_IN.properties.o gnu/java/locale/LocaleInformation_ko.properties.o gnu/java/locale/LocaleInformation_ko_KR.properties.o gnu/java/locale/LocaleInformation_kok.properties.o gnu/java/locale/LocaleInformation_kok_IN.properties.o gnu/java/locale/LocaleInformation_kpe.properties.o gnu/java/locale/LocaleInformation_ku.properties.o gnu/java/locale/LocaleInformation_ku_Arab.properties.o gnu/java/locale/LocaleInformation_ku_Latn.properties.o gnu/java/locale/LocaleInformation_kw.properties.o gnu/java/locale/LocaleInformation_kw_GB.properties.o gnu/java/locale/LocaleInformation_ky.properties.o gnu/java/locale/LocaleInformation_ln.properties.o gnu/java/locale/LocaleInformation_lo.properties.o gnu/java/locale/LocaleInformation_lo_LA.properties.o gnu/java/locale/LocaleInformation_lt.properties.o gnu/java/locale/LocaleInformation_lt_LT.properties.o gnu/java/locale/LocaleInformation_lv.properties.o gnu/java/locale/LocaleInformation_lv_LV.properties.o gnu/java/locale/LocaleInformation_mk.properties.o gnu/java/locale/LocaleInformation_ml.properties.o gnu/java/locale/LocaleInformation_ml_IN.properties.o gnu/java/locale/LocaleInformation_mn.properties.o gnu/java/locale/LocaleInformation_mr.properties.o gnu/java/locale/LocaleInformation_mr_IN.properties.o gnu/java/locale/LocaleInformation_ms.properties.o gnu/java/locale/LocaleInformation_ms_BN.properties.o gnu/java/locale/LocaleInformation_ms_MY.properties.o gnu/java/locale/LocaleInformation_mt.properties.o gnu/java/locale/LocaleInformation_mt_MT.properties.o gnu/java/locale/LocaleInformation_my.properties.o gnu/java/locale/LocaleInformation_nb.properties.o gnu/java/locale/LocaleInformation_nb_NO.properties.o gnu/java/locale/LocaleInformation_ne.properties.o gnu/java/locale/LocaleInformation_nl.properties.o gnu/java/locale/LocaleInformation_nl_BE.properties.o gnu/java/locale/LocaleInformation_nl_NL.properties.o gnu/java/locale/LocaleInformation_nn.properties.o gnu/java/locale/LocaleInformation_nn_NO.properties.o gnu/java/locale/LocaleInformation_nr.properties.o gnu/java/locale/LocaleInformation_nso.properties.o gnu/java/locale/LocaleInformation_ny.properties.o gnu/java/locale/LocaleInformation_om.properties.o gnu/java/locale/LocaleInformation_om_ET.properties.o gnu/java/locale/LocaleInformation_om_KE.properties.o gnu/java/locale/LocaleInformation_or.properties.o gnu/java/locale/LocaleInformation_or_IN.properties.o gnu/java/locale/LocaleInformation_pa.properties.o gnu/java/locale/LocaleInformation_pa_Arab.properties.o gnu/java/locale/LocaleInformation_pa_IN.properties.o gnu/java/locale/LocaleInformation_pl.properties.o gnu/java/locale/LocaleInformation_pl_PL.properties.o gnu/java/locale/LocaleInformation_ps.properties.o gnu/java/locale/LocaleInformation_ps_AF.properties.o gnu/java/locale/LocaleInformation_pt.properties.o gnu/java/locale/LocaleInformation_pt_BR.properties.o gnu/java/locale/LocaleInformation_pt_PT.properties.o gnu/java/locale/LocaleInformation_ro.properties.o gnu/java/locale/LocaleInformation_ro_RO.properties.o gnu/java/locale/LocaleInformation_ru.properties.o gnu/java/locale/LocaleInformation_ru_RU.properties.o gnu/java/locale/LocaleInformation_ru_UA.properties.o gnu/java/locale/LocaleInformation_rw.properties.o gnu/java/locale/LocaleInformation_sa.properties.o gnu/java/locale/LocaleInformation_sa_IN.properties.o gnu/java/locale/LocaleInformation_se.properties.o gnu/java/locale/LocaleInformation_se_FI.properties.o gnu/java/locale/LocaleInformation_si.properties.o gnu/java/locale/LocaleInformation_sid.properties.o gnu/java/locale/LocaleInformation_sid_ET.properties.o gnu/java/locale/LocaleInformation_sk.properties.o gnu/java/locale/LocaleInformation_sk_SK.properties.o gnu/java/locale/LocaleInformation_sl.properties.o gnu/java/locale/LocaleInformation_sl_SI.properties.o gnu/java/locale/LocaleInformation_so.properties.o gnu/java/locale/LocaleInformation_so_DJ.properties.o gnu/java/locale/LocaleInformation_so_ET.properties.o gnu/java/locale/LocaleInformation_so_KE.properties.o gnu/java/locale/LocaleInformation_so_SO.properties.o gnu/java/locale/LocaleInformation_sq.properties.o gnu/java/locale/LocaleInformation_sq_AL.properties.o gnu/java/locale/LocaleInformation_sr.properties.o gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_Latn.properties.o gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/LocaleInformation_ss.properties.o gnu/java/locale/LocaleInformation_ssy.properties.o gnu/java/locale/LocaleInformation_st.properties.o gnu/java/locale/LocaleInformation_sv.properties.o gnu/java/locale/LocaleInformation_sv_FI.properties.o gnu/java/locale/LocaleInformation_sv_SE.properties.o gnu/java/locale/LocaleInformation_sw.properties.o gnu/java/locale/LocaleInformation_sw_KE.properties.o gnu/java/locale/LocaleInformation_sw_TZ.properties.o gnu/java/locale/LocaleInformation_syr.properties.o gnu/java/locale/LocaleInformation_syr_SY.properties.o gnu/java/locale/LocaleInformation_ta.properties.o gnu/java/locale/LocaleInformation_ta_IN.properties.o gnu/java/locale/LocaleInformation_te.properties.o gnu/java/locale/LocaleInformation_te_IN.properties.o gnu/java/locale/LocaleInformation_tg.properties.o gnu/java/locale/LocaleInformation_th.properties.o gnu/java/locale/LocaleInformation_th_TH.properties.o gnu/java/locale/LocaleInformation_ti.properties.o gnu/java/locale/LocaleInformation_ti_ER.properties.o gnu/java/locale/LocaleInformation_ti_ET.properties.o gnu/java/locale/LocaleInformation_tig.properties.o gnu/java/locale/LocaleInformation_tig_ER.properties.o gnu/java/locale/LocaleInformation_tn.properties.o gnu/java/locale/LocaleInformation_to.properties.o gnu/java/locale/LocaleInformation_tr.properties.o gnu/java/locale/LocaleInformation_tr_TR.properties.o gnu/java/locale/LocaleInformation_trv.properties.o gnu/java/locale/LocaleInformation_ts.properties.o gnu/java/locale/LocaleInformation_tt.properties.o gnu/java/locale/LocaleInformation_tt_RU.properties.o gnu/java/locale/LocaleInformation_ug.properties.o gnu/java/locale/LocaleInformation_uk.properties.o gnu/java/locale/LocaleInformation_uk_UA.properties.o gnu/java/locale/LocaleInformation_ur.properties.o gnu/java/locale/LocaleInformation_ur_IN.properties.o gnu/java/locale/LocaleInformation_uz.properties.o gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Latn.properties.o gnu/java/locale/LocaleInformation_ve.properties.o gnu/java/locale/LocaleInformation_vi.properties.o gnu/java/locale/LocaleInformation_wal.properties.o gnu/java/locale/LocaleInformation_wal_ET.properties.o gnu/java/locale/LocaleInformation_wo.properties.o gnu/java/locale/LocaleInformation_xh.properties.o gnu/java/locale/LocaleInformation_yo.properties.o gnu/java/locale/LocaleInformation_zh.properties.o gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/LocaleInformation_zh_Hant.properties.o gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/LocaleInformation_zu.properties.o gnu/java/util/regex/MessagesBundle.properties.o gnu/java/util/regex/MessagesBundle_fr.properties.o gnu/java/util/regex/MessagesBundle_it.properties.o gnu/javax/print/PrinterDialog.properties.o gnu/javax/print/PrinterDialog_de.properties.o .libs/libgcj.lax/lt88-MessagesBundle.properties.o java/text/metazones.properties.o java/util/iso4217.properties.o java/util/weeks.properties.o .libs/libgcj.lax/lt89-MessagesBundle.properties.o javax/swing/text/html/default.css.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o META-INF/services/java.util.prefs.PreferencesFactory.o META-INF/services/java.util.prefs.PreferencesFactory.in.o META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/javax.sound.midi.spi.MidiFileReader.o META-INF/services/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/javax.sound.sampled.spi.AudioFileReader.o gnu-CORBA.o gnu-java-awt-dnd-peer-gtk.o gnu-java-awt-peer-gtk.o gnu-java-awt-peer-swing.o gnu-java-beans.o gnu-java-lang-management.o gnu-java-math.o gnu-java-util-prefs-gconf.o gnu-javax-management.o gnu-javax-rmi.o gnu-javax-sound-midi.o gnu-xml-aelfred2.o gnu-xml-dom.o gnu-xml-libxmlj.o gnu-xml-pipeline.o gnu-xml-stream.o gnu-xml-transform.o gnu-xml-util.o gnu-xml-validation.o gnu-xml-xpath.o java-lang-management.o javax-imageio.o javax-rmi.o javax-xml.o org-omg-CORBA.o org-omg-CORBA_2_3.o org-omg-CosNaming.o org-omg-Dynamic.o org-omg-DynamicAny.o org-omg-IOP.o org-omg-Messaging.o org-omg-PortableInterceptor.o org-omg-PortableServer.o org-omg-SendingContext.o org-omg-stub.o org-relaxng.o org-w3c.o org-xml.o .libs/libgcj.lax/libltdlc.a/ltdl.o .libs/libgcj.lax/libfdlibm.a/w_remainder.o .libs/libgcj.lax/libfdlibm.a/s_fabs.o .libs/libgcj.lax/libfdlibm.a/w_acos.o .libs/libgcj.lax/libfdlibm.a/sf_fabs.o .libs/libgcj.lax/libfdlibm.a/w_atan2.o .libs/libgcj.lax/libfdlibm.a/e_fmod.o .libs/libgcj.lax/libfdlibm.a/w_log.o .libs/libgcj.lax/libfdlibm.a/e_acos.o .libs/libgcj.lax/libfdlibm.a/e_sqrt.o .libs/libgcj.lax/libfdlibm.a/w_asin.o .libs/libgcj.lax/libfdlibm.a/w_log10.o .libs/libgcj.lax/libfdlibm.a/s_sin.o .libs/libgcj.lax/libfdlibm.a/k_cos.o .libs/libgcj.lax/libfdlibm.a/k_sin.o .libs/libgcj.lax/libfdlibm.a/s_rint.o .libs/libgcj.lax/libfdlibm.a/w_hypot.o .libs/libgcj.lax/libfdlibm.a/k_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/w_sqrt.o .libs/libgcj.lax/libfdlibm.a/s_tan.o .libs/libgcj.lax/libfdlibm.a/s_copysign.o .libs/libgcj.lax/libfdlibm.a/s_finite.o .libs/libgcj.lax/libfdlibm.a/e_hypot.o .libs/libgcj.lax/libfdlibm.a/w_exp.o .libs/libgcj.lax/libfdlibm.a/e_exp.o .libs/libgcj.lax/libfdlibm.a/mprec.o .libs/libgcj.lax/libfdlibm.a/s_log1p.o .libs/libgcj.lax/libfdlibm.a/w_pow.o .libs/libgcj.lax/libfdlibm.a/w_cosh.o .libs/libgcj.lax/libfdlibm.a/w_fmod.o .libs/libgcj.lax/libfdlibm.a/k_tan.o .libs/libgcj.lax/libfdlibm.a/s_expm1.o .libs/libgcj.lax/libfdlibm.a/s_floor.o .libs/libgcj.lax/libfdlibm.a/s_cbrt.o .libs/libgcj.lax/libfdlibm.a/s_ceil.o .libs/libgcj.lax/libfdlibm.a/e_asin.o .libs/libgcj.lax/libfdlibm.a/strtod.o .libs/libgcj.lax/libfdlibm.a/w_sinh.o .libs/libgcj.lax/libfdlibm.a/e_atan2.o .libs/libgcj.lax/libfdlibm.a/s_scalbn.o .libs/libgcj.lax/libfdlibm.a/dtoa.o .libs/libgcj.lax/libfdlibm.a/s_cos.o .libs/libgcj.lax/libfdlibm.a/e_scalb.o .libs/libgcj.lax/libfdlibm.a/e_log.o .libs/libgcj.lax/libfdlibm.a/e_log10.o .libs/libgcj.lax/libfdlibm.a/e_pow.o .libs/libgcj.lax/libfdlibm.a/s_atan.o .libs/libgcj.lax/libfdlibm.a/e_cosh.o .libs/libgcj.lax/libfdlibm.a/s_tanh.o .libs/libgcj.lax/libfdlibm.a/e_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/e_remainder.o .libs/libgcj.lax/libfdlibm.a/sf_rint.o .libs/libgcj.lax/libfdlibm.a/e_sinh.o .libs/libgcj.lax/libffi_convenience.a/ffi.o .libs/libgcj.lax/libffi_convenience.a/sysv.o .libs/libgcj.lax/libffi_convenience.a/raw_api.o .libs/libgcj.lax/lt91-debug.o .libs/libgcj.lax/libffi_convenience.a/types.o .libs/libgcj.lax/libffi_convenience.a/closures.o .libs/libgcj.lax/libffi_convenience.a/prep_cif.o .libs/libgcj.lax/libffi_convenience.a/java_raw_api.o .libs/libgcj.lax/libzgcj_convenience.a/adler32.o .libs/libgcj.lax/libzgcj_convenience.a/gzio.o .libs/libgcj.lax/libzgcj_convenience.a/inftrees.o .libs/libgcj.lax/libzgcj_convenience.a/uncompr.o .libs/libgcj.lax/libzgcj_convenience.a/crc32.o .libs/libgcj.lax/libzgcj_convenience.a/compress.o .libs/libgcj.lax/libzgcj_convenience.a/inffast.o .libs/libgcj.lax/libzgcj_convenience.a/zutil.o .libs/libgcj.lax/libzgcj_convenience.a/inflate.o .libs/libgcj.lax/libzgcj_convenience.a/deflate.o .libs/libgcj.lax/libzgcj_convenience.a/trees.o .libs/libgcj.lax/libzgcj_convenience.a/infback.o .libs/libgcj.lax/libgcjgc_convenience.a/malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/mallocx.o .libs/libgcj.lax/libgcjgc_convenience.a/os_dep.o .libs/libgcj.lax/libgcjgc_convenience.a/typd_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/darwin_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/mark_rts.o .libs/libgcj.lax/libgcjgc_convenience.a/ptr_chck.o .libs/libgcj.lax/libgcjgc_convenience.a/backgraph.o .libs/libgcj.lax/libgcjgc_convenience.a/gc_dlopen.o .libs/libgcj.lax/libgcjgc_convenience.a/pcr_interface.o .libs/libgcj.lax/libgcjgc_convenience.a/reclaim.o .libs/libgcj.lax/libgcjgc_convenience.a/win32_threads.o .libs/libgcj.lax/libgcjgc_convenience.a/allchblk.o .libs/libgcj.lax/libgcjgc_convenience.a/gcj_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/finalize.o .libs/libgcj.lax/lt92-misc.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/blacklst.o .libs/libgcj.lax/libgcjgc_convenience.a/obj_map.o .libs/libgcj.lax/libgcjgc_convenience.a/dbg_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/new_hblk.o .libs/libgcj.lax/libgcjgc_convenience.a/alloc.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_support.o .libs/libgcj.lax/libgcjgc_convenience.a/real_malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/mach_dep.o .libs/libgcj.lax/libgcjgc_convenience.a/headers.o .libs/libgcj.lax/libgcjgc_convenience.a/dyn_load.o .libs/libgcj.lax/libgcjgc_convenience.a/specific.o .libs/libgcj.lax/libgcjgc_convenience.a/checksums.o .libs/libgcj.lax/libgcjgc_convenience.a/stubborn.o .libs/libgcj.lax/libgcjgc_convenience.a/mark.o
++libtool: link: ar rc .libs/libgcj.a prims.o jni.o exception.o stacktrace.o link.o defineclass.o verify.o jvmti.o interpret.o gnu/classpath/jdwp/natVMFrame.o gnu/classpath/jdwp/natVMMethod.o gnu/classpath/jdwp/natVMVirtualMachine.o gnu/classpath/natConfiguration.o gnu/classpath/natSystemProperties.o gnu/classpath/natVMStackWalker.o gnu/gcj/natCore.o gnu/gcj/convert/JIS0208_to_Unicode.o gnu/gcj/convert/JIS0212_to_Unicode.o gnu/gcj/convert/Unicode_to_JIS.o gnu/gcj/convert/natIconv.o gnu/gcj/convert/natInput_EUCJIS.o gnu/gcj/convert/natInput_SJIS.o gnu/gcj/convert/natOutput_EUCJIS.o gnu/gcj/convert/natOutput_SJIS.o gnu/gcj/io/natSimpleSHSStream.o gnu/gcj/io/shs.o gnu/gcj/jvmti/natBreakpoint.o gnu/gcj/jvmti/natNormalBreakpoint.o gnu/gcj/runtime/natFinalizerThread.o gnu/gcj/runtime/natSharedLibLoader.o gnu/gcj/runtime/natSystemClassLoader.o gnu/gcj/runtime/natStringBuffer.o gnu/gcj/util/natDebug.o gnu/gcj/util/natGCInfo.o gnu/java/lang/natMainThread.o gnu/java/lang/management/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/natVMCompilationMXBeanImpl.o gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/natVMMemoryMXBeanImpl.o gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/natVMThreadMXBeanImpl.o gnu/java/net/natPlainDatagramSocketImpl.o gnu/java/net/natPlainSocketImpl.o gnu/java/net/protocol/core/natCoreInputStream.o gnu/java/nio/natVMPipe.o gnu/java/nio/natVMSelector.o gnu/java/nio/natNIOServerSocket.o gnu/java/nio/natVMChannel.o gnu/java/nio/channels/natFileChannelImpl.o gnu/java/security/jce/prng/natVMSecureRandom.o java/io/natFile.o java/io/natVMObjectInputStream.o java/io/natVMObjectStreamClass.o java/lang/natCharacter.o java/lang/natClass.o java/lang/natClassLoader.o java/lang/natConcreteProcess.o java/lang/natVMDouble.o java/lang/natVMFloat.o java/lang/natMath.o java/lang/natObject.o java/lang/natRuntime.o java/lang/natString.o java/lang/natAbstractStringBuffer.o java/lang/natSystem.o java/lang/natThread.o java/lang/natThreadLocal.o java/lang/natVMClassLoader.o java/lang/natVMProcess.o java/lang/natVMThrowable.o java/lang/ref/natReference.o java/lang/reflect/natArray.o java/lang/reflect/natConstructor.o java/lang/reflect/natField.o java/lang/reflect/natMethod.o java/lang/reflect/natVMProxy.o java/net/natVMInetAddress.o java/net/natVMNetworkInterface.o java/net/natVMURLConnection.o java/nio/channels/natVMChannels.o java/nio/natVMDirectByteBufferImpl.o java/security/natVMAccessController.o java/security/natVMAccessControlState.o java/text/natCollator.o java/util/natVMTimeZone.o java/util/concurrent/atomic/natAtomicLong.o java/util/logging/natLogger.o java/util/zip/natDeflater.o java/util/zip/natInflater.o sun/misc/natUnsafe.o boehm.o posix.o posix-threads.o java/lang/Object.o java/lang/Class.o java/process-Posix.o gnu/awt.o gnu/awt/j2d.o gnu/classpath.o gnu/classpath/debug.o gnu/classpath/toolkit.o gnu/gcj.o gnu/gcj/convert.o gnu/gcj/io.o gnu/gcj/runtime.o gnu/gcj/util.o .libs/libgcj.lax/lt1-awt.o gnu/java/awt/color.o gnu/java/awt/dnd.o gnu/java/awt/font.o gnu/java/awt/font/autofit.o gnu/java/awt/font/opentype.o gnu/java/awt/font/opentype/truetype.o gnu/java/awt/image.o gnu/java/awt/java2d.o gnu/java/awt/peer.o gnu/java/awt/peer/headless.o gnu/java/awt/print.o .libs/libgcj.lax/lt2-io.o gnu/java/lang.o gnu/java/lang/reflect.o gnu/java/locale.o gnu/java/net.o gnu/java/net/loader.o gnu/java/net/local.o gnu/java/net/protocol/core.o gnu/java/net/protocol/file.o gnu/java/net/protocol/ftp.o gnu/java/net/protocol/gcjlib.o gnu/java/net/protocol/http.o gnu/java/net/protocol/https.o gnu/java/net/protocol/jar.o gnu/java/nio.o gnu/java/nio/channels.o gnu/java/nio/charset.o gnu/java/rmi.o gnu/java/rmi/activation.o gnu/java/rmi/dgc.o gnu/java/rmi/registry.o gnu/java/rmi/server.o gnu/java/security.o gnu/java/security/action.o gnu/java/security/ber.o gnu/java/security/der.o gnu/java/security/hash.o .libs/libgcj.lax/lt3-hash.o gnu/java/security/jce/prng.o gnu/java/security/jce/sig.o gnu/java/security/key.o gnu/java/security/key/dss.o gnu/java/security/key/rsa.o gnu/java/security/pkcs.o .libs/libgcj.lax/lt4-prng.o gnu/java/security/provider.o .libs/libgcj.lax/lt5-sig.o .libs/libgcj.lax/lt6-dss.o .libs/libgcj.lax/lt7-rsa.o .libs/libgcj.lax/lt8-util.o gnu/java/security/x509.o gnu/java/security/x509/ext.o gnu/java/text.o .libs/libgcj.lax/lt9-util.o .libs/libgcj.lax/lt10-jar.o gnu/java/util/prefs.o gnu/java/util/regex.o gnu/javax/activation/viewers.o gnu/javax/crypto.o gnu/javax/crypto/assembly.o gnu/javax/crypto/cipher.o gnu/javax/crypto/jce.o .libs/libgcj.lax/lt11-cipher.o .libs/libgcj.lax/lt12-key.o gnu/javax/crypto/jce/keyring.o gnu/javax/crypto/jce/mac.o gnu/javax/crypto/jce/params.o .libs/libgcj.lax/lt13-prng.o .libs/libgcj.lax/lt14-sig.o gnu/javax/crypto/jce/spec.o .libs/libgcj.lax/lt15-key.o gnu/javax/crypto/key/dh.o gnu/javax/crypto/key/srp6.o .libs/libgcj.lax/lt16-keyring.o gnu/javax/crypto/kwa.o .libs/libgcj.lax/lt17-mac.o gnu/javax/crypto/mode.o gnu/javax/crypto/pad.o .libs/libgcj.lax/lt18-prng.o gnu/javax/crypto/sasl.o gnu/javax/crypto/sasl/anonymous.o gnu/javax/crypto/sasl/crammd5.o gnu/javax/crypto/sasl/plain.o gnu/javax/crypto/sasl/srp.o gnu/javax/imageio.o gnu/javax/imageio/bmp.o gnu/javax/imageio/gif.o gnu/javax/imageio/jpeg.o gnu/javax/imageio/png.o gnu/javax/naming/giop.o gnu/javax/naming/ictxImpl/trans.o gnu/javax/naming/jndi/url/corbaname.o .libs/libgcj.lax/lt19-rmi.o gnu/javax/net/ssl.o .libs/libgcj.lax/lt20-provider.o .libs/libgcj.lax/lt21-print.o gnu/javax/print/ipp.o gnu/javax/print/ipp/attribute.o gnu/javax/print/ipp/attribute/defaults.o gnu/javax/print/ipp/attribute/job.o gnu/javax/print/ipp/attribute/printer.o gnu/javax/print/ipp/attribute/supported.o gnu/javax/security/auth.o gnu/javax/security/auth/callback.o gnu/javax/security/auth/login.o gnu/javax/sound.o gnu/javax/sound/sampled/AU.o gnu/javax/sound/sampled/WAV.o gnu/javax/swing/plaf/gnu.o gnu/javax/swing/plaf/metal.o gnu/javax/swing/text/html.o gnu/javax/swing/text/html/css.o gnu/javax/swing/text/html/parser/GnuParserDelegator.o gnu/javax/swing/text/html/parser/HTML_401F.o gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/gnuDTD.o gnu/javax/swing/text/html/parser/htmlAttributeSet.o gnu/javax/swing/text/html/parser/htmlValidator.o gnu/javax/swing/text/html/parser/models.o gnu/javax/swing/text/html/parser/support.o gnu/javax/swing/text/html/parser/support/low.o gnu/javax/swing/tree.o java/applet.o .libs/libgcj.lax/lt22-awt.o .libs/libgcj.lax/lt23-color.o java/awt/datatransfer.o .libs/libgcj.lax/lt24-dnd.o .libs/libgcj.lax/lt25-peer.o java/awt/event.o .libs/libgcj.lax/lt26-font.o java/awt/geom.o java/awt/im.o java/awt/im/spi.o .libs/libgcj.lax/lt27-image.o java/awt/image/renderable.o .libs/libgcj.lax/lt28-peer.o .libs/libgcj.lax/lt29-print.o java/beans.o java/beans/beancontext.o .libs/libgcj.lax/lt30-io.o .libs/libgcj.lax/lt31-lang.o java/lang/annotation.o java/lang/instrument.o java/lang/ref.o .libs/libgcj.lax/lt32-reflect.o java/math.o .libs/libgcj.lax/lt33-net.o .libs/libgcj.lax/lt34-nio.o .libs/libgcj.lax/lt35-channels.o .libs/libgcj.lax/lt36-spi.o .libs/libgcj.lax/lt37-charset.o .libs/libgcj.lax/lt38-spi.o .libs/libgcj.lax/lt39-rmi.o .libs/libgcj.lax/lt40-activation.o .libs/libgcj.lax/lt41-dgc.o .libs/libgcj.lax/lt42-registry.o .libs/libgcj.lax/lt43-server.o .libs/libgcj.lax/lt44-security.o java/security/acl.o java/security/cert.o java/security/interfaces.o .libs/libgcj.lax/lt45-spec.o java/sql.o .libs/libgcj.lax/lt46-text.o .libs/libgcj.lax/lt47-spi.o .libs/libgcj.lax/lt48-util.o java/util/concurrent.o java/util/concurrent/atomic.o java/util/concurrent/locks.o .libs/libgcj.lax/lt49-jar.o java/util/logging.o .libs/libgcj.lax/lt50-prefs.o .libs/libgcj.lax/lt51-regex.o .libs/libgcj.lax/lt52-spi.o java/util/zip.o javax/accessibility.o .libs/libgcj.lax/lt53-activation.o javax/activity.o .libs/libgcj.lax/lt54-crypto.o .libs/libgcj.lax/lt55-interfaces.o .libs/libgcj.lax/lt56-spec.o javax/management.o javax/management/loading.o javax/management/openmbean.o javax/management/remote.o .libs/libgcj.lax/lt57-rmi.o javax/naming.o javax/naming/directory.o .libs/libgcj.lax/lt58-event.o javax/naming/ldap.o .libs/libgcj.lax/lt59-spi.o .libs/libgcj.lax/lt60-net.o .libs/libgcj.lax/lt61-ssl.o .libs/libgcj.lax/lt62-print.o .libs/libgcj.lax/lt63-attribute.o javax/print/attribute/standard.o .libs/libgcj.lax/lt64-event.o .libs/libgcj.lax/lt65-auth.o .libs/libgcj.lax/lt66-callback.o javax/security/auth/kerberos.o .libs/libgcj.lax/lt67-login.o .libs/libgcj.lax/lt68-spi.o javax/security/auth/x500.o .libs/libgcj.lax/lt69-cert.o .libs/libgcj.lax/lt70-sasl.o javax/sound/midi.o .libs/libgcj.lax/lt71-spi.o javax/sound/sampled.o .libs/libgcj.lax/lt72-spi.o .libs/libgcj.lax/lt73-sql.o javax/swing.o javax/swing/border.o javax/swing/colorchooser.o .libs/libgcj.lax/lt74-event.o javax/swing/filechooser.o javax/swing/plaf.o javax/swing/plaf/basic.o .libs/libgcj.lax/lt75-metal.o javax/swing/plaf/multi.o javax/swing/plaf/synth.o javax/swing/table.o .libs/libgcj.lax/lt76-text.o .libs/libgcj.lax/lt77-html.o javax/swing/text/html/parser.o javax/swing/text/rtf.o .libs/libgcj.lax/lt78-tree.o javax/swing/undo.o javax/tools.o javax/transaction.o javax/transaction/xa.o org/ietf/jgss.o .libs/libgcj.lax/lt79-awt.o sun/misc.o .libs/libgcj.lax/lt80-reflect.o .libs/libgcj.lax/lt81-annotation.o .libs/libgcj.lax/lt82-misc.o gnu/classpath/jdwp.o .libs/libgcj.lax/lt83-event.o gnu/classpath/jdwp/event/filters.o .libs/libgcj.lax/lt84-exception.o gnu/classpath/jdwp/id.o gnu/classpath/jdwp/processor.o gnu/classpath/jdwp/transport.o .libs/libgcj.lax/lt85-util.o gnu/classpath/jdwp/value.o .libs/libgcj.lax/lt86-jvmti.o gnu/java/awt/font/fonts.properties.o gnu/java/awt/peer/gtk/font.properties.o .libs/libgcj.lax/lt87-fonts.properties.o gnu/java/awt/peer/x/xfonts.properties.o gnu/java/locale/LocaleInformation.properties.o gnu/java/locale/LocaleInformation_aa.properties.o gnu/java/locale/LocaleInformation_aa_DJ.properties.o gnu/java/locale/LocaleInformation_aa_ER.properties.o gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/LocaleInformation_aa_ET.properties.o gnu/java/locale/LocaleInformation_af.properties.o gnu/java/locale/LocaleInformation_af_NA.properties.o gnu/java/locale/LocaleInformation_af_ZA.properties.o gnu/java/locale/LocaleInformation_ak.properties.o gnu/java/locale/LocaleInformation_am.properties.o gnu/java/locale/LocaleInformation_am_ET.properties.o gnu/java/locale/LocaleInformation_ar.properties.o gnu/java/locale/LocaleInformation_ar_DZ.properties.o gnu/java/locale/LocaleInformation_ar_JO.properties.o gnu/java/locale/LocaleInformation_ar_LB.properties.o gnu/java/locale/LocaleInformation_ar_MA.properties.o gnu/java/locale/LocaleInformation_ar_QA.properties.o gnu/java/locale/LocaleInformation_ar_SA.properties.o gnu/java/locale/LocaleInformation_ar_SY.properties.o gnu/java/locale/LocaleInformation_ar_TN.properties.o gnu/java/locale/LocaleInformation_ar_YE.properties.o gnu/java/locale/LocaleInformation_as.properties.o gnu/java/locale/LocaleInformation_as_IN.properties.o gnu/java/locale/LocaleInformation_az.properties.o gnu/java/locale/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/LocaleInformation_be.properties.o gnu/java/locale/LocaleInformation_be_BY.properties.o gnu/java/locale/LocaleInformation_bg.properties.o gnu/java/locale/LocaleInformation_bg_BG.properties.o gnu/java/locale/LocaleInformation_bn.properties.o gnu/java/locale/LocaleInformation_bn_IN.properties.o gnu/java/locale/LocaleInformation_bo.properties.o gnu/java/locale/LocaleInformation_bs.properties.o gnu/java/locale/LocaleInformation_byn.properties.o gnu/java/locale/LocaleInformation_byn_ER.properties.o gnu/java/locale/LocaleInformation_ca.properties.o gnu/java/locale/LocaleInformation_ca_ES.properties.o gnu/java/locale/LocaleInformation_cch.properties.o gnu/java/locale/LocaleInformation_cop.properties.o gnu/java/locale/LocaleInformation_cs.properties.o gnu/java/locale/LocaleInformation_cs_CZ.properties.o gnu/java/locale/LocaleInformation_cy.properties.o gnu/java/locale/LocaleInformation_cy_GB.properties.o gnu/java/locale/LocaleInformation_da.properties.o gnu/java/locale/LocaleInformation_da_DK.properties.o gnu/java/locale/LocaleInformation_de.properties.o gnu/java/locale/LocaleInformation_de_AT.properties.o gnu/java/locale/LocaleInformation_de_BE.properties.o gnu/java/locale/LocaleInformation_de_CH.properties.o gnu/java/locale/LocaleInformation_de_DE.properties.o gnu/java/locale/LocaleInformation_de_LI.properties.o gnu/java/locale/LocaleInformation_de_LU.properties.o gnu/java/locale/LocaleInformation_dv.properties.o gnu/java/locale/LocaleInformation_dv_MV.properties.o gnu/java/locale/LocaleInformation_dz.properties.o gnu/java/locale/LocaleInformation_dz_BT.properties.o gnu/java/locale/LocaleInformation_ee.properties.o gnu/java/locale/LocaleInformation_el.properties.o gnu/java/locale/LocaleInformation_el_CY.properties.o gnu/java/locale/LocaleInformation_el_GR.properties.o gnu/java/locale/LocaleInformation_en.properties.o gnu/java/locale/LocaleInformation_en_AS.properties.o gnu/java/locale/LocaleInformation_en_AU.properties.o gnu/java/locale/LocaleInformation_en_BE.properties.o gnu/java/locale/LocaleInformation_en_BW.properties.o gnu/java/locale/LocaleInformation_en_BZ.properties.o gnu/java/locale/LocaleInformation_en_CA.properties.o gnu/java/locale/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/LocaleInformation_en_GB.properties.o gnu/java/locale/LocaleInformation_en_GU.properties.o gnu/java/locale/LocaleInformation_en_HK.properties.o gnu/java/locale/LocaleInformation_en_IE.properties.o gnu/java/locale/LocaleInformation_en_IN.properties.o gnu/java/locale/LocaleInformation_en_JM.properties.o gnu/java/locale/LocaleInformation_en_MH.properties.o gnu/java/locale/LocaleInformation_en_MP.properties.o gnu/java/locale/LocaleInformation_en_MT.properties.o gnu/java/locale/LocaleInformation_en_NA.properties.o gnu/java/locale/LocaleInformation_en_NZ.properties.o gnu/java/locale/LocaleInformation_en_PH.properties.o gnu/java/locale/LocaleInformation_en_PK.properties.o gnu/java/locale/LocaleInformation_en_SG.properties.o gnu/java/locale/LocaleInformation_en_Shaw.properties.o gnu/java/locale/LocaleInformation_en_TT.properties.o gnu/java/locale/LocaleInformation_en_UM.properties.o gnu/java/locale/LocaleInformation_en_US.properties.o gnu/java/locale/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/LocaleInformation_en_VI.properties.o gnu/java/locale/LocaleInformation_en_ZA.properties.o gnu/java/locale/LocaleInformation_en_ZW.properties.o gnu/java/locale/LocaleInformation_eo.properties.o gnu/java/locale/LocaleInformation_es.properties.o gnu/java/locale/LocaleInformation_es_AR.properties.o gnu/java/locale/LocaleInformation_es_BO.properties.o gnu/java/locale/LocaleInformation_es_CL.properties.o gnu/java/locale/LocaleInformation_es_CO.properties.o gnu/java/locale/LocaleInformation_es_CR.properties.o gnu/java/locale/LocaleInformation_es_DO.properties.o gnu/java/locale/LocaleInformation_es_EC.properties.o gnu/java/locale/LocaleInformation_es_ES.properties.o gnu/java/locale/LocaleInformation_es_GT.properties.o gnu/java/locale/LocaleInformation_es_HN.properties.o gnu/java/locale/LocaleInformation_es_MX.properties.o gnu/java/locale/LocaleInformation_es_NI.properties.o gnu/java/locale/LocaleInformation_es_PA.properties.o gnu/java/locale/LocaleInformation_es_PE.properties.o gnu/java/locale/LocaleInformation_es_PR.properties.o gnu/java/locale/LocaleInformation_es_PY.properties.o gnu/java/locale/LocaleInformation_es_SV.properties.o gnu/java/locale/LocaleInformation_es_US.properties.o gnu/java/locale/LocaleInformation_es_UY.properties.o gnu/java/locale/LocaleInformation_es_VE.properties.o gnu/java/locale/LocaleInformation_et.properties.o gnu/java/locale/LocaleInformation_et_EE.properties.o gnu/java/locale/LocaleInformation_eu.properties.o gnu/java/locale/LocaleInformation_eu_ES.properties.o gnu/java/locale/LocaleInformation_fa.properties.o gnu/java/locale/LocaleInformation_fa_AF.properties.o gnu/java/locale/LocaleInformation_fa_IR.properties.o gnu/java/locale/LocaleInformation_fi.properties.o gnu/java/locale/LocaleInformation_fi_FI.properties.o gnu/java/locale/LocaleInformation_fil.properties.o gnu/java/locale/LocaleInformation_fo.properties.o gnu/java/locale/LocaleInformation_fo_FO.properties.o gnu/java/locale/LocaleInformation_fr.properties.o gnu/java/locale/LocaleInformation_fr_BE.properties.o gnu/java/locale/LocaleInformation_fr_CA.properties.o gnu/java/locale/LocaleInformation_fr_CH.properties.o gnu/java/locale/LocaleInformation_fr_LU.properties.o gnu/java/locale/LocaleInformation_fur.properties.o gnu/java/locale/LocaleInformation_ga.properties.o gnu/java/locale/LocaleInformation_ga_IE.properties.o gnu/java/locale/LocaleInformation_gaa.properties.o gnu/java/locale/LocaleInformation_gez.properties.o gnu/java/locale/LocaleInformation_gez_ER.properties.o gnu/java/locale/LocaleInformation_gez_ET.properties.o gnu/java/locale/LocaleInformation_gl.properties.o gnu/java/locale/LocaleInformation_gl_ES.properties.o gnu/java/locale/LocaleInformation_gu.properties.o gnu/java/locale/LocaleInformation_gu_IN.properties.o gnu/java/locale/LocaleInformation_gv.properties.o gnu/java/locale/LocaleInformation_gv_GB.properties.o gnu/java/locale/LocaleInformation_ha.properties.o gnu/java/locale/LocaleInformation_ha_Arab.properties.o gnu/java/locale/LocaleInformation_haw.properties.o gnu/java/locale/LocaleInformation_haw_US.properties.o gnu/java/locale/LocaleInformation_he.properties.o gnu/java/locale/LocaleInformation_he_IL.properties.o gnu/java/locale/LocaleInformation_hi.properties.o gnu/java/locale/LocaleInformation_hi_IN.properties.o gnu/java/locale/LocaleInformation_hr.properties.o gnu/java/locale/LocaleInformation_hu.properties.o gnu/java/locale/LocaleInformation_hu_HU.properties.o gnu/java/locale/LocaleInformation_hy.properties.o gnu/java/locale/LocaleInformation_hy_AM.properties.o gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/LocaleInformation_ia.properties.o gnu/java/locale/LocaleInformation_id.properties.o gnu/java/locale/LocaleInformation_id_ID.properties.o gnu/java/locale/LocaleInformation_ig.properties.o gnu/java/locale/LocaleInformation_ii.properties.o gnu/java/locale/LocaleInformation_is.properties.o gnu/java/locale/LocaleInformation_is_IS.properties.o gnu/java/locale/LocaleInformation_it.properties.o gnu/java/locale/LocaleInformation_it_CH.properties.o gnu/java/locale/LocaleInformation_it_IT.properties.o gnu/java/locale/LocaleInformation_iu.properties.o gnu/java/locale/LocaleInformation_ja.properties.o gnu/java/locale/LocaleInformation_ja_JP.properties.o gnu/java/locale/LocaleInformation_ka.properties.o gnu/java/locale/LocaleInformation_kaj.properties.o gnu/java/locale/LocaleInformation_kam.properties.o gnu/java/locale/LocaleInformation_kcg.properties.o gnu/java/locale/LocaleInformation_kfo.properties.o gnu/java/locale/LocaleInformation_kk.properties.o gnu/java/locale/LocaleInformation_kk_KZ.properties.o gnu/java/locale/LocaleInformation_kl.properties.o gnu/java/locale/LocaleInformation_kl_GL.properties.o gnu/java/locale/LocaleInformation_km.properties.o gnu/java/locale/LocaleInformation_km_KH.properties.o gnu/java/locale/LocaleInformation_kn.properties.o gnu/java/locale/LocaleInformation_kn_IN.properties.o gnu/java/locale/LocaleInformation_ko.properties.o gnu/java/locale/LocaleInformation_ko_KR.properties.o gnu/java/locale/LocaleInformation_kok.properties.o gnu/java/locale/LocaleInformation_kok_IN.properties.o gnu/java/locale/LocaleInformation_kpe.properties.o gnu/java/locale/LocaleInformation_ku.properties.o gnu/java/locale/LocaleInformation_ku_Arab.properties.o gnu/java/locale/LocaleInformation_ku_Latn.properties.o gnu/java/locale/LocaleInformation_kw.properties.o gnu/java/locale/LocaleInformation_kw_GB.properties.o gnu/java/locale/LocaleInformation_ky.properties.o gnu/java/locale/LocaleInformation_ln.properties.o gnu/java/locale/LocaleInformation_lo.properties.o gnu/java/locale/LocaleInformation_lo_LA.properties.o gnu/java/locale/LocaleInformation_lt.properties.o gnu/java/locale/LocaleInformation_lt_LT.properties.o gnu/java/locale/LocaleInformation_lv.properties.o gnu/java/locale/LocaleInformation_lv_LV.properties.o gnu/java/locale/LocaleInformation_mk.properties.o gnu/java/locale/LocaleInformation_ml.properties.o gnu/java/locale/LocaleInformation_ml_IN.properties.o gnu/java/locale/LocaleInformation_mn.properties.o gnu/java/locale/LocaleInformation_mr.properties.o gnu/java/locale/LocaleInformation_mr_IN.properties.o gnu/java/locale/LocaleInformation_ms.properties.o gnu/java/locale/LocaleInformation_ms_BN.properties.o gnu/java/locale/LocaleInformation_ms_MY.properties.o gnu/java/locale/LocaleInformation_mt.properties.o gnu/java/locale/LocaleInformation_mt_MT.properties.o gnu/java/locale/LocaleInformation_my.properties.o gnu/java/locale/LocaleInformation_nb.properties.o gnu/java/locale/LocaleInformation_nb_NO.properties.o gnu/java/locale/LocaleInformation_ne.properties.o gnu/java/locale/LocaleInformation_nl.properties.o gnu/java/locale/LocaleInformation_nl_BE.properties.o gnu/java/locale/LocaleInformation_nl_NL.properties.o gnu/java/locale/LocaleInformation_nn.properties.o gnu/java/locale/LocaleInformation_nn_NO.properties.o gnu/java/locale/LocaleInformation_nr.properties.o gnu/java/locale/LocaleInformation_nso.properties.o gnu/java/locale/LocaleInformation_ny.properties.o gnu/java/locale/LocaleInformation_om.properties.o gnu/java/locale/LocaleInformation_om_ET.properties.o gnu/java/locale/LocaleInformation_om_KE.properties.o gnu/java/locale/LocaleInformation_or.properties.o gnu/java/locale/LocaleInformation_or_IN.properties.o gnu/java/locale/LocaleInformation_pa.properties.o gnu/java/locale/LocaleInformation_pa_Arab.properties.o gnu/java/locale/LocaleInformation_pa_IN.properties.o gnu/java/locale/LocaleInformation_pl.properties.o gnu/java/locale/LocaleInformation_pl_PL.properties.o gnu/java/locale/LocaleInformation_ps.properties.o gnu/java/locale/LocaleInformation_ps_AF.properties.o gnu/java/locale/LocaleInformation_pt.properties.o gnu/java/locale/LocaleInformation_pt_BR.properties.o gnu/java/locale/LocaleInformation_pt_PT.properties.o gnu/java/locale/LocaleInformation_ro.properties.o gnu/java/locale/LocaleInformation_ro_RO.properties.o gnu/java/locale/LocaleInformation_ru.properties.o gnu/java/locale/LocaleInformation_ru_RU.properties.o gnu/java/locale/LocaleInformation_ru_UA.properties.o gnu/java/locale/LocaleInformation_rw.properties.o gnu/java/locale/LocaleInformation_sa.properties.o gnu/java/locale/LocaleInformation_sa_IN.properties.o gnu/java/locale/LocaleInformation_se.properties.o gnu/java/locale/LocaleInformation_se_FI.properties.o gnu/java/locale/LocaleInformation_si.properties.o gnu/java/locale/LocaleInformation_sid.properties.o gnu/java/locale/LocaleInformation_sid_ET.properties.o gnu/java/locale/LocaleInformation_sk.properties.o gnu/java/locale/LocaleInformation_sk_SK.properties.o gnu/java/locale/LocaleInformation_sl.properties.o gnu/java/locale/LocaleInformation_sl_SI.properties.o gnu/java/locale/LocaleInformation_so.properties.o gnu/java/locale/LocaleInformation_so_DJ.properties.o gnu/java/locale/LocaleInformation_so_ET.properties.o gnu/java/locale/LocaleInformation_so_KE.properties.o gnu/java/locale/LocaleInformation_so_SO.properties.o gnu/java/locale/LocaleInformation_sq.properties.o gnu/java/locale/LocaleInformation_sq_AL.properties.o gnu/java/locale/LocaleInformation_sr.properties.o gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_Latn.properties.o gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/LocaleInformation_ss.properties.o gnu/java/locale/LocaleInformation_ssy.properties.o gnu/java/locale/LocaleInformation_st.properties.o gnu/java/locale/LocaleInformation_sv.properties.o gnu/java/locale/LocaleInformation_sv_FI.properties.o gnu/java/locale/LocaleInformation_sv_SE.properties.o gnu/java/locale/LocaleInformation_sw.properties.o gnu/java/locale/LocaleInformation_sw_KE.properties.o gnu/java/locale/LocaleInformation_sw_TZ.properties.o gnu/java/locale/LocaleInformation_syr.properties.o gnu/java/locale/LocaleInformation_syr_SY.properties.o gnu/java/locale/LocaleInformation_ta.properties.o gnu/java/locale/LocaleInformation_ta_IN.properties.o gnu/java/locale/LocaleInformation_te.properties.o gnu/java/locale/LocaleInformation_te_IN.properties.o gnu/java/locale/LocaleInformation_tg.properties.o gnu/java/locale/LocaleInformation_th.properties.o gnu/java/locale/LocaleInformation_th_TH.properties.o gnu/java/locale/LocaleInformation_ti.properties.o gnu/java/locale/LocaleInformation_ti_ER.properties.o gnu/java/locale/LocaleInformation_ti_ET.properties.o gnu/java/locale/LocaleInformation_tig.properties.o gnu/java/locale/LocaleInformation_tig_ER.properties.o gnu/java/locale/LocaleInformation_tn.properties.o gnu/java/locale/LocaleInformation_to.properties.o gnu/java/locale/LocaleInformation_tr.properties.o gnu/java/locale/LocaleInformation_tr_TR.properties.o gnu/java/locale/LocaleInformation_trv.properties.o gnu/java/locale/LocaleInformation_ts.properties.o gnu/java/locale/LocaleInformation_tt.properties.o gnu/java/locale/LocaleInformation_tt_RU.properties.o gnu/java/locale/LocaleInformation_ug.properties.o gnu/java/locale/LocaleInformation_uk.properties.o gnu/java/locale/LocaleInformation_uk_UA.properties.o gnu/java/locale/LocaleInformation_ur.properties.o gnu/java/locale/LocaleInformation_ur_IN.properties.o gnu/java/locale/LocaleInformation_uz.properties.o gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Latn.properties.o gnu/java/locale/LocaleInformation_ve.properties.o gnu/java/locale/LocaleInformation_vi.properties.o gnu/java/locale/LocaleInformation_wal.properties.o gnu/java/locale/LocaleInformation_wal_ET.properties.o gnu/java/locale/LocaleInformation_wo.properties.o gnu/java/locale/LocaleInformation_xh.properties.o gnu/java/locale/LocaleInformation_yo.properties.o gnu/java/locale/LocaleInformation_zh.properties.o gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/LocaleInformation_zh_Hant.properties.o gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/LocaleInformation_zu.properties.o gnu/java/util/regex/MessagesBundle.properties.o gnu/java/util/regex/MessagesBundle_fr.properties.o gnu/java/util/regex/MessagesBundle_it.properties.o gnu/javax/print/PrinterDialog.properties.o gnu/javax/print/PrinterDialog_de.properties.o .libs/libgcj.lax/lt88-MessagesBundle.properties.o java/text/metazones.properties.o java/util/iso4217.properties.o java/util/weeks.properties.o .libs/libgcj.lax/lt89-MessagesBundle.properties.o javax/swing/text/html/default.css.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o META-INF/services/java.util.prefs.PreferencesFactory.o META-INF/services/java.util.prefs.PreferencesFactory.in.o META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/javax.sound.midi.spi.MidiFileReader.o META-INF/services/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/javax.sound.sampled.spi.AudioFileReader.o gnu-CORBA.o gnu-java-awt-dnd-peer-gtk.o gnu-java-awt-peer-gtk.o gnu-java-awt-peer-swing.o gnu-java-beans.o gnu-java-lang-management.o gnu-java-math.o gnu-java-util-prefs-gconf.o gnu-javax-management.o gnu-javax-rmi.o gnu-javax-sound-midi.o gnu-xml-aelfred2.o gnu-xml-dom.o gnu-xml-libxmlj.o gnu-xml-pipeline.o gnu-xml-stream.o gnu-xml-transform.o gnu-xml-util.o gnu-xml-validation.o gnu-xml-xpath.o java-lang-management.o javax-imageio.o javax-rmi.o javax-xml.o org-omg-CORBA.o org-omg-CORBA_2_3.o org-omg-CosNaming.o org-omg-Dynamic.o org-omg-DynamicAny.o org-omg-IOP.o org-omg-Messaging.o org-omg-PortableInterceptor.o org-omg-PortableServer.o org-omg-SendingContext.o org-omg-stub.o org-relaxng.o org-w3c.o org-xml.o .libs/libgcj.lax/libltdlc.a/ltdl.o .libs/libgcj.lax/libfdlibm.a/dtoa.o .libs/libgcj.lax/libfdlibm.a/e_acos.o .libs/libgcj.lax/libfdlibm.a/e_asin.o .libs/libgcj.lax/libfdlibm.a/e_atan2.o .libs/libgcj.lax/libfdlibm.a/e_cosh.o .libs/libgcj.lax/libfdlibm.a/e_exp.o .libs/libgcj.lax/libfdlibm.a/e_fmod.o .libs/libgcj.lax/libfdlibm.a/e_hypot.o .libs/libgcj.lax/libfdlibm.a/e_log.o .libs/libgcj.lax/libfdlibm.a/e_log10.o .libs/libgcj.lax/libfdlibm.a/e_pow.o .libs/libgcj.lax/libfdlibm.a/e_remainder.o .libs/libgcj.lax/libfdlibm.a/e_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/e_scalb.o .libs/libgcj.lax/libfdlibm.a/e_sinh.o .libs/libgcj.lax/libfdlibm.a/e_sqrt.o .libs/libgcj.lax/libfdlibm.a/k_cos.o .libs/libgcj.lax/libfdlibm.a/k_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/k_sin.o .libs/libgcj.lax/libfdlibm.a/k_tan.o .libs/libgcj.lax/libfdlibm.a/mprec.o .libs/libgcj.lax/libfdlibm.a/s_atan.o .libs/libgcj.lax/libfdlibm.a/s_cbrt.o .libs/libgcj.lax/libfdlibm.a/s_ceil.o .libs/libgcj.lax/libfdlibm.a/s_copysign.o .libs/libgcj.lax/libfdlibm.a/s_cos.o .libs/libgcj.lax/libfdlibm.a/s_expm1.o .libs/libgcj.lax/libfdlibm.a/s_fabs.o .libs/libgcj.lax/libfdlibm.a/sf_fabs.o .libs/libgcj.lax/libfdlibm.a/s_finite.o .libs/libgcj.lax/libfdlibm.a/s_floor.o .libs/libgcj.lax/libfdlibm.a/s_log1p.o .libs/libgcj.lax/libfdlibm.a/sf_rint.o .libs/libgcj.lax/libfdlibm.a/s_rint.o .libs/libgcj.lax/libfdlibm.a/s_scalbn.o .libs/libgcj.lax/libfdlibm.a/s_sin.o .libs/libgcj.lax/libfdlibm.a/s_tan.o .libs/libgcj.lax/libfdlibm.a/s_tanh.o .libs/libgcj.lax/libfdlibm.a/strtod.o .libs/libgcj.lax/libfdlibm.a/w_acos.o .libs/libgcj.lax/libfdlibm.a/w_asin.o .libs/libgcj.lax/libfdlibm.a/w_atan2.o .libs/libgcj.lax/libfdlibm.a/w_cosh.o .libs/libgcj.lax/libfdlibm.a/w_exp.o .libs/libgcj.lax/libfdlibm.a/w_fmod.o .libs/libgcj.lax/libfdlibm.a/w_hypot.o .libs/libgcj.lax/libfdlibm.a/w_log.o .libs/libgcj.lax/libfdlibm.a/w_log10.o .libs/libgcj.lax/libfdlibm.a/w_pow.o .libs/libgcj.lax/libfdlibm.a/w_remainder.o .libs/libgcj.lax/libfdlibm.a/w_sinh.o .libs/libgcj.lax/libfdlibm.a/w_sqrt.o .libs/libgcj.lax/lt91-debug.o .libs/libgcj.lax/libffi_convenience.a/prep_cif.o .libs/libgcj.lax/libffi_convenience.a/types.o .libs/libgcj.lax/libffi_convenience.a/raw_api.o .libs/libgcj.lax/libffi_convenience.a/java_raw_api.o .libs/libgcj.lax/libffi_convenience.a/closures.o .libs/libgcj.lax/libffi_convenience.a/ffi.o .libs/libgcj.lax/libffi_convenience.a/sysv.o .libs/libgcj.lax/libzgcj_convenience.a/adler32.o .libs/libgcj.lax/libzgcj_convenience.a/compress.o .libs/libgcj.lax/libzgcj_convenience.a/crc32.o .libs/libgcj.lax/libzgcj_convenience.a/deflate.o .libs/libgcj.lax/libzgcj_convenience.a/gzio.o .libs/libgcj.lax/libzgcj_convenience.a/infback.o .libs/libgcj.lax/libzgcj_convenience.a/inffast.o .libs/libgcj.lax/libzgcj_convenience.a/inflate.o .libs/libgcj.lax/libzgcj_convenience.a/inftrees.o .libs/libgcj.lax/libzgcj_convenience.a/trees.o .libs/libgcj.lax/libzgcj_convenience.a/uncompr.o .libs/libgcj.lax/libzgcj_convenience.a/zutil.o .libs/libgcj.lax/libgcjgc_convenience.a/allchblk.o .libs/libgcj.lax/libgcjgc_convenience.a/alloc.o .libs/libgcj.lax/libgcjgc_convenience.a/blacklst.o .libs/libgcj.lax/libgcjgc_convenience.a/checksums.o .libs/libgcj.lax/libgcjgc_convenience.a/dbg_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/dyn_load.o .libs/libgcj.lax/libgcjgc_convenience.a/finalize.o .libs/libgcj.lax/libgcjgc_convenience.a/gc_dlopen.o .libs/libgcj.lax/libgcjgc_convenience.a/gcj_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/headers.o .libs/libgcj.lax/libgcjgc_convenience.a/malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/mallocx.o .libs/libgcj.lax/libgcjgc_convenience.a/mark.o .libs/libgcj.lax/libgcjgc_convenience.a/mark_rts.o .libs/libgcj.lax/lt92-misc.o .libs/libgcj.lax/libgcjgc_convenience.a/new_hblk.o .libs/libgcj.lax/libgcjgc_convenience.a/obj_map.o .libs/libgcj.lax/libgcjgc_convenience.a/os_dep.o .libs/libgcj.lax/libgcjgc_convenience.a/pcr_interface.o .libs/libgcj.lax/libgcjgc_convenience.a/ptr_chck.o .libs/libgcj.lax/libgcjgc_convenience.a/real_malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/reclaim.o .libs/libgcj.lax/libgcjgc_convenience.a/specific.o .libs/libgcj.lax/libgcjgc_convenience.a/stubborn.o .libs/libgcj.lax/libgcjgc_convenience.a/typd_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/backgraph.o .libs/libgcj.lax/libgcjgc_convenience.a/win32_threads.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_support.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/darwin_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/mach_dep.o
+ libtool: link: ranlib .libs/libgcj.a
+ libtool: link: rm -fr .libs/libgcj.lax .libs/libgcj.lax
+ libtool: link: ( cd ".libs" && rm -f "libgcj.la" && ln -s "../libgcj.la" "libgcj.la" )
+-/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
++/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
++libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
+ libtool: link: ar rc .libs/libjvm.a jni-libjvm.o
+ libtool: link: ranlib .libs/libjvm.a
+ libtool: link: ( cd ".libs" && rm -f "libjvm.la" && ln -s "../libjvm.la" "libjvm.la" )
+@@ -23478,8 +23048,8 @@
+ mv -f $depbase.Tpo $depbase.Plo
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../master/libjava/gij.cc -fPIC -DPIC -o .libs/gij.o
+ libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../master/libjava/gij.cc -o gij.o >/dev/null 2>&1
+-/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
+-libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
++/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
++libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
+ libtool: link: (cd ".libs" && rm -f "libgij.so.12" && ln -s "libgij.so.12.0.0" "libgij.so.12")
+ libtool: link: (cd ".libs" && rm -f "libgij.so" && ln -s "libgij.so.12.0.0" "libgij.so")
+ libtool: link: ar rc .libs/libgij.a gij.o
diff --git a/open_issues/gcc/log_build-hurd.sed b/open_issues/gcc/log_build-hurd.sed
new file mode 100644
index 00000000..26da4f7e
--- /dev/null
+++ b/open_issues/gcc/log_build-hurd.sed
@@ -0,0 +1,11 @@
+s%i686-unknown-gnu0\.3%[ARCH]%g
+
+s%libdecnumber/dpd%[libdecnumber]%g
+
+
+
+
+
+
+s%libgomp/config/posix/%libgomp/config/[SYSDEP]/%g
+
diff --git a/open_issues/gcc/log_build-linux.sed b/open_issues/gcc/log_build-linux.sed
new file mode 100644
index 00000000..f9b412ef
--- /dev/null
+++ b/open_issues/gcc/log_build-linux.sed
@@ -0,0 +1,10 @@
+s%i686-pc-linux-gnu%[ARCH]%g
+
+s%libdecnumber/bid%[libdecnumber]%g
+s%-I../../../master/libgcc/config/libbid -DENABLE_DECIMAL_BID_FORMAT%%
+
+s%-I../../../master/libgomp/config/linux/x86 -I../../../master/libgomp/config/linux %%
+s%-ftls-model=initial-exec -march=i486 -mtune=i686 %%
+s%-Werror -ftls-model=initial-exec -march=i486 -pthread -mtune=i686%-pthread -Werror%
+s%libgomp/config/linux/%libgomp/config/[SYSDEP]/%g
+s%libgomp/config/posix/%libgomp/config/[SYSDEP]/%g
diff --git a/open_issues/gcc/log_install-diff b/open_issues/gcc/log_install-diff
new file mode 100644
index 00000000..0cccbf4d
--- /dev/null
+++ b/open_issues/gcc/log_install-diff
@@ -0,0 +1,221 @@
+--- /dev/fd/63 2010-12-10 12:00:47.102216005 +0100
++++ /dev/fd/62 2010-12-10 12:00:47.102216005 +0100
+@@ -395,7 +395,7 @@
+ /usr/bin/install -c -m 644 ../../master/gcc/cp/cxx-pretty-print.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/cp/cxx-pretty-print.h
+ /usr/bin/install -c -m 644 ../../master/gcc/cp/name-lookup.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/cp/name-lookup.h
+ /bin/bash ../../master/gcc/../mkinstalldirs [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include
+-headers=`echo tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h coretypes.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h toplev.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h tree-pass.h timevar.h timevar.def gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h ggc.h gtype-desc.h statistics.h tree-dump.h ../../master/gcc/../include/splay-tree.h tree-pass.h timevar.h timevar.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h ../../master/gcc/../libcpp/include/line-map.h input.h vec.h statistics.h opts.h params.h params.def plugin.def options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h config/i386/i386-protos.h tm-preds.h auto-host.h ../../master/gcc/../include/ansidecl.h auto-host.h ansidecl.h auto-host.h ansidecl.h intl.h plugin-version.h configargs.h diagnostic.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def c-family/c-objc.h c-family/c-pretty-print.h pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-iterator.h plugin.h gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h tree-flow.h tree-flow-inline.h tree-ssa-operands.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h ../../master/gcc/../include/hashtab.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h ipa-reference.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-ssa-alias.h langhooks.h incpath.h debug.h except.h ../../master/gcc/../include/hashtab.h vecprim.h vecir.h tree-ssa-sccvn.h real.h output.h ipa-utils.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h c-family/c-pragma.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cppdefault.h flags.h ../../master/gcc/../include/md5.h params.def params.h prefix.h tree-inline.h ipa-prop.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h vec.h statistics.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h tm_p.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h cfgloop.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h vecprim.h double-int.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h emit-rtl.h version.h | tr ' ' '\012' | sort -u`; \
++headers=`echo tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h coretypes.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h toplev.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h tree-pass.h timevar.h timevar.def gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h ggc.h gtype-desc.h statistics.h tree-dump.h ../../master/gcc/../include/splay-tree.h tree-pass.h timevar.h timevar.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h ../../master/gcc/../libcpp/include/line-map.h input.h vec.h statistics.h opts.h params.h params.def plugin.def options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h config/i386/i386-protos.h tm-preds.h auto-host.h ../../master/gcc/../include/ansidecl.h auto-host.h ansidecl.h auto-host.h ansidecl.h intl.h plugin-version.h configargs.h diagnostic.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def c-family/c-objc.h c-family/c-pretty-print.h pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-iterator.h plugin.h gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h tree-flow.h tree-flow-inline.h tree-ssa-operands.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h ../../master/gcc/../include/hashtab.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h ipa-reference.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-ssa-alias.h langhooks.h incpath.h debug.h except.h ../../master/gcc/../include/hashtab.h vecprim.h vecir.h tree-ssa-sccvn.h real.h output.h ipa-utils.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h c-family/c-pragma.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cppdefault.h flags.h ../../master/gcc/../include/md5.h params.def params.h prefix.h tree-inline.h ipa-prop.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h vec.h statistics.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h tm_p.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h cfgloop.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h vecprim.h double-int.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h emit-rtl.h version.h | tr ' ' '\012' | sort -u`; \
+ srcdirstrip=`echo "../../master/gcc" | sed 's/[].[^$\\*|]/\\\\&/g'`; \
+ for file in $headers; do \
+ if [ -f $file ] ; then \
+@@ -433,13 +433,14 @@
+ mkdir -p -- [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config
+ /usr/bin/install -c -m 644 ../../master/gcc/config/elfos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/elfos.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/glibc-stdint.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/glibc-stdint.h
++/usr/bin/install -c -m 644 ../../master/gcc/config/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/gnu.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/att.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/att.h
+ mkdir -p -- [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386
++/usr/bin/install -c -m 644 ../../master/gcc/config/i386/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/gnu.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386-protos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386-protos.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/linux.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/unix.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/unix.h
+-/usr/bin/install -c -m 644 ../../master/gcc/config/linux-android.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux-android.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/svr4.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/svr4.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/vxworks-dummy.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/vxworks-dummy.h
+@@ -470,12 +471,13 @@
+ /usr/bin/install -c -m 644 ../../master/gcc/config/dbxelf.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/dbxelf.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/elfos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/elfos.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/glibc-stdint.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/glibc-stdint.h
++/usr/bin/install -c -m 644 ../../master/gcc/config/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/gnu.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/att.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/att.h
++/usr/bin/install -c -m 644 ../../master/gcc/config/i386/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/gnu.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386-protos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386-protos.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/linux.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/i386/unix.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/unix.h
+-/usr/bin/install -c -m 644 ../../master/gcc/config/linux-android.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux-android.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/svr4.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/svr4.h
+ /usr/bin/install -c -m 644 ../../master/gcc/config/vxworks-dummy.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/vxworks-dummy.h
+@@ -638,7 +640,6 @@
+ libtool: install: /usr/bin/install -c .libs/liblto_plugin.a [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0/liblto_plugin.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0/liblto_plugin.a
+ libtool: install: ranlib [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0/liblto_plugin.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0
+@@ -789,7 +790,6 @@
+ libtool: install: /usr/bin/install -c .libs/libsupc++.a [...]/hurd/master.build.install/lib/libsupc++.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libsupc++.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libsupc++.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -839,7 +839,6 @@
+ libtool: install: /usr/bin/install -c .libs/libstdc++.a [...]/hurd/master.build.install/lib/libstdc++.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libstdc++.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libstdc++.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1115,9 +1114,6 @@
+ libtool: install: /usr/bin/install -c .libs/libmudflapth.a [...]/hurd/master.build.install/lib/libmudflapth.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libmudflapth.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libmudflapth.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1250,9 +1246,6 @@
+ libtool: install: /usr/bin/install -c .libs/libssp_nonshared.a [...]/hurd/master.build.install/lib/libssp_nonshared.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libssp_nonshared.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libssp_nonshared.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1450,9 +1443,6 @@
+ libtool: install: /usr/bin/install -c .libs/libquadmath.a [...]/hurd/master.build.install/lib/libquadmath.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libquadmath.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libquadmath.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1584,7 +1574,6 @@
+ libtool: install: /usr/bin/install -c .libs/libgfortranbegin.a [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/libgfortranbegin.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/libgfortranbegin.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/libgfortranbegin.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0
+@@ -1617,9 +1606,6 @@
+ libtool: install: /usr/bin/install -c .libs/libgfortran.a [...]/hurd/master.build.install/lib/libgfortran.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgfortran.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libgfortran.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1652,9 +1638,6 @@
+ libtool: install: /usr/bin/install -c .libs/libobjc.a [...]/hurd/master.build.install/lib/libobjc.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libobjc.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libobjc.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -1724,9 +1707,6 @@
+ done; \
+ fi
+ make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libobjc'
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -2048,9 +2028,6 @@
+ libtool: install: /usr/bin/install -c .libs/libffi.a [...]/hurd/master.build.install/lib/libffi.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libffi.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libffi.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -2260,7 +2237,6 @@
+ /bin/bash ../../../libtool --mode=install /usr/bin/install -c libjavamath.la '[...]/hurd/master.build.install/lib/gcj-4.6.0-12'
+ libtool: install: /usr/bin/install -c .libs/libjavamath.so [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjavamath.so
+ libtool: install: /usr/bin/install -c .libs/libjavamath.lai [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjavamath.la
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib/gcj-4.6.0-12
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib/gcj-4.6.0-12
+@@ -2451,14 +2427,13 @@
+ test -z "[...]/hurd/master.build.install/lib/gcj-4.6.0-12" || /bin/mkdir -p "[...]/hurd/master.build.install/lib/gcj-4.6.0-12"
+ /bin/bash ./libtool --mode=install /usr/bin/install -c libjvm.la '[...]/hurd/master.build.install/lib/gcj-4.6.0-12'
+ libtool: install: warning: relinking `libjvm.la'
+-libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
+-libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
++libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
++libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
+ libtool: install: /usr/bin/install -c .libs/libjvm.soT [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.so
+ libtool: install: /usr/bin/install -c .libs/libjvm.lai [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.la
+ libtool: install: /usr/bin/install -c .libs/libjvm.a [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib/gcj-4.6.0-12
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib/gcj-4.6.0-12
+@@ -2532,8 +2507,8 @@
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgcj.so.12.0.0 libgcj.so || { rm -f libgcj.so && ln -s libgcj.so.12.0.0 libgcj.so; }; })
+ libtool: install: /usr/bin/install -c .libs/libgcj.lai [...]/hurd/master.build.install/lib/libgcj.la
+ libtool: install: warning: relinking `libgij.la'
+-libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
+-libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
++libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
++libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
+ libtool: install: /usr/bin/install -c .libs/libgij.so.12.0.0T [...]/hurd/master.build.install/lib/libgij.so.12.0.0
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so.12 || { rm -f libgij.so.12 && ln -s libgij.so.12.0.0 libgij.so.12; }; })
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so || { rm -f libgij.so && ln -s libgij.so.12.0.0 libgij.so; }; })
+@@ -2561,9 +2536,6 @@
+ libtool: install: /usr/bin/install -c .libs/libgcj_bc.a [...]/hurd/master.build.install/lib/libgcj_bc.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgcj_bc.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libgcj_bc.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -2613,8 +2585,8 @@
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgcj.so.12.0.0 libgcj.so || { rm -f libgcj.so && ln -s libgcj.so.12.0.0 libgcj.so; }; })
+ libtool: install: /usr/bin/install -c .libs/libgcj.lai [...]/hurd/master.build.install/lib/libgcj.la
+ libtool: install: warning: relinking `libgij.la'
+-libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
+-libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
++libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
++libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
+ libtool: install: /usr/bin/install -c .libs/libgij.so.12.0.0T [...]/hurd/master.build.install/lib/libgij.so.12.0.0
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so.12 || { rm -f libgij.so.12 && ln -s libgij.so.12.0.0 libgij.so.12; }; })
+ libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so || { rm -f libgij.so && ln -s libgij.so.12.0.0 libgij.so; }; })
+@@ -2642,9 +2614,6 @@
+ libtool: install: /usr/bin/install -c .libs/libgcj_bc.a [...]/hurd/master.build.install/lib/libgcj_bc.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgcj_bc.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libgcj_bc.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -3776,9 +3745,6 @@
+ libtool: install: /usr/bin/install -c .libs/libgomp.a [...]/hurd/master.build.install/lib/libgomp.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgomp.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libgomp.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+-ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
+-
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
diff --git a/open_issues/gcc/testsuite.mdwn b/open_issues/gcc/testsuite.mdwn
deleted file mode 100644
index 3bb1fe3d..00000000
--- a/open_issues/gcc/testsuite.mdwn
+++ /dev/null
@@ -1,182 +0,0 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-[[!tag open_issue_gcc]]
-
-
-# Build
-
-Here's a log of a GCC build run; this is from our [[Git repository's
-5ac39af7792ba0dc363cc199060faf53dfa9dc1a (2010-12-08)
-sources|source_repositories/gcc]], run on kepler.SCHWINGE and grubber.
-
- $ export LC_ALL=C
- $ ../master/configure --prefix="$PWD".install 2>&1 | tee log_build
- [...]
- $ make SHELL=/bin/bash 2>&1 | tee log_build_
- [...]
-
-(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
-harmonized.)
-
-On grubber, this needs roughly 24 hours, and takes up around 2.5 GiB.
-
- $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd/master.build/log_build* | sed -e "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/testsuite/log_build-linux.sed) <(ssh grubber 'cd tmp/gcc/ && cat hurd/master.build/log_build* | sed "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/testsuite/log_build-hurd.sed) > open_issues/gcc/testsuite/log_build-diff
-
-[[log_build-diff]].
-
-
-## Analysis
-
- * [[`checking if gcc static flag -static
- works... no`|glibc_madvise_vs_static_linking]]
-
- * DFP
-
- +configure: WARNING: decimal float is not supported for this target, ignored
-
- ... and later on:
-
- -checking for decimal floating point... bid
- +checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
- +dpd
-
- ... and later on:
-
- -checking whether decimal floating point is supported... yes
- +checking whether decimal floating point is supported... no
- +configure: WARNING: decimal float is not supported for this target, ignored
-
- * `host-linux.c` vs. `host-default.c`
-
- * *fixincludes* stuff
-
- * malloc?
-
- -cat ../../hurd/gcc/config/i386/pmm_malloc.h > mm_malloc.h
- +cat ../../hurd/gcc/config/i386/gmm_malloc.h > mm_malloc.h
-
- * *libgomp*
-
- * `libgomp/config/linux/`, `libgomp/config/linux/x86`
-
- * `-ftls-model=initial-exec -march=i486 -mtune=i686`
-
- * `-static` vs. `dlopen`
-
- -checking whether a statically linked program can dlopen itself... no
- +checking whether a statically linked program can dlopen itself... yes
-
- * ISO/IEC TR 24733
-
- -checking for ISO/IEC TR 24733 ... yes
- +checking for ISO/IEC TR 24733 ... no
-
- * `basic_file.cc`
-
- +basic_file.cc: In member function 'std::streamsize std::__basic_file::showmanyc()':
- +basic_file.cc:344:33: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
-
- * `libtool: link: ar rc .libs/libstdc++.a [...]`
-
- Just different order of object files, or another problem?
-
- * `gcc/gthr-posix.h`
-
- +In file included from ../.././gcc/gthr-default.h:1:0,
- + from [...]/hurd/libobjc/../gcc/gthr.h:162,
- + from [...]/hurd/libobjc/thr.c:43:
- +[...]/hurd/libobjc/../gcc/gthr-posix.h: In function '__gthread_objc_thread_set_priority':
- +[...]/hurd/libobjc/../gcc/gthr-posix.h:384:41: warning: unused parameter 'priority' [-Wunused-parameter]
-
- * `java-signal.h`, `java-signal-aux.h`
-
- -config.status: linking ../../../hurd/libjava/include/i386-signal.h to include/java-signal.h
- -config.status: linking ../../../hurd/libjava/include/i386-signal.h to include/java-signal-aux.h
- +config.status: linking ../../../hurd/libjava/include/default-signal.h to include/java-signal.h
- +config.status: linking ../../../hurd/libjava/include/default-signal.h to include/java-signal-aux.h
-
- * `jni_md.h`
-
- -checking jni_md.h support... yes
- +checking jni_md.h support... configure: WARNING: no
-
- * *default library search path*
-
- -checking for the default library search path... /lib /usr/lib /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/local/lib
- +checking for the default library search path... /lib /usr/lib
-
- * `./classpath/[...]/*.properties`
-
- Just different order of files, or another problem?
-
- * `libjava/gnu/gcj/util/natGCInfo.cc`
-
- +../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:440:1: warning: unused parameter 'name' [-Wunused-parameter]
- +../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:446:1: warning: unused parameter 'name' [-Wunused-parameter]
- +../../../hurd/libjava/gnu/gcj/util/natGCInfo.cc:452:1: warning: unused parameter 'name' [-Wunused-parameter]
-
- * `gnu/java/net/natPlainSocketImpl.cc`
-
- +gnu/java/net/natPlainSocketImpl.cc: In member function 'virtual jint gnu::java::net::PlainSocketImpl::available()':
- +gnu/java/net/natPlainSocketImpl.cc:515:27: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
-
- * `gnu/java/nio/channels/natFileChannelImpl.cc`
-
- +gnu/java/nio/channels/natFileChannelImpl.cc: In member function 'jint gnu::java::nio::channels::FileChannelImpl::available()':
- +gnu/java/nio/channels/natFileChannelImpl.cc:388:20: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
-
- * `libgcj.la`, `.libs/libgcj.a`
-
- Just different order of object files, or another problem?
-
- Is there a pattern that GNU/Hurd hands out the files alphabetically sorted
- where it wouldn't need to ([[!taglink open_issue_hurd]])?
-
- Why does the GNU Hurd's `lib_build_` repeatedly contain a long series
- (several KiB) of NUL (0) characters after the 5319th column in the
- `/bin/bash ./libtool --tag=CXX --mode=link [...] -o libgcj.la [...]`
- command line? Is that only in the log?
-
- * `libjvm.la`, `.libs/libjvm.so`, `libgij.la`, `.libs/libgij.so.12.0.0`
-
- `-Wl,-Bsymbolic` vs. `-Wl,-Bsymbolic-functions`
-
-
-# Install
-
- $ make SHELL=/bin/bash install 2>&1 | tee log_install
- [...]
-
-(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
-harmonized.)
-
-On grubber, this needs roughly 15 minutes, and takes up around 0.7 GiB.
-
- $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-pc-linux-gnu%[ARCH]%g"') <(ssh grubber 'cd tmp/gcc/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-unknown-gnu0\.3%[ARCH]%g"') > open_issues/gcc/testsuite/log_install-diff
-
-[[log_install-diff]].
-
-
-## Analysis
-
- * `libtool: finish`: `ldconfig` is not run for the Hurd.
-
- * `libjvm.la`, `.libs/libjvm.so`, `libgij.la`, `.libs/libgij.so.12.0.0`
-
- `-Wl,-Bsymbolic` vs. `-Wl,-Bsymbolic-functions` (as above)
-
-
-# Testsuite
-
-
-
- $ make SHELL=/bin/bash -k check 2>&1 | tee log_check
- [...]
diff --git a/open_issues/gcc/testsuite/log_build-diff b/open_issues/gcc/testsuite/log_build-diff
deleted file mode 100644
index 777011a3..00000000
--- a/open_issues/gcc/testsuite/log_build-diff
+++ /dev/null
@@ -1,3554 +0,0 @@
---- /dev/fd/63 2010-12-10 08:34:20.938216003 +0100
-+++ /dev/fd/62 2010-12-10 08:34:20.938216003 +0100
-@@ -313,6 +313,7 @@
- checking valgrind.h usability... no
- checking valgrind.h presence... no
- checking for valgrind.h... no
-+configure: WARNING: decimal float is not supported for this target, ignored
- configure: WARNING: fixed-point is not supported for this target, ignored
- checking whether make sets $(MAKE)... yes
- checking for gawk... gawk
-@@ -475,7 +476,6 @@
- Using the following target machine macro files:
- ../../master/gcc/config/vxworks-dummy.h
- ../../master/gcc/config/i386/i386.h
-- ../../master/gcc/config/linux-android.h
- ../../master/gcc/config/i386/unix.h
- ../../master/gcc/config/i386/att.h
- ../../master/gcc/config/dbxelf.h
-@@ -484,7 +484,9 @@
- ../../master/gcc/config/linux.h
- ../../master/gcc/config/glibc-stdint.h
- ../../master/gcc/config/i386/linux.h
--Using host-linux.o for host machine hooks.
-+ ../../master/gcc/config/gnu.h
-+ ../../master/gcc/config/i386/gnu.h
-+Using host-default.o for host machine hooks.
- checking for __cxa_atexit... yes
- checking whether NLS is requested... yes
- checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
-@@ -496,7 +498,7 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
-@@ -512,12 +514,12 @@
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -529,11 +531,11 @@
- checking whether the g++ linker (ld) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
--checking if g++ static flag -static works... yes
-+checking if g++ static flag -static works... no
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (ld) supports shared libraries... yes
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for as... /usr/bin/as
- checking what assembler to use... /usr/bin/as
-@@ -546,7 +548,7 @@
- checking what objdump to use... /usr/bin/objdump
- checking for readelf... /usr/bin/readelf
- checking what readelf to use... /usr/bin/readelf
--checking assembler flags... --32
-+checking assembler flags...
- checking assembler for .balign and .p2align... yes
- checking assembler for .p2align with maximum skip... yes
- checking assembler for .literal16... no
-@@ -675,12 +677,12 @@
- checking for sys/sysinfo.h... yes
- checking for machine/hal_sysinfo.h... no
- checking for sys/table.h... no
--checking for sys/sysctl.h... yes
-+checking for sys/sysctl.h... no
- checking for sys/systemcfg.h... no
- checking for stdint.h... (cached) yes
- checking for stdio_ext.h... yes
- checking for process.h... no
--checking for sys/prctl.h... yes
-+checking for sys/prctl.h... no
- checking for sys/wait.h that is POSIX.1 compatible... yes
- checking whether time.h and sys/time.h may both be included... yes
- checking whether errno must be declared... no
-@@ -750,13 +752,13 @@
- checking for working fork... yes
- checking for working vfork... (cached) yes
- checking for _doprnt... no
--checking for sys_errlist... yes
--checking for sys_nerr... yes
-+checking for sys_errlist... no
-+checking for sys_nerr... no
- checking for sys_siglist... yes
- checking for external symbol _system_configuration... no
- checking for __fsetlocking... yes
- checking for canonicalize_file_name... yes
--checking for dup3... yes
-+checking for dup3... no
- checking for getrusage... yes
- checking for getsysinfo... no
- checking for gettimeofday... (cached) yes
-@@ -771,7 +773,7 @@
- checking for strerror... yes
- checking for strsignal... yes
- checking for sysconf... yes
--checking for sysctl... yes
-+checking for sysctl... no
- checking for sysmp... no
- checking for table... no
- checking for times... yes
-@@ -1111,12 +1113,12 @@
- checking for sys/sysinfo.h... yes
- checking for machine/hal_sysinfo.h... no
- checking for sys/table.h... no
--checking for sys/sysctl.h... yes
-+checking for sys/sysctl.h... no
- checking for sys/systemcfg.h... no
- checking for stdint.h... (cached) yes
- checking for stdio_ext.h... yes
- checking for process.h... no
--checking for sys/prctl.h... yes
-+checking for sys/prctl.h... no
- checking for sys/wait.h that is POSIX.1 compatible... yes
- checking whether time.h and sys/time.h may both be included... yes
- checking whether errno must be declared... no
-@@ -1186,13 +1188,13 @@
- checking for working fork... yes
- checking for working vfork... (cached) yes
- checking for _doprnt... no
--checking for sys_errlist... yes
--checking for sys_nerr... yes
-+checking for sys_errlist... no
-+checking for sys_nerr... no
- checking for sys_siglist... yes
- checking for external symbol _system_configuration... no
- checking for __fsetlocking... yes
- checking for canonicalize_file_name... yes
--checking for dup3... yes
-+checking for dup3... no
- checking for getrusage... yes
- checking for getsysinfo... no
- checking for gettimeofday... (cached) yes
-@@ -1207,7 +1209,7 @@
- checking for strerror... yes
- checking for strsignal... yes
- checking for sysconf... yes
--checking for sysctl... yes
-+checking for sysctl... no
- checking for sysmp... no
- checking for table... no
- checking for times... yes
-@@ -1622,7 +1624,7 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
-@@ -1649,12 +1651,12 @@
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -1969,7 +1971,8 @@
- checking build system type... [ARCH]
- checking host system type... [ARCH]
- checking target system type... [ARCH]
--checking for decimal floating point... bid
-+checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
-+dpd
- checking whether byte ordering is bigendian... no
- configure: updating cache ./config.cache
- configure: creating ./config.status
-@@ -1982,12 +1985,8 @@
- source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
- source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
- source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
--source='../../master/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/bid2dpd_dpd2bid.c
--source='../../master/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee32.c
--source='../../master/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee64.c
--source='../../master/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no gcc -I../../master/libdecnumber -I. -g -fkeep-inline-functions -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee128.c
- rm -f libdecnumber.a
--ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
-+ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
- ranlib libdecnumber.a
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
- make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
-@@ -2047,9 +2046,9 @@
- HEADERS="auto-host.h ansidecl.h" DEFINES="" \
- /bin/bash ../../master/gcc/mkconfig.sh config.h
- TARGET_CPU_DEFAULT="" \
-- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
-+ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SINGLE_LIBC DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
- /bin/bash ../../master/gcc/mkconfig.sh tm.h
--gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
-+gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt > tmp-optionlist
- /bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
- echo timestamp > s-options
- gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
-@@ -2810,8 +2809,7 @@
- ../../master/gcc/config/i386/i386.c: In function 'ix86_handle_fndecl_attribute':
- ../../master/gcc/config/i386/i386.c:29153: warning: unknown conversion type character 'E' in format
- ../../master/gcc/config/i386/i386.c:29153: warning: too many arguments for format
--gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
-- ../../master/gcc/config/host-linux.c
-+gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/host-default.c -o host-default.o
- gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
- gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
- gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
-@@ -2841,7 +2839,7 @@
- gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
- gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
- rm -rf libbackend.a
--ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
-+ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
- ranlib libbackend.a
- build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
- checksum-options > cc1-checksum.c.tmp && \
-@@ -2992,89 +2990,39 @@
- done; \
- fi
- Fixing headers into [...]/hurd/master.build/gcc/include-fixed for [ARCH] target
--Forbidden identifiers: i386 linux unix
-+Forbidden identifiers: MACH i386 unix
- Finding directories and links to directories
- Searching /usr/include/.
- Searching /usr/include/./libpng
-+ Searching /usr/include/./mach/machine
- Searching /usr/include/./c++/4.4.5
- Making symbolic directory links
- Fixing directory /usr/include into [...]/hurd/master.build/gcc/include-fixed
--Applying machine_name to openssl/bn.h
--Fixed: openssl/bn.h
--Applying machine_name to openssl/e_os2.h
--Applying sysv68_string to string.h
--Applying sun_malloc to malloc.h
--Applying pthread_incomplete_struct_argument to pthread.h
--Applying io_quotes_use to sound/asound.h
--Applying io_quotes_use to sound/asequencer.h
--Applying io_quotes_use to sound/emu10k1.h
--Applying glibc_stdint to stdint.h
-+Applying io_quotes_def to bits/ioctls.h
- Applying io_quotes_def to glib-2.0/gio/gmountoperation.h
--Applying io_quotes_use to linux/i2o-dev.h
--Applying io_quotes_use to linux/raw.h
--Applying io_quotes_use to linux/fs.h
--Applying io_quotes_use to linux/spi/spidev.h
--Applying io_quotes_use to linux/gigaset_dev.h
--Applying io_quotes_use to linux/aufs_type.h
--Applying io_quotes_use to linux/mmtimer.h
--Applying io_quotes_use to linux/cm4000_cs.h
--Applying io_quotes_use to linux/phantom.h
--Applying io_quotes_use to linux/ipmi.h
--Applying io_quotes_use to linux/usb/tmc.h
--Applying io_quotes_use to linux/usb/vstusb.h
--Applying io_quotes_use to linux/random.h
--Applying io_quotes_use to linux/if_pppox.h
--Applying io_quotes_use to linux/fd.h
--Applying io_quotes_use to linux/auto_fs4.h
--Applying io_quotes_use to linux/blkpg.h
--Applying io_quotes_use to linux/ppdev.h
--Applying io_quotes_use to linux/input.h
--Applying io_quotes_use to linux/dm-ioctl.h
--Applying io_quotes_use to linux/cciss_ioctl.h
--Applying io_quotes_use to linux/raid/md_u.h
--Applying io_quotes_use to linux/agpgart.h
--Applying io_quotes_use to linux/dn.h
--Applying io_quotes_use to linux/rfkill.h
--Applying io_quotes_use to linux/auto_fs.h
--Applying io_quotes_def to linux/soundcard.h
--Applying io_quotes_def to linux/version.h
--Applying io_quotes_use to linux/atmbr2684.h
--Applying io_quotes_use to linux/nbd.h
--Applying io_quotes_use to linux/uinput.h
--Applying io_quotes_use to linux/reiserfs_fs.h
--Applying io_quotes_use to linux/videotext.h
--Applying io_quotes_use to linux/synclink.h
--Applying io_quotes_use to linux/kvm.h
--Applying machine_name to linux/a.out.h
--Fixed: linux/a.out.h
--Applying io_quotes_def to linux/pci_regs.h
--Applying io_quotes_use to linux/watchdog.h
--Applying io_quotes_def to linux/ppp-comp.h
--Applying io_quotes_use to linux/pktcdvd.h
--Applying io_quotes_use to linux/suspend_ioctls.h
-+Applying glibc_stdint to stdint.h
-+Applying ctrl_quotes_def to readline/chardefs.h
-+Applying sun_malloc to malloc.h
-+Applying machine_name to a.out.h
-+Fixed: a.out.h
-+Applying io_quotes_def to libIDL-2.0/libIDL/IDL.h
-+Applying io_quotes_use to libIDL-2.0/libIDL/IDL.h
-+Applying io_quotes_def to mach/i386/ioccom.h
-+Fixed: mach/i386/ioccom.h
-+Applying ctrl_quotes_def to dialog.h
-+Applying hpux8_bogus_inlines to math.h
- Applying machine_name to X11/Xw32defs.h
- Fixed: X11/Xw32defs.h
--Applying machine_name to freetype2/freetype/config/ftconfig.h
--Fixed: freetype2/freetype/config/ftconfig.h
--Quoted includes in freetype2/freetype/config/ftconfig.h
--Applying io_quotes_use to video/sisfb.h
--Applying ctrl_quotes_def to dialog.h
--Applying io_quotes_def to c++/4.4/parallel/settings.h
-+Applying io_quotes_def to X11/Xmu/Atoms.h
- Applying io_quotes_def to c++/4.4/parallel/multiway_merge.h
--Applying io_quotes_use to sys/raw.h
--Applying io_quotes_use to sys/mount.h
--Applying hpux8_bogus_inlines to math.h
--Applying stdio_va_list_clients to krb5.h
-+Applying io_quotes_def to c++/4.4/parallel/settings.h
-+Applying sysv68_string to string.h
- Applying io_quotes_def to gtk-2.0/gtk/gtkmountoperation.h
--Applying io_quotes_use to rdma/ib_user_mad.h
--Applying io_quotes_use to asm/mtrr.h
--Applying io_quotes_use to mtd/ubi-user.h
--Applying ctrl_quotes_def to readline/chardefs.h
- Cleaning up unneeded directories:
- fixincludes is done
- echo timestamp > stmp-fixinc
- rm -f mm_malloc.h
--cat ../../master/gcc/config/i386/pmm_malloc.h > mm_malloc.h
-+cat ../../master/gcc/config/i386/gmm_malloc.h > mm_malloc.h
- if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
- if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
- for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
-@@ -3223,7 +3171,7 @@
- (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-12-08 --section=7 fsf-funding.pod > doc/fsf-funding.7.T$$ && \
- mv -f doc/fsf-funding.7.T$$ doc/fsf-funding.7) || \
- (rm -f doc/fsf-funding.7.T$$ && exit 1)
--rm gfdl.pod cpp.pod gcov.pod fsf-funding.pod gcc.pod
-+rm gcov.pod gfdl.pod cpp.pod fsf-funding.pod gcc.pod
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
- Configuring stage 1 in ./lto-plugin
- configure: creating cache ./config.cache
-@@ -3259,7 +3207,7 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
-@@ -3286,12 +3234,12 @@
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -3355,7 +3303,8 @@
- checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
- checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
--checking whether decimal floating point is supported... yes
-+checking whether decimal floating point is supported... no
-+configure: WARNING: decimal float is not supported for this target, ignored
- checking whether fixed-point is supported... no
- checking whether assembler supports CFI directives... yes
- checking for __attribute__((visibility("hidden")))... yes
-@@ -3559,136 +3508,6 @@
- -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
- -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../master/libgcc/config/libbid/bid_decimal_globals.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../master/libgcc/config/libbid/bid_decimal_data.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../master/libgcc/config/libbid/bid_binarydecimal.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../master/libgcc/config/libbid/bid_convert_data.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../master/libgcc/config/libbid/_isinfd32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../master/libgcc/config/libbid/_isinfd64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../master/libgcc/config/libbid/_isinfd128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../master/libgcc/config/libbid/bid64_noncomp.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../master/libgcc/config/libbid/bid128_noncomp.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../master/libgcc/config/libbid/bid128_fma.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../master/libgcc/config/libbid/bid_round.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../master/libgcc/config/libbid/bid_from_int.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../master/libgcc/config/libbid/bid64_add.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../master/libgcc/config/libbid/bid128_add.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../master/libgcc/config/libbid/bid64_div.c
--../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
--../../../master/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
--../../../master/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
--../../../master/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../master/libgcc/config/libbid/bid128_div.c
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
--../../../master/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
--../../../master/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
--../../../master/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
--../../../master/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../master/libgcc/config/libbid/bid64_mul.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../master/libgcc/config/libbid/bid128_mul.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../master/libgcc/config/libbid/bid64_compare.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../master/libgcc/config/libbid/bid128_compare.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../master/libgcc/config/libbid/bid128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid64_to_bid128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../master/libgcc/config/libbid/bid64_to_int32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../master/libgcc/config/libbid/bid64_to_int64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../master/libgcc/config/libbid/bid128_to_int32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../master/libgcc/config/libbid/bid128_to_int64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_addsub_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_div_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_mul_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_eq_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ne_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_lt_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_gt_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_le_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ge_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_si.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_di.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_usi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_udi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_si_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_di_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_usi_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_udi_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_sf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_df.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_xf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_tf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sf_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_df_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_xf_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_tf_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_unord_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_addsub_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_div_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_mul_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_eq_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ne_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_lt_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_gt_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_le_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ge_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_si.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_di.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_usi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_udi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_si_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_di_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_usi_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_udi_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_df.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_xf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_tf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_sf_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_df_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_xf_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_tf_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_unord_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_addsub_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_div_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_mul_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_eq_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ne_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_lt_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_gt_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_le_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ge_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_si.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_di.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_usi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_udi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_si_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_di_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_usi_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_udi_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_df.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_xf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_tf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_sf_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_df_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_xf_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_tf_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_unord_td.c
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
-@@ -3745,7 +3564,7 @@
- mv -f morestack.visT morestack.vis
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
- rm -f libgcc.a
--objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
-+objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
- if test -z "$objects"; then \
- echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
-@@ -4050,7 +3869,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -4076,12 +3895,12 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -4252,7 +4071,7 @@
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
- mv -f .deps/affinity.Tpo .deps/affinity.Plo
- /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
--libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
-+libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
- libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
- libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
- libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
-@@ -4516,6 +4335,7 @@
- checking valgrind.h usability... no
- checking valgrind.h presence... no
- checking for valgrind.h... no
-+configure: WARNING: decimal float is not supported for this target, ignored
- configure: WARNING: fixed-point is not supported for this target, ignored
- checking whether make sets $(MAKE)... yes
- checking for gawk... gawk
-@@ -4678,7 +4498,6 @@
- Using the following target machine macro files:
- ../../master/gcc/config/vxworks-dummy.h
- ../../master/gcc/config/i386/i386.h
-- ../../master/gcc/config/linux-android.h
- ../../master/gcc/config/i386/unix.h
- ../../master/gcc/config/i386/att.h
- ../../master/gcc/config/dbxelf.h
-@@ -4687,7 +4506,9 @@
- ../../master/gcc/config/linux.h
- ../../master/gcc/config/glibc-stdint.h
- ../../master/gcc/config/i386/linux.h
--Using host-linux.o for host machine hooks.
-+ ../../master/gcc/config/gnu.h
-+ ../../master/gcc/config/i386/gnu.h
-+Using host-default.o for host machine hooks.
- checking for __cxa_atexit... yes
- checking whether NLS is requested... yes
- checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
-@@ -4699,7 +4520,7 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
-@@ -4715,12 +4536,12 @@
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -4732,11 +4553,11 @@
- checking whether the g++ linker (ld) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
--checking if g++ static flag -static works... yes
-+checking if g++ static flag -static works... no
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (ld) supports shared libraries... yes
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for as... /usr/bin/as
- checking what assembler to use... /usr/bin/as
-@@ -4749,7 +4570,7 @@
- checking what objdump to use... /usr/bin/objdump
- checking for readelf... /usr/bin/readelf
- checking what readelf to use... /usr/bin/readelf
--checking assembler flags... --32
-+checking assembler flags...
- checking assembler for .balign and .p2align... yes
- checking assembler for .p2align with maximum skip... yes
- checking assembler for .literal16... no
-@@ -4878,12 +4699,12 @@
- checking for sys/sysinfo.h... yes
- checking for machine/hal_sysinfo.h... no
- checking for sys/table.h... no
--checking for sys/sysctl.h... yes
-+checking for sys/sysctl.h... no
- checking for sys/systemcfg.h... no
- checking for stdint.h... (cached) yes
- checking for stdio_ext.h... yes
- checking for process.h... no
--checking for sys/prctl.h... yes
-+checking for sys/prctl.h... no
- checking for sys/wait.h that is POSIX.1 compatible... yes
- checking whether time.h and sys/time.h may both be included... yes
- checking whether errno must be declared... no
-@@ -4953,13 +4774,13 @@
- checking for working fork... yes
- checking for working vfork... (cached) yes
- checking for _doprnt... no
--checking for sys_errlist... yes
--checking for sys_nerr... yes
-+checking for sys_errlist... no
-+checking for sys_nerr... no
- checking for sys_siglist... yes
- checking for external symbol _system_configuration... no
- checking for __fsetlocking... yes
- checking for canonicalize_file_name... yes
--checking for dup3... yes
-+checking for dup3... no
- checking for getrusage... yes
- checking for getsysinfo... no
- checking for gettimeofday... (cached) yes
-@@ -4974,7 +4795,7 @@
- checking for strerror... yes
- checking for strsignal... yes
- checking for sysconf... yes
--checking for sysctl... yes
-+checking for sysctl... no
- checking for sysmp... no
- checking for table... no
- checking for times... yes
-@@ -5289,7 +5110,7 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
-@@ -5316,12 +5137,12 @@
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -5636,7 +5457,8 @@
- checking build system type... [ARCH]
- checking host system type... [ARCH]
- checking target system type... [ARCH]
--checking for decimal floating point... bid
-+checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
-+dpd
- checking whether byte ordering is bigendian... no
- configure: updating cache ./config.cache
- configure: creating ./config.status
-@@ -5649,12 +5471,8 @@
- source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
- source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
- source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
--source='../../master/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/bid2dpd_dpd2bid.c
--source='../../master/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee32.c
--source='../../master/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee64.c
--source='../../master/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -gtoggle -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee128.c
- rm -f libdecnumber.a
--ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
-+ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
- ranlib libdecnumber.a
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
- make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
-@@ -5714,9 +5532,9 @@
- HEADERS="auto-host.h ansidecl.h" DEFINES="" \
- /bin/bash ../../master/gcc/mkconfig.sh config.h
- TARGET_CPU_DEFAULT="" \
-- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
-+ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SINGLE_LIBC DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
- /bin/bash ../../master/gcc/mkconfig.sh tm.h
--gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
-+gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt > tmp-optionlist
- /bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
- echo timestamp > s-options
- gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
-@@ -6347,8 +6165,7 @@
- echo timestamp > s-i386-bt
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
- ../../master/gcc/config/i386/i386.c -o i386.o
--[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
-- ../../master/gcc/config/host-linux.c
-+[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/host-default.c -o host-default.o
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
-@@ -6378,7 +6195,7 @@
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -gtoggle -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
- rm -rf libbackend.a
--ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
-+ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
- ranlib libbackend.a
- build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
- checksum-options > cc1-checksum.c.tmp && \
-@@ -6669,7 +6486,7 @@
- make[4]: Leaving directory `/media/data[...]/hurd/master.build/prev-gcc'
- echo timestamp > stmp-fixinc
- rm -f mm_malloc.h
--cat ../../master/gcc/config/i386/pmm_malloc.h > mm_malloc.h
-+cat ../../master/gcc/config/i386/gmm_malloc.h > mm_malloc.h
- if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
- if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
- for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
-@@ -6890,7 +6707,7 @@
- (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-12-08 --section=1 rebuild-gcj-db.pod > doc/rebuild-gcj-db.1.T$$ && \
- mv -f doc/rebuild-gcj-db.1.T$$ doc/rebuild-gcj-db.1) || \
- (rm -f doc/rebuild-gcj-db.1.T$$ && exit 1)
--rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcj.pod gfdl.pod cpp.pod gij.pod gc-analyze.pod gcov.pod gfortran.pod fsf-funding.pod gcc.pod
-+rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcov.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gfortran.pod fsf-funding.pod gcc.pod
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
- Configuring stage 2 in ./lto-plugin
- configure: creating cache ./config.cache
-@@ -6926,7 +6743,7 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
-@@ -6953,12 +6770,12 @@
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -6998,7 +6815,6 @@
- libtool: install: warning: remember to run `libtool --finish [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0'
- make all-am
- make[4]: Entering directory `/media/data[...]/hurd/master.build/lto-plugin'
--make[4]: Nothing to be done for `all-am'.
- make[4]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
- mkdir -p -- [ARCH]/libgcc
-@@ -7022,7 +6838,8 @@
- checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
- checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
--checking whether decimal floating point is supported... yes
-+checking whether decimal floating point is supported... no
-+configure: WARNING: decimal float is not supported for this target, ignored
- checking whether fixed-point is supported... no
- checking whether assembler supports CFI directives... yes
- checking for __attribute__((visibility("hidden")))... yes
-@@ -7226,136 +7043,6 @@
- -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
- -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../master/libgcc/config/libbid/bid_decimal_globals.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../master/libgcc/config/libbid/bid_decimal_data.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../master/libgcc/config/libbid/bid_binarydecimal.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../master/libgcc/config/libbid/bid_convert_data.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../master/libgcc/config/libbid/_isinfd32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../master/libgcc/config/libbid/_isinfd64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../master/libgcc/config/libbid/_isinfd128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../master/libgcc/config/libbid/bid64_noncomp.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../master/libgcc/config/libbid/bid128_noncomp.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../master/libgcc/config/libbid/bid128_fma.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../master/libgcc/config/libbid/bid_round.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../master/libgcc/config/libbid/bid_from_int.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../master/libgcc/config/libbid/bid64_add.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../master/libgcc/config/libbid/bid128_add.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../master/libgcc/config/libbid/bid64_div.c
--../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
--../../../master/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
--../../../master/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
--../../../master/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../master/libgcc/config/libbid/bid128_div.c
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
--../../../master/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
--../../../master/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
--../../../master/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
--../../../master/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../master/libgcc/config/libbid/bid64_mul.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../master/libgcc/config/libbid/bid128_mul.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../master/libgcc/config/libbid/bid64_compare.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../master/libgcc/config/libbid/bid128_compare.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../master/libgcc/config/libbid/bid128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid64_to_bid128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../master/libgcc/config/libbid/bid64_to_int32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../master/libgcc/config/libbid/bid64_to_int64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../master/libgcc/config/libbid/bid128_to_int32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../master/libgcc/config/libbid/bid128_to_int64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_addsub_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_div_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_mul_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_eq_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ne_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_lt_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_gt_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_le_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ge_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_si.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_di.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_usi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_udi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_si_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_di_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_usi_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_udi_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_sf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_df.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_xf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_tf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sf_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_df_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_xf_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_tf_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_unord_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_addsub_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_div_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_mul_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_eq_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ne_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_lt_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_gt_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_le_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ge_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_si.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_di.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_usi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_udi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_si_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_di_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_usi_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_udi_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_df.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_xf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_tf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_sf_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_df_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_xf_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_tf_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_unord_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_addsub_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_div_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_mul_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_eq_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ne_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_lt_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_gt_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_le_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ge_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_si.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_di.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_usi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_udi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_si_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_di_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_usi_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_udi_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_df.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_xf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_tf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_sf_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_df_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_xf_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_tf_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_unord_td.c
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
-@@ -7412,7 +7099,7 @@
- mv -f morestack.visT morestack.vis
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
- rm -f libgcc.a
--objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
-+objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
- if test -z "$objects"; then \
- echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
-@@ -7717,7 +7404,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -7743,12 +7430,12 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -7767,7 +7454,7 @@
- checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for ANSI C header files... (cached) yes
- checking whether time.h and sys/time.h may both be included... yes
-@@ -7930,7 +7617,7 @@
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
- mv -f .deps/affinity.Tpo .deps/affinity.Plo
- /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
--libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
-+libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
- libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
- libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
- libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
-@@ -7984,6 +7671,7 @@
- fi
- make[6]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
- [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L. -Wall -L../libgfortran -fsyntax-only omp_lib.f90
-+:
- make[5]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
- make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libgomp'
-@@ -8195,6 +7883,7 @@
- checking valgrind.h usability... no
- checking valgrind.h presence... no
- checking for valgrind.h... no
-+configure: WARNING: decimal float is not supported for this target, ignored
- configure: WARNING: fixed-point is not supported for this target, ignored
- checking whether make sets $(MAKE)... yes
- checking for gawk... gawk
-@@ -8357,7 +8046,6 @@
- Using the following target machine macro files:
- ../../master/gcc/config/vxworks-dummy.h
- ../../master/gcc/config/i386/i386.h
-- ../../master/gcc/config/linux-android.h
- ../../master/gcc/config/i386/unix.h
- ../../master/gcc/config/i386/att.h
- ../../master/gcc/config/dbxelf.h
-@@ -8366,7 +8054,9 @@
- ../../master/gcc/config/linux.h
- ../../master/gcc/config/glibc-stdint.h
- ../../master/gcc/config/i386/linux.h
--Using host-linux.o for host machine hooks.
-+ ../../master/gcc/config/gnu.h
-+ ../../master/gcc/config/i386/gnu.h
-+Using host-default.o for host machine hooks.
- checking for __cxa_atexit... yes
- checking whether NLS is requested... yes
- checking for catalogs to be installed... be da de el es fi fr id ja nl ru sr sv tr vi zh_CN zh_TW
-@@ -8378,7 +8068,7 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
-@@ -8394,12 +8084,12 @@
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -8411,11 +8101,11 @@
- checking whether the g++ linker (ld) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
--checking if g++ static flag -static works... yes
-+checking if g++ static flag -static works... no
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (ld) supports shared libraries... yes
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for as... /usr/bin/as
- checking what assembler to use... /usr/bin/as
-@@ -8428,7 +8118,7 @@
- checking what objdump to use... /usr/bin/objdump
- checking for readelf... /usr/bin/readelf
- checking what readelf to use... /usr/bin/readelf
--checking assembler flags... --32
-+checking assembler flags...
- checking assembler for .balign and .p2align... yes
- checking assembler for .p2align with maximum skip... yes
- checking assembler for .literal16... no
-@@ -8557,12 +8247,12 @@
- checking for sys/sysinfo.h... yes
- checking for machine/hal_sysinfo.h... no
- checking for sys/table.h... no
--checking for sys/sysctl.h... yes
-+checking for sys/sysctl.h... no
- checking for sys/systemcfg.h... no
- checking for stdint.h... (cached) yes
- checking for stdio_ext.h... yes
- checking for process.h... no
--checking for sys/prctl.h... yes
-+checking for sys/prctl.h... no
- checking for sys/wait.h that is POSIX.1 compatible... yes
- checking whether time.h and sys/time.h may both be included... yes
- checking whether errno must be declared... no
-@@ -8632,13 +8322,13 @@
- checking for working fork... yes
- checking for working vfork... (cached) yes
- checking for _doprnt... no
--checking for sys_errlist... yes
--checking for sys_nerr... yes
-+checking for sys_errlist... no
-+checking for sys_nerr... no
- checking for sys_siglist... yes
- checking for external symbol _system_configuration... no
- checking for __fsetlocking... yes
- checking for canonicalize_file_name... yes
--checking for dup3... yes
-+checking for dup3... no
- checking for getrusage... yes
- checking for getsysinfo... no
- checking for gettimeofday... (cached) yes
-@@ -8653,7 +8343,7 @@
- checking for strerror... yes
- checking for strsignal... yes
- checking for sysconf... yes
--checking for sysctl... yes
-+checking for sysctl... no
- checking for sysmp... no
- checking for table... no
- checking for times... yes
-@@ -8968,7 +8658,7 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
-@@ -8995,12 +8685,12 @@
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -9315,7 +9005,8 @@
- checking build system type... [ARCH]
- checking host system type... [ARCH]
- checking target system type... [ARCH]
--checking for decimal floating point... bid
-+checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
-+dpd
- checking whether byte ordering is bigendian... no
- configure: updating cache ./config.cache
- configure: creating ./config.status
-@@ -9328,12 +9019,8 @@
- source='../../master/[libdecnumber]/decimal32.c' object='decimal32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal32.c
- source='../../master/[libdecnumber]/decimal64.c' object='decimal64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal64.c
- source='../../master/[libdecnumber]/decimal128.c' object='decimal128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/decimal128.c
--source='../../master/[libdecnumber]/bid2dpd_dpd2bid.c' object='bid2dpd_dpd2bid.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/bid2dpd_dpd2bid.c
--source='../../master/[libdecnumber]/host-ieee32.c' object='host-ieee32.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee32.c
--source='../../master/[libdecnumber]/host-ieee64.c' object='host-ieee64.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee64.c
--source='../../master/[libdecnumber]/host-ieee128.c' object='host-ieee128.o' libtool=no [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I../../master/libdecnumber -I. -g -O2 -fomit-frame-pointer -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -Werror -I../../master/libdecnumber -I. -c ../../master/[libdecnumber]/host-ieee128.c
- rm -f libdecnumber.a
--ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
-+ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
- ranlib libdecnumber.a
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/libdecnumber'
- make[3]: Entering directory `/media/data[...]/hurd/master.build/gcc'
-@@ -9393,9 +9080,9 @@
- HEADERS="auto-host.h ansidecl.h" DEFINES="" \
- /bin/bash ../../master/gcc/mkconfig.sh config.h
- TARGET_CPU_DEFAULT="" \
-- HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
-+ HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h" DEFINES="LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 SINGLE_LIBC DEFAULT_LIBC=LIBC_GLIBC ANDROID_DEFAULT=0" \
- /bin/bash ../../master/gcc/mkconfig.sh tm.h
--gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt ../../master/gcc/config/linux.opt ../../master/gcc/config/linux-android.opt > tmp-optionlist
-+gawk -f ../../master/gcc/opt-gather.awk ../../master/gcc/ada/gcc-interface/lang.opt ../../master/gcc/fortran/lang.opt ../../master/gcc/go/lang.opt ../../master/gcc/java/lang.opt ../../master/gcc/lto/lang.opt ../../master/gcc/c-family/c.opt ../../master/gcc/common.opt ../../master/gcc/config/fused-madd.opt ../../master/gcc/config/i386/i386.opt > tmp-optionlist
- /bin/bash ../../master/gcc/../move-if-change tmp-optionlist optionlist
- echo timestamp > s-options
- gawk -f ../../master/gcc/opt-functions.awk -f ../../master/gcc/opth-gen.awk \
-@@ -10026,8 +9713,7 @@
- echo timestamp > s-i386-bt
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
- ../../master/gcc/config/i386/i386.c -o i386.o
--[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber \
-- ../../master/gcc/config/host-linux.c
-+[...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/host-default.c -o host-default.o
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraph.c -o cgraph.o
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphbuild.c -o cgraphbuild.o
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/cgraphunit.c -o cgraphunit.o
-@@ -10057,7 +9743,7 @@
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/tree-nomudflap.c -o tree-nomudflap.o
- [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -g -O2 -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition -Wc++-compat -fno-common -DHAVE_CONFIG_H -I. -I. -I../../master/gcc -I../../master/gcc/. -I../../master/gcc/../include -I../../master/gcc/../libcpp/include -I../../master/gcc/../libdecnumber -I../../master/gcc/../[libdecnumber] -I../libdecnumber ../../master/gcc/varpool.c -o varpool.o
- rm -rf libbackend.a
--ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-linux.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
-+ar rc libbackend.a insn-attrtab.o insn-automata.o insn-emit.o insn-extract.o insn-modes.o insn-opinit.o insn-output.o insn-peep.o insn-preds.o insn-recog.o insn-enums.o ggc-page.o alias.o alloc-pool.o auto-inc-dec.o bb-reorder.o bitmap.o bt-load.o builtins.o caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfgexpand.o cfghooks.o cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o cfgrtl.o combine.o combine-stack-adj.o convert.o coverage.o cse.o cselib.o dbxout.o dbgcnt.o dce.o ddg.o debug.o df-core.o df-problems.o df-scan.o dfp.o diagnostic.o dojump.o dominance.o domwalk.o double-int.o dse.o dwarf2asm.o dwarf2out.o ebitmap.o emit-rtl.o et-forest.o except.o explow.o expmed.o expr.o final.o fixed-value.o fold-const.o function.o fwprop.o gcse.o ggc-common.o gimple.o gimple-iterator.o gimple-fold.o gimple-low.o gimple-pretty-print.o gimplify.o godump.o graph.o graphds.o graphite.o graphite-blocking.o graphite-clast-to-gimple.o graphite-cloog-util.o graphite-dependences.o graphite-flattening.o graphite-interchange.o graphite-poly.o graphite-ppl.o graphite-scop-detection.o graphite-sese-to-poly.o gtype-desc.o haifa-sched.o hooks.o hwint.o ifcvt.o implicit-zee.o init-regs.o input.o integrate.o intl.o ira.o ira-build.o ira-costs.o ira-conflicts.o ira-color.o ira-emit.o ira-lives.o jump.o lambda-code.o lambda-mat.o lambda-trans.o langhooks.o lcm.o lists.o loop-doloop.o loop-init.o loop-invariant.o loop-iv.o loop-unroll.o loop-unswitch.o lower-subreg.o lto-cgraph.o lto-streamer-in.o lto-streamer-out.o lto-section-in.o lto-section-out.o lto-symtab.o lto-opts.o lto-streamer.o lto-compress.o mcf.o mode-switching.o modulo-sched.o omega.o omp-low.o optabs.o options.o opts-common.o opts-global.o opts.o params.o passes.o plugin.o pointer-set.o postreload-gcse.o postreload.o predict.o pretty-print.o print-rtl.o print-tree.o profile.o real.o realmpfr.o recog.o reg-stack.o regcprop.o reginfo.o regmove.o regrename.o regstat.o reload.o reload1.o reorg.o resource.o rtl-error.o rtl.o rtlanal.o rtlhooks.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o sel-sched-ir.o sel-sched-dump.o sel-sched.o sese.o simplify-rtx.o sparseset.o sreal.o stack-ptr-mod.o statistics.o stmt.o stor-layout.o store-motion.o stringpool.o target-globals.o targhooks.o timevar.o toplev.o tracer.o tree-affine.o tree-call-cdce.o tree-cfg.o tree-cfgcleanup.o tree-chrec.o tree-complex.o tree-data-ref.o tree-dfa.o tree-diagnostic.o tree-dump.o tree-eh.o tree-emutls.o tree-if-conv.o tree-into-ssa.o tree-iterator.o tree-loop-distribution.o tree-loop-linear.o tree-nested.o tree-nrv.o tree-object-size.o tree-optimize.o tree-outof-ssa.o tree-parloops.o tree-phinodes.o tree-predcom.o tree-pretty-print.o tree-profile.o tree-scalar-evolution.o tree-sra.o tree-switch-conversion.o tree-ssa-address.o tree-ssa-alias.o tree-ssa-ccp.o tree-ssa-coalesce.o tree-ssa-copy.o tree-ssa-copyrename.o tree-ssa-dce.o tree-ssa-dom.o tree-ssa-dse.o tree-ssa-forwprop.o tree-ssa-ifcombine.o tree-ssa-live.o tree-ssa-loop-ch.o tree-ssa-loop-im.o tree-ssa-loop-ivcanon.o tree-ssa-loop-ivopts.o tree-ssa-loop-manip.o tree-ssa-loop-niter.o tree-ssa-loop-prefetch.o tree-ssa-loop-unswitch.o tree-ssa-loop.o tree-ssa-math-opts.o tree-ssa-operands.o tree-ssa-phiopt.o tree-ssa-phiprop.o tree-ssa-pre.o tree-ssa-propagate.o tree-ssa-reassoc.o tree-ssa-sccvn.o tree-ssa-sink.o tree-ssa-structalias.o tree-ssa-ter.o tree-ssa-threadedge.o tree-ssa-threadupdate.o tree-ssa-uncprop.o tree-ssa-uninit.o tree-ssa.o tree-ssanames.o tree-stdarg.o tree-tailcall.o tree-vect-generic.o tree-vect-patterns.o tree-vect-data-refs.o tree-vect-stmts.o tree-vect-loop.o tree-vect-loop-manip.o tree-vect-slp.o tree-vectorizer.o tree-vrp.o tree.o value-prof.o var-tracking.o varasm.o vec.o version.o vmsdbgout.o web.o xcoffout.o i386.o host-default.o cgraph.o cgraphbuild.o cgraphunit.o cppbuiltin.o cppdefault.o incpath.o ipa-cp.o ipa-split.o ipa-inline.o ipa-prop.o ipa-pure-const.o ipa-reference.o ipa-ref.o ipa-struct-reorg.o ipa-type-escape.o ipa-utils.o ipa.o matrix-reorg.o prefix.o tree-inline.o tree-nomudflap.o varpool.o
- ranlib libbackend.a
- build/genchecksum c-lang.o c-family/stub-objc.o attribs.o c-errors.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-objc-common.o c-parser.o tree-mudflap.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o i386-c.o main.o tree-browser.o libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a \
- checksum-options > cc1-checksum.c.tmp && \
-@@ -10348,7 +10034,7 @@
- make[4]: Leaving directory `/media/data[...]/hurd/master.build/prev-gcc'
- echo timestamp > stmp-fixinc
- rm -f mm_malloc.h
--cat ../../master/gcc/config/i386/pmm_malloc.h > mm_malloc.h
-+cat ../../master/gcc/config/i386/gmm_malloc.h > mm_malloc.h
- if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
- if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
- for file in .. ../../master/gcc/ginclude/float.h ../../master/gcc/ginclude/iso646.h ../../master/gcc/ginclude/stdarg.h ../../master/gcc/ginclude/stdbool.h ../../master/gcc/ginclude/stddef.h ../../master/gcc/ginclude/varargs.h ../../master/gcc/ginclude/stdfix.h ../../master/gcc/config/i386/cpuid.h ../../master/gcc/config/i386/mmintrin.h ../../master/gcc/config/i386/mm3dnow.h ../../master/gcc/config/i386/xmmintrin.h ../../master/gcc/config/i386/emmintrin.h ../../master/gcc/config/i386/pmmintrin.h ../../master/gcc/config/i386/tmmintrin.h ../../master/gcc/config/i386/ammintrin.h ../../master/gcc/config/i386/smmintrin.h ../../master/gcc/config/i386/nmmintrin.h ../../master/gcc/config/i386/bmmintrin.h ../../master/gcc/config/i386/fma4intrin.h ../../master/gcc/config/i386/wmmintrin.h ../../master/gcc/config/i386/immintrin.h ../../master/gcc/config/i386/x86intrin.h ../../master/gcc/config/i386/avxintrin.h ../../master/gcc/config/i386/xopintrin.h ../../master/gcc/config/i386/ia32intrin.h ../../master/gcc/config/i386/cross-stdarg.h ../../master/gcc/config/i386/lwpintrin.h ../../master/gcc/config/i386/popcntintrin.h ../../master/gcc/config/i386/abmintrin.h ../../master/gcc/config/i386/bmiintrin.h ../../master/gcc/config/i386/tbmintrin.h mm_malloc.h; do \
-@@ -10569,7 +10255,7 @@
- (pod2man --center="GNU" --release="gcc-4.6.0" --date=2010-12-08 --section=1 rebuild-gcj-db.pod > doc/rebuild-gcj-db.1.T$$ && \
- mv -f doc/rebuild-gcj-db.1.T$$ doc/rebuild-gcj-db.1) || \
- (rm -f doc/rebuild-gcj-db.1.T$$ && exit 1)
--rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcj.pod gfdl.pod cpp.pod gij.pod gc-analyze.pod gcov.pod gfortran.pod fsf-funding.pod gcc.pod
-+rm gcj-dbtool.pod jcf-dump.pod jv-convert.pod grmic.pod gcov.pod gcj.pod gc-analyze.pod gfdl.pod cpp.pod gij.pod gfortran.pod fsf-funding.pod gcc.pod
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/gcc'
- Configuring stage 3 in ./lto-plugin
- configure: creating cache ./config.cache
-@@ -10605,7 +10291,7 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
-@@ -10632,12 +10318,12 @@
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./prev-gcc/xgcc -B[...]/hurd/master.build/./prev-gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -10677,7 +10363,6 @@
- libtool: install: warning: remember to run `libtool --finish [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0'
- make all-am
- make[4]: Entering directory `/media/data[...]/hurd/master.build/lto-plugin'
--make[4]: Nothing to be done for `all-am'.
- make[4]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/lto-plugin'
- mkdir -p -- [ARCH]/libgcc
-@@ -10701,7 +10386,8 @@
- checking whether [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include accepts -g... yes
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to accept ISO C89... none needed
- checking how to run the C preprocessor... [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -E
--checking whether decimal floating point is supported... yes
-+checking whether decimal floating point is supported... no
-+configure: WARNING: decimal float is not supported for this target, ignored
- checking whether fixed-point is supported... no
- checking whether assembler supports CFI directives... yes
- checking for __attribute__((visibility("hidden")))... yes
-@@ -10905,136 +10591,6 @@
- -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udivmoddi4.o -MT _udivmoddi4.o -MD -MP -MF _udivmoddi4.dep -DL_udivmoddi4 -c ../../../master/libgcc/../gcc/libgcc2.c \
- -fexceptions -fnon-call-exceptions -fvisibility=hidden -DHIDE_EXPORTS
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_globals.o -MT bid_decimal_globals.o -MD -MP -MF bid_decimal_globals.dep -c ../../../master/libgcc/config/libbid/bid_decimal_globals.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_decimal_data.o -MT bid_decimal_data.o -MD -MP -MF bid_decimal_data.dep -c ../../../master/libgcc/config/libbid/bid_decimal_data.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_binarydecimal.o -MT bid_binarydecimal.o -MD -MP -MF bid_binarydecimal.dep -c ../../../master/libgcc/config/libbid/bid_binarydecimal.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_convert_data.o -MT bid_convert_data.o -MD -MP -MF bid_convert_data.dep -c ../../../master/libgcc/config/libbid/bid_convert_data.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd32.o -MT _isinfd32.o -MD -MP -MF _isinfd32.dep -c ../../../master/libgcc/config/libbid/_isinfd32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd64.o -MT _isinfd64.o -MD -MP -MF _isinfd64.dep -c ../../../master/libgcc/config/libbid/_isinfd64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _isinfd128.o -MT _isinfd128.o -MD -MP -MF _isinfd128.dep -c ../../../master/libgcc/config/libbid/_isinfd128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_noncomp.o -MT bid64_noncomp.o -MD -MP -MF bid64_noncomp.dep -c ../../../master/libgcc/config/libbid/bid64_noncomp.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_noncomp.o -MT bid128_noncomp.o -MD -MP -MF bid128_noncomp.dep -c ../../../master/libgcc/config/libbid/bid128_noncomp.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_fma.o -MT bid128_fma.o -MD -MP -MF bid128_fma.dep -c ../../../master/libgcc/config/libbid/bid128_fma.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_round.o -MT bid_round.o -MD -MP -MF bid_round.dep -c ../../../master/libgcc/config/libbid/bid_round.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid_from_int.o -MT bid_from_int.o -MD -MP -MF bid_from_int.dep -c ../../../master/libgcc/config/libbid/bid_from_int.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_add.o -MT bid64_add.o -MD -MP -MF bid64_add.dep -c ../../../master/libgcc/config/libbid/bid64_add.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_add.o -MT bid128_add.o -MD -MP -MF bid128_add.dep -c ../../../master/libgcc/config/libbid/bid128_add.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_div.o -MT bid64_div.o -MD -MP -MF bid64_div.dep -c ../../../master/libgcc/config/libbid/bid64_div.c
--../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64dq_div':
--../../../master/libgcc/config/libbid/bid64_div.c:523:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qd_div':
--../../../master/libgcc/config/libbid/bid64_div.c:937:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid64_div.c: In function '__bid64qq_div':
--../../../master/libgcc/config/libbid/bid64_div.c:1374:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_div.o -MT bid128_div.o -MD -MP -MF bid128_div.dep -c ../../../master/libgcc/config/libbid/bid128_div.c
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128_div':
--../../../master/libgcc/config/libbid/bid128_div.c:39:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dd_div':
--../../../master/libgcc/config/libbid/bid128_div.c:490:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128dq_div':
--../../../master/libgcc/config/libbid/bid128_div.c:949:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--../../../master/libgcc/config/libbid/bid128_div.c: In function '__bid128qd_div':
--../../../master/libgcc/config/libbid/bid128_div.c:1406:51: warning: variable 'Ql' set but not used [-Wunused-but-set-variable]
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_mul.o -MT bid64_mul.o -MD -MP -MF bid64_mul.dep -c ../../../master/libgcc/config/libbid/bid64_mul.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_mul.o -MT bid128_mul.o -MD -MP -MF bid128_mul.dep -c ../../../master/libgcc/config/libbid/bid128_mul.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_compare.o -MT bid64_compare.o -MD -MP -MF bid64_compare.dep -c ../../../master/libgcc/config/libbid/bid64_compare.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_compare.o -MT bid128_compare.o -MD -MP -MF bid128_compare.dep -c ../../../master/libgcc/config/libbid/bid128_compare.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128.o -MT bid128.o -MD -MP -MF bid128.dep -c ../../../master/libgcc/config/libbid/bid128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid64.o -MT bid32_to_bid64.o -MD -MP -MF bid32_to_bid64.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid32_to_bid128.o -MT bid32_to_bid128.o -MD -MP -MF bid32_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid32_to_bid128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_bid128.o -MT bid64_to_bid128.o -MD -MP -MF bid64_to_bid128.dep -c ../../../master/libgcc/config/libbid/bid64_to_bid128.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int32.o -MT bid64_to_int32.o -MD -MP -MF bid64_to_int32.dep -c ../../../master/libgcc/config/libbid/bid64_to_int32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_int64.o -MT bid64_to_int64.o -MD -MP -MF bid64_to_int64.dep -c ../../../master/libgcc/config/libbid/bid64_to_int64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint32.o -MT bid64_to_uint32.o -MD -MP -MF bid64_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid64_to_uint64.o -MT bid64_to_uint64.o -MD -MP -MF bid64_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid64_to_uint64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int32.o -MT bid128_to_int32.o -MD -MP -MF bid128_to_int32.dep -c ../../../master/libgcc/config/libbid/bid128_to_int32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_int64.o -MT bid128_to_int64.o -MD -MP -MF bid128_to_int64.dep -c ../../../master/libgcc/config/libbid/bid128_to_int64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint32.o -MT bid128_to_uint32.o -MD -MP -MF bid128_to_uint32.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint32.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o bid128_to_uint64.o -MT bid128_to_uint64.o -MD -MP -MF bid128_to_uint64.dep -c ../../../master/libgcc/config/libbid/bid128_to_uint64.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_sd.o -MT _addsub_sd.o -MD -MP -MF _addsub_sd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_addsub_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_sd.o -MT _div_sd.o -MD -MP -MF _div_sd.dep -DFINE_GRAINED_LIBRARIES -DL_div_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_div_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_sd.o -MT _mul_sd.o -MD -MP -MF _mul_sd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_mul_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_sd.o -MT _eq_sd.o -MD -MP -MF _eq_sd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_eq_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_sd.o -MT _ne_sd.o -MD -MP -MF _ne_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ne_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_sd.o -MT _lt_sd.o -MD -MP -MF _lt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_lt_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_sd.o -MT _gt_sd.o -MD -MP -MF _gt_sd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_gt_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_sd.o -MT _le_sd.o -MD -MP -MF _le_sd.dep -DFINE_GRAINED_LIBRARIES -DL_le_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_le_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_sd.o -MT _ge_sd.o -MD -MP -MF _ge_sd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_ge_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_si.o -MT _sd_to_si.o -MD -MP -MF _sd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_si -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_si.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_di.o -MT _sd_to_di.o -MD -MP -MF _sd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_di -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_di.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_usi.o -MT _sd_to_usi.o -MD -MP -MF _sd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_usi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_usi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_udi.o -MT _sd_to_udi.o -MD -MP -MF _sd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_udi -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_udi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_sd.o -MT _si_to_sd.o -MD -MP -MF _si_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_si_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_sd.o -MT _di_to_sd.o -MD -MP -MF _di_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_di_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_sd.o -MT _usi_to_sd.o -MD -MP -MF _usi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_usi_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_sd.o -MT _udi_to_sd.o -MD -MP -MF _udi_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_udi_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_sf.o -MT _sd_to_sf.o -MD -MP -MF _sd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_sf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_sf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_df.o -MT _sd_to_df.o -MD -MP -MF _sd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_df -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_df.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_xf.o -MT _sd_to_xf.o -MD -MP -MF _sd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_xf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_xf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_tf.o -MT _sd_to_tf.o -MD -MP -MF _sd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_tf -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_tf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_sd.o -MT _sf_to_sd.o -MD -MP -MF _sf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sf_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_sd.o -MT _df_to_sd.o -MD -MP -MF _df_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_df_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_sd.o -MT _xf_to_sd.o -MD -MP -MF _xf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_xf_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_sd.o -MT _tf_to_sd.o -MD -MP -MF _tf_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_tf_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_dd.o -MT _sd_to_dd.o -MD -MP -MF _sd_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_dd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sd_to_td.o -MT _sd_to_td.o -MD -MP -MF _sd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sd_to_td -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_sd_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_sd.o -MT _unord_sd.o -MD -MP -MF _unord_sd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_sd -DWIDTH=32 -c ../../../master/libgcc/config/libbid/_unord_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_dd.o -MT _addsub_dd.o -MD -MP -MF _addsub_dd.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_addsub_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_dd.o -MT _div_dd.o -MD -MP -MF _div_dd.dep -DFINE_GRAINED_LIBRARIES -DL_div_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_div_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_dd.o -MT _mul_dd.o -MD -MP -MF _mul_dd.dep -DFINE_GRAINED_LIBRARIES -DL_mul_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_mul_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_dd.o -MT _eq_dd.o -MD -MP -MF _eq_dd.dep -DFINE_GRAINED_LIBRARIES -DL_eq_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_eq_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_dd.o -MT _ne_dd.o -MD -MP -MF _ne_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ne_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ne_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_dd.o -MT _lt_dd.o -MD -MP -MF _lt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_lt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_lt_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_dd.o -MT _gt_dd.o -MD -MP -MF _gt_dd.dep -DFINE_GRAINED_LIBRARIES -DL_gt_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_gt_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_dd.o -MT _le_dd.o -MD -MP -MF _le_dd.dep -DFINE_GRAINED_LIBRARIES -DL_le_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_le_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_dd.o -MT _ge_dd.o -MD -MP -MF _ge_dd.dep -DFINE_GRAINED_LIBRARIES -DL_ge_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_ge_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_si.o -MT _dd_to_si.o -MD -MP -MF _dd_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_si -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_si.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_di.o -MT _dd_to_di.o -MD -MP -MF _dd_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_di -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_di.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_usi.o -MT _dd_to_usi.o -MD -MP -MF _dd_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_usi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_usi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_udi.o -MT _dd_to_udi.o -MD -MP -MF _dd_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_udi -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_udi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_dd.o -MT _si_to_dd.o -MD -MP -MF _si_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_si_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_dd.o -MT _di_to_dd.o -MD -MP -MF _di_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_di_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_dd.o -MT _usi_to_dd.o -MD -MP -MF _usi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_usi_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_dd.o -MT _udi_to_dd.o -MD -MP -MF _udi_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_udi_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sf.o -MT _dd_to_sf.o -MD -MP -MF _dd_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_df.o -MT _dd_to_df.o -MD -MP -MF _dd_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_df -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_df.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_xf.o -MT _dd_to_xf.o -MD -MP -MF _dd_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_xf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_xf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_tf.o -MT _dd_to_tf.o -MD -MP -MF _dd_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_tf -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_tf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_dd.o -MT _sf_to_dd.o -MD -MP -MF _sf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_sf_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_dd.o -MT _df_to_dd.o -MD -MP -MF _df_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_df_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_dd.o -MT _xf_to_dd.o -MD -MP -MF _xf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_xf_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_dd.o -MT _tf_to_dd.o -MD -MP -MF _tf_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_tf_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_sd.o -MT _dd_to_sd.o -MD -MP -MF _dd_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_sd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _dd_to_td.o -MT _dd_to_td.o -MD -MP -MF _dd_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_dd_to_td -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_dd_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_dd.o -MT _unord_dd.o -MD -MP -MF _unord_dd.dep -DFINE_GRAINED_LIBRARIES -DL_unord_dd -DWIDTH=64 -c ../../../master/libgcc/config/libbid/_unord_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _addsub_td.o -MT _addsub_td.o -MD -MP -MF _addsub_td.dep -DFINE_GRAINED_LIBRARIES -DL_addsub_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_addsub_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _div_td.o -MT _div_td.o -MD -MP -MF _div_td.dep -DFINE_GRAINED_LIBRARIES -DL_div_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_div_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _mul_td.o -MT _mul_td.o -MD -MP -MF _mul_td.dep -DFINE_GRAINED_LIBRARIES -DL_mul_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_mul_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _eq_td.o -MT _eq_td.o -MD -MP -MF _eq_td.dep -DFINE_GRAINED_LIBRARIES -DL_eq_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_eq_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ne_td.o -MT _ne_td.o -MD -MP -MF _ne_td.dep -DFINE_GRAINED_LIBRARIES -DL_ne_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ne_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _lt_td.o -MT _lt_td.o -MD -MP -MF _lt_td.dep -DFINE_GRAINED_LIBRARIES -DL_lt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_lt_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _gt_td.o -MT _gt_td.o -MD -MP -MF _gt_td.dep -DFINE_GRAINED_LIBRARIES -DL_gt_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_gt_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _le_td.o -MT _le_td.o -MD -MP -MF _le_td.dep -DFINE_GRAINED_LIBRARIES -DL_le_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_le_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _ge_td.o -MT _ge_td.o -MD -MP -MF _ge_td.dep -DFINE_GRAINED_LIBRARIES -DL_ge_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_ge_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_si.o -MT _td_to_si.o -MD -MP -MF _td_to_si.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_si -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_si.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_di.o -MT _td_to_di.o -MD -MP -MF _td_to_di.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_di -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_di.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_usi.o -MT _td_to_usi.o -MD -MP -MF _td_to_usi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_usi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_usi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_udi.o -MT _td_to_udi.o -MD -MP -MF _td_to_udi.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_udi -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_udi.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _si_to_td.o -MT _si_to_td.o -MD -MP -MF _si_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_si_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_si_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _di_to_td.o -MT _di_to_td.o -MD -MP -MF _di_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_di_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_di_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _usi_to_td.o -MT _usi_to_td.o -MD -MP -MF _usi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_usi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_usi_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _udi_to_td.o -MT _udi_to_td.o -MD -MP -MF _udi_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_udi_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_udi_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sf.o -MT _td_to_sf.o -MD -MP -MF _td_to_sf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_df.o -MT _td_to_df.o -MD -MP -MF _td_to_df.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_df -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_df.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_xf.o -MT _td_to_xf.o -MD -MP -MF _td_to_xf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_xf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_xf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_tf.o -MT _td_to_tf.o -MD -MP -MF _td_to_tf.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_tf -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_tf.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _sf_to_td.o -MT _sf_to_td.o -MD -MP -MF _sf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_sf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_sf_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _df_to_td.o -MT _df_to_td.o -MD -MP -MF _df_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_df_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_df_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _xf_to_td.o -MT _xf_to_td.o -MD -MP -MF _xf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_xf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_xf_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _tf_to_td.o -MT _tf_to_td.o -MD -MP -MF _tf_to_td.dep -DFINE_GRAINED_LIBRARIES -DL_tf_to_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_tf_to_td.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_sd.o -MT _td_to_sd.o -MD -MP -MF _td_to_sd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_sd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_sd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _td_to_dd.o -MT _td_to_dd.o -MD -MP -MF _td_to_dd.dep -DFINE_GRAINED_LIBRARIES -DL_td_to_dd -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_td_to_dd.c
--[...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o _unord_td.o -MT _unord_td.o -MD -MP -MF _unord_td.dep -DFINE_GRAINED_LIBRARIES -DL_unord_td -DWIDTH=128 -c ../../../master/libgcc/config/libbid/_unord_td.c
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o addtf3.o -MT addtf3.o -MD -MP -MF addtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/addtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -Wno-missing-prototypes -Wno-type-limits -o divtf3.o -MT divtf3.o -MD -MP -MF divtf3.dep -fexceptions -c ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c -fvisibility=hidden -DHIDE_EXPORTS
- ../../../master/libgcc/../gcc/config/soft-fp/divtf3.c: In function '__divtf3':
-@@ -11091,7 +10647,7 @@
- mv -f morestack.visT morestack.vis
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -o morestack.o -MT morestack.o -MD -MP -MF morestack.dep -c -xassembler-with-cpp -include morestack.vis ../../../master/libgcc/config/i386/morestack.S
- rm -f libgcc.a
--objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o bid_decimal_globals.o bid_decimal_data.o bid_binarydecimal.o bid_convert_data.o _isinfd32.o _isinfd64.o _isinfd128.o bid64_noncomp.o bid128_noncomp.o bid128_fma.o bid_round.o bid_from_int.o bid64_add.o bid128_add.o bid64_div.o bid128_div.o bid64_mul.o bid128_mul.o bid64_compare.o bid128_compare.o bid128.o bid32_to_bid64.o bid32_to_bid128.o bid64_to_bid128.o bid64_to_int32.o bid64_to_int64.o bid64_to_uint32.o bid64_to_uint64.o bid128_to_int32.o bid128_to_int64.o bid128_to_uint32.o bid128_to_uint64.o _addsub_sd.o _div_sd.o _mul_sd.o _eq_sd.o _ne_sd.o _lt_sd.o _gt_sd.o _le_sd.o _ge_sd.o _sd_to_si.o _sd_to_di.o _sd_to_usi.o _sd_to_udi.o _si_to_sd.o _di_to_sd.o _usi_to_sd.o _udi_to_sd.o _sd_to_sf.o _sd_to_df.o _sd_to_xf.o _sd_to_tf.o _sf_to_sd.o _df_to_sd.o _xf_to_sd.o _tf_to_sd.o _sd_to_dd.o _sd_to_td.o _unord_sd.o _addsub_dd.o _div_dd.o _mul_dd.o _eq_dd.o _ne_dd.o _lt_dd.o _gt_dd.o _le_dd.o _ge_dd.o _dd_to_si.o _dd_to_di.o _dd_to_usi.o _dd_to_udi.o _si_to_dd.o _di_to_dd.o _usi_to_dd.o _udi_to_dd.o _dd_to_sf.o _dd_to_df.o _dd_to_xf.o _dd_to_tf.o _sf_to_dd.o _df_to_dd.o _xf_to_dd.o _tf_to_dd.o _dd_to_sd.o _dd_to_td.o _unord_dd.o _addsub_td.o _div_td.o _mul_td.o _eq_td.o _ne_td.o _lt_td.o _gt_td.o _le_td.o _ge_td.o _td_to_si.o _td_to_di.o _td_to_usi.o _td_to_udi.o _si_to_td.o _di_to_td.o _usi_to_td.o _udi_to_td.o _td_to_sf.o _td_to_df.o _td_to_xf.o _td_to_tf.o _sf_to_td.o _df_to_td.o _xf_to_td.o _tf_to_td.o _td_to_sd.o _td_to_dd.o _unord_td.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
-+objects="_muldi3.o _negdi2.o _lshrdi3.o _ashldi3.o _ashrdi3.o _cmpdi2.o _ucmpdi2.o _clear_cache.o _enable_execute_stack.o _trampoline.o __main.o _absvsi2.o _absvdi2.o _addvsi3.o _addvdi3.o _subvsi3.o _subvdi3.o _mulvsi3.o _mulvdi3.o _negvsi2.o _negvdi2.o _ctors.o _ffssi2.o _ffsdi2.o _clz.o _clzsi2.o _clzdi2.o _ctzsi2.o _ctzdi2.o _popcount_tab.o _popcountsi2.o _popcountdi2.o _paritysi2.o _paritydi2.o _powisf2.o _powidf2.o _powixf2.o _powitf2.o _mulsc3.o _muldc3.o _mulxc3.o _multc3.o _divsc3.o _divdc3.o _divxc3.o _divtc3.o _bswapsi2.o _bswapdi2.o _fixunssfsi.o _fixunsdfsi.o _fixunsxfsi.o _fixsfdi.o _fixdfdi.o _fixxfdi.o _fixunssfdi.o _fixunsdfdi.o _fixunsxfdi.o _floatdisf.o _floatdidf.o _floatdixf.o _floatundisf.o _floatundidf.o _floatundixf.o _eprintf.o __gcc_bcmp.o _divdi3.o _moddi3.o _udivdi3.o _umoddi3.o _udiv_w_sdiv.o _udivmoddi4.o addtf3.o divtf3.o eqtf2.o getf2.o letf2.o multf3.o negtf2.o subtf3.o unordtf2.o fixtfsi.o fixunstfsi.o floatsitf.o floatunsitf.o fixtfdi.o fixunstfdi.o floatditf.o floatunditf.o extendsftf2.o extenddftf2.o extendxftf2.o trunctfsf2.o trunctfdf2.o trunctfxf2.o tf-signs.o generic-morestack.o generic-morestack-thread.o morestack.o"; \
- if test -z "$objects"; then \
- echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -g -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -I. -I. -I../.././gcc -I../../../master/libgcc -I../../../master/libgcc/. -I../../../master/libgcc/../gcc -I../../../master/libgcc/../include -DHAVE_CC_TLS -DUSE_TLS -fvisibility=hidden -DHIDE_EXPORTS -c eh_dummy.c \
-@@ -11396,7 +10952,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -11422,12 +10978,12 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -11446,7 +11002,7 @@
- checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for ANSI C header files... (cached) yes
- checking whether time.h and sys/time.h may both be included... yes
-@@ -11609,7 +11165,7 @@
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libgomp -I../../../master/libgomp/config/posix -I../../../master/libgomp -Wall -pthread -Werror -g -O2 -MT affinity.lo -MD -MP -MF .deps/affinity.Tpo -c ../../../master/libgomp/config/[SYSDEP]/affinity.c -o affinity.o >/dev/null 2>&1
- mv -f .deps/affinity.Tpo .deps/affinity.Plo
- /bin/bash ./libtool --tag CC --mode=link [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -Wall -Werror -Wc,-pthread -g -O2 -Wl,-O1 -o libgomp.la -version-info 1:0:0 -Wl,--version-script,../../../master/libgomp/libgomp.map -rpath [...]/hurd/master.build.install/lib alloc.lo barrier.lo critical.lo env.lo error.lo iter.lo iter_ull.lo loop.lo loop_ull.lo ordered.lo parallel.lo sections.lo single.lo task.lo team.lo work.lo lock.lo mutex.lo proc.lo sem.lo bar.lo ptrlock.lo time.lo fortran.lo affinity.lo -lrt
--libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -march=i486 -mtune=i686 -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
-+libtool: link: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared .libs/alloc.o .libs/barrier.o .libs/critical.o .libs/env.o .libs/error.o .libs/iter.o .libs/iter_ull.o .libs/loop.o .libs/loop_ull.o .libs/ordered.o .libs/parallel.o .libs/sections.o .libs/single.o .libs/task.o .libs/team.o .libs/work.o .libs/lock.o .libs/mutex.o .libs/proc.o .libs/sem.o .libs/bar.o .libs/ptrlock.o .libs/time.o .libs/fortran.o .libs/affinity.o -lrt -pthread -Wl,-O1 -Wl,--version-script -Wl,../../../master/libgomp/libgomp.map -Wl,-soname -Wl,libgomp.so.1 -o .libs/libgomp.so.1.0.0
- libtool: link: (cd ".libs" && rm -f "libgomp.so.1" && ln -s "libgomp.so.1.0.0" "libgomp.so.1")
- libtool: link: (cd ".libs" && rm -f "libgomp.so" && ln -s "libgomp.so.1.0.0" "libgomp.so")
- libtool: link: ar rc .libs/libgomp.a alloc.o barrier.o critical.o env.o error.o iter.o iter_ull.o loop.o loop_ull.o ordered.o parallel.o sections.o single.o task.o team.o work.o lock.o mutex.o proc.o sem.o bar.o ptrlock.o time.o fortran.o affinity.o
-@@ -11675,8 +11231,8 @@
- make[3]: Leaving directory `/media/data[...]/hurd/master.build'
- Comparing stages 2 and 3
- warning: gcc/cc1-checksum.o differs
--warning: gcc/cc1obj-checksum.o differs
- warning: gcc/cc1plus-checksum.o differs
-+warning: gcc/cc1obj-checksum.o differs
- Comparison successful.
- if false; then \
- rm -rf stage2-*; \
-@@ -11850,7 +11406,7 @@
- checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -11875,19 +11431,19 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for shl_load... no
- checking for shl_load in -ldld... no
- checking for dlopen... no
- checking for dlopen in -ldl... yes
- checking whether a program can dlopen itself... yes
--checking whether a statically linked program can dlopen itself... no
-+checking whether a statically linked program can dlopen itself... yes
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
-@@ -11898,11 +11454,11 @@
- checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for exception model to use... call frame
- checking for compiler with PCH support... yes
-@@ -11912,7 +11468,7 @@
- checking for atomic builtins for short... yes
- checking for atomic builtins for int... yes
- checking for atomic builtins for long long... yes
--checking for ISO/IEC TR 24733 ... yes
-+checking for ISO/IEC TR 24733 ... no
- checking for g++ that supports -ffunction-sections -fdata-sections... yes
- checking for underlying I/O to use... stdio
- checking for C locale to use... gnu
-@@ -11949,8 +11505,8 @@
- checking for additional debug build... no
- checking for parallel mode support... yes
- checking for extra compiler flags for building...
--checking for EOWNERDEAD... yes
--checking for ENOTRECOVERABLE... yes
-+checking for EOWNERDEAD... no
-+checking for ENOTRECOVERABLE... no
- checking for ENOLINK... yes
- checking for EPROTO... yes
- checking for ENODATA... yes
-@@ -12201,7 +11757,7 @@
- checking for sys/resource.h... (cached) yes
- checking for RLIMIT_DATA... yes
- checking for RLIMIT_RSS... yes
--checking for RLIMIT_VMEM... no
-+checking for RLIMIT_VMEM... yes
- checking for RLIMIT_AS... yes
- checking for RLIMIT_FSIZE... yes
- checking for testsuite resource limits support... yes
-@@ -12347,12 +11903,12 @@
- checking for sys/sysinfo.h... yes
- checking for machine/hal_sysinfo.h... no
- checking for sys/table.h... no
--checking for sys/sysctl.h... yes
-+checking for sys/sysctl.h... no
- checking for sys/systemcfg.h... no
- checking for stdint.h... (cached) yes
- checking for stdio_ext.h... yes
- checking for process.h... no
--checking for sys/prctl.h... yes
-+checking for sys/prctl.h... no
- checking for sys/wait.h that is POSIX.1 compatible... yes
- checking whether time.h and sys/time.h may both be included... yes
- checking whether errno must be declared... no
-@@ -12422,13 +11978,13 @@
- checking for working fork... yes
- checking for working vfork... (cached) yes
- checking for _doprnt... no
--checking for sys_errlist... yes
--checking for sys_nerr... yes
-+checking for sys_errlist... no
-+checking for sys_nerr... no
- checking for sys_siglist... yes
- checking for external symbol _system_configuration... no
- checking for __fsetlocking... yes
- checking for canonicalize_file_name... yes
--checking for dup3... yes
-+checking for dup3... no
- checking for getrusage... yes
- checking for getsysinfo... no
- checking for gettimeofday... (cached) yes
-@@ -12443,7 +11999,7 @@
- checking for strerror... yes
- checking for strsignal... yes
- checking for sysconf... yes
--checking for sysctl... yes
-+checking for sysctl... no
- checking for sysmp... no
- checking for table... no
- checking for times... yes
-@@ -12482,6 +12038,10 @@
- mkdir pic; \
- else true; fi
- touch stamp-picdir
-+CONFIG_FILES= CONFIG_HEADERS=config.h:../../../master/libiberty/config.in /bin/bash ./config.status
-+config.status: creating config.h
-+config.status: config.h is unchanged
-+config.status: executing default commands
- if [ x"" != x ]; then \
- [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -c -DHAVE_CONFIG_H -g -O2 -I. -I../../../master/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../master/libiberty/regex.c -o pic/regex.o; \
- else true; fi
-@@ -13099,6 +12659,8 @@
- ln -s [...]/hurd/master/libstdc++-v3/config/io/basic_file_stdio.cc ./basic_file.cc || true
- /bin/bash ../libtool --tag CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o basic_file.lo basic_file.cc
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -fPIC -DPIC -o .libs/basic_file.o
-+basic_file.cc: In member function 'std::streamsize std::__basic_file::showmanyc()':
-+basic_file.cc:345:33: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c basic_file.cc -o basic_file.o >/dev/null 2>&1
- ln -s [...]/hurd/master/libstdc++-v3/config/locale/gnu/c_locale.cc ./c++locale.cc || true
- /bin/bash ../libtool --tag CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -O2 -D_GNU_SOURCE -c -o c++locale.lo c++locale.cc
-@@ -13131,7 +12693,7 @@
- libtool: link: (cd ".libs" && rm -f "libstdc++.so.6" && ln -s "libstdc++.so.6.0.15" "libstdc++.so.6")
- libtool: link: (cd ".libs" && rm -f "libstdc++.so" && ln -s "libstdc++.so.6.0.15" "libstdc++.so")
- libtool: link: (cd .libs/libstdc++.lax/libsupc++convenience.a && ar x "[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/../libsupc++/.libs/libsupc++convenience.a")
--libtool: link: ar rc .libs/libstdc++.a atomic.o bitmap_allocator.o pool_allocator.o mt_allocator.o codecvt.o compatibility.o compatibility-c++0x.o compatibility-debug_list.o compatibility-list.o complex_io.o ctype.o debug.o functexcept.o globals_io.o hash_c++0x.o hash_tr1.o hashtable_c++0x.o hashtable_tr1.o ios.o ios_failure.o ios_init.o ios_locale.o limits.o list.o debug_list.o locale.o locale_init.o locale_facets.o localename.o math_stubs_float.o math_stubs_long_double.o stdexcept.o strstream.o system_error.o tree.o allocator-inst.o concept-inst.o fstream-inst.o ext-inst.o ios-inst.o iostream-inst.o istream-inst.o istream.o locale-inst.o misc-inst.o ostream-inst.o sstream-inst.o streambuf-inst.o streambuf.o string-inst.o valarray-inst.o wlocale-inst.o wstring-inst.o mutex.o condition_variable.o chrono.o thread.o future.o atomicity.o codecvt_members.o collate_members.o ctype_members.o messages_members.o monetary_members.o numeric_members.o time_members.o basic_file.o c++locale.o parallel_list.o parallel_settings.o compatibility-parallel_list.o .libs/libstdc++.lax/libsupc++convenience.a/new_opv.o .libs/libstdc++.lax/libsupc++convenience.a/si_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/del_op.o .libs/libstdc++.lax/libsupc++convenience.a/eh_globals.o .libs/libstdc++.lax/libsupc++convenience.a/enum_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/bad_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/eh_call.o .libs/libstdc++.lax/libsupc++convenience.a/vterminate.o .libs/libstdc++.lax/libsupc++convenience.a/function_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/cp-demangle.o .libs/libstdc++.lax/libsupc++convenience.a/atexit_arm.o .libs/libstdc++.lax/libsupc++convenience.a/eh_throw.o .libs/libstdc++.lax/libsupc++convenience.a/eh_terminate.o .libs/libstdc++.lax/libsupc++convenience.a/guard.o .libs/libstdc++.lax/libsupc++convenience.a/eh_catch.o .libs/libstdc++.lax/libsupc++convenience.a/fundamental_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/hash_bytes.o .libs/libstdc++.lax/libsupc++convenience.a/del_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo.o .libs/libstdc++.lax/libsupc++convenience.a/new_handler.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo2.o .libs/libstdc++.lax/libsupc++convenience.a/pointer_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_ptr.o .libs/libstdc++.lax/libsupc++convenience.a/pmem_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/vec.o .libs/libstdc++.lax/libsupc++convenience.a/eh_arm.o .libs/libstdc++.lax/libsupc++convenience.a/class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_type.o .libs/libstdc++.lax/libsupc++convenience.a/eh_unex_handler.o .libs/libstdc++.lax/libsupc++convenience.a/del_opv.o .libs/libstdc++.lax/libsupc++convenience.a/eh_personality.o .libs/libstdc++.lax/libsupc++convenience.a/pbase_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/eh_aux_runtime.o .libs/libstdc++.lax/libsupc++convenience.a/eh_term_handler.o .libs/libstdc++.lax/libsupc++convenience.a/array_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/new_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/del_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/vmi_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/new_op.o .libs/libstdc++.lax/libsupc++convenience.a/bad_cast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_exception.o .libs/libstdc++.lax/libsupc++convenience.a/bad_typeid.o .libs/libstdc++.lax/libsupc++convenience.a/dyncast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/new_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/pure.o
-+libtool: link: ar rc .libs/libstdc++.a atomic.o bitmap_allocator.o pool_allocator.o mt_allocator.o codecvt.o compatibility.o compatibility-c++0x.o compatibility-debug_list.o compatibility-list.o complex_io.o ctype.o debug.o functexcept.o globals_io.o hash_c++0x.o hash_tr1.o hashtable_c++0x.o hashtable_tr1.o ios.o ios_failure.o ios_init.o ios_locale.o limits.o list.o debug_list.o locale.o locale_init.o locale_facets.o localename.o math_stubs_float.o math_stubs_long_double.o stdexcept.o strstream.o system_error.o tree.o allocator-inst.o concept-inst.o fstream-inst.o ext-inst.o ios-inst.o iostream-inst.o istream-inst.o istream.o locale-inst.o misc-inst.o ostream-inst.o sstream-inst.o streambuf-inst.o streambuf.o string-inst.o valarray-inst.o wlocale-inst.o wstring-inst.o mutex.o condition_variable.o chrono.o thread.o future.o atomicity.o codecvt_members.o collate_members.o ctype_members.o messages_members.o monetary_members.o numeric_members.o time_members.o basic_file.o c++locale.o parallel_list.o parallel_settings.o compatibility-parallel_list.o .libs/libstdc++.lax/libsupc++convenience.a/array_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/atexit_arm.o .libs/libstdc++.lax/libsupc++convenience.a/bad_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/bad_cast.o .libs/libstdc++.lax/libsupc++convenience.a/bad_typeid.o .libs/libstdc++.lax/libsupc++convenience.a/class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/del_op.o .libs/libstdc++.lax/libsupc++convenience.a/del_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/del_opv.o .libs/libstdc++.lax/libsupc++convenience.a/del_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/dyncast.o .libs/libstdc++.lax/libsupc++convenience.a/eh_alloc.o .libs/libstdc++.lax/libsupc++convenience.a/eh_arm.o .libs/libstdc++.lax/libsupc++convenience.a/eh_aux_runtime.o .libs/libstdc++.lax/libsupc++convenience.a/eh_call.o .libs/libstdc++.lax/libsupc++convenience.a/eh_catch.o .libs/libstdc++.lax/libsupc++convenience.a/eh_exception.o .libs/libstdc++.lax/libsupc++convenience.a/eh_globals.o .libs/libstdc++.lax/libsupc++convenience.a/eh_personality.o .libs/libstdc++.lax/libsupc++convenience.a/eh_ptr.o .libs/libstdc++.lax/libsupc++convenience.a/eh_term_handler.o .libs/libstdc++.lax/libsupc++convenience.a/eh_terminate.o .libs/libstdc++.lax/libsupc++convenience.a/eh_throw.o .libs/libstdc++.lax/libsupc++convenience.a/eh_type.o .libs/libstdc++.lax/libsupc++convenience.a/eh_unex_handler.o .libs/libstdc++.lax/libsupc++convenience.a/enum_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/function_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/fundamental_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/guard.o .libs/libstdc++.lax/libsupc++convenience.a/hash_bytes.o .libs/libstdc++.lax/libsupc++convenience.a/new_handler.o .libs/libstdc++.lax/libsupc++convenience.a/new_op.o .libs/libstdc++.lax/libsupc++convenience.a/new_opnt.o .libs/libstdc++.lax/libsupc++convenience.a/new_opv.o .libs/libstdc++.lax/libsupc++convenience.a/new_opvnt.o .libs/libstdc++.lax/libsupc++convenience.a/pbase_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pmem_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pointer_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/pure.o .libs/libstdc++.lax/libsupc++convenience.a/si_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo.o .libs/libstdc++.lax/libsupc++convenience.a/tinfo2.o .libs/libstdc++.lax/libsupc++convenience.a/vec.o .libs/libstdc++.lax/libsupc++convenience.a/vmi_class_type_info.o .libs/libstdc++.lax/libsupc++convenience.a/vterminate.o .libs/libstdc++.lax/libsupc++convenience.a/cp-demangle.o
- libtool: link: ranlib .libs/libstdc++.a
- libtool: link: rm -fr .libs/libstdc++.lax
- libtool: link: ( cd ".libs" && rm -f "libstdc++.la" && ln -s "../libstdc++.la" "libstdc++.la" )
-@@ -13351,7 +12913,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -13366,19 +12928,19 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for shl_load... no
- checking for shl_load in -ldld... no
- checking for dlopen... no
- checking for dlopen in -ldl... yes
- checking whether a program can dlopen itself... yes
--checking whether a statically linked program can dlopen itself... no
-+checking whether a statically linked program can dlopen itself... yes
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
-@@ -13592,7 +13154,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -13607,12 +13169,12 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -13792,7 +13354,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -13818,12 +13380,12 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -14315,7 +13877,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -14341,19 +13903,19 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for shl_load... no
- checking for shl_load in -ldld... no
- checking for dlopen... no
- checking for dlopen in -ldl... yes
- checking whether a program can dlopen itself... yes
--checking whether a statically linked program can dlopen itself... no
-+checking whether a statically linked program can dlopen itself... yes
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
-@@ -14370,7 +13932,7 @@
- checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/gfortran -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether the GNU Fortran compiler is working... yes
- checking for special C compiler options needed for large files... no
-@@ -17113,7 +16675,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -17139,12 +16701,12 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -17156,11 +16718,11 @@
- checking whether the [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking for [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/g++ -B[...]/hurd/master.build/./gcc/ -nostdinc++ -nostdinc++ -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include/[ARCH] -I[...]/hurd/master.build/[ARCH]/libstdc++-v3/include -I[...]/hurd/master/libstdc++-v3/libsupc++ -I[...]/hurd/master/libstdc++-v3/include/backward -I[...]/hurd/master/libstdc++-v3/testsuite/util -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for thread model used by GCC... posix
- checking for dlopen in -ldl... yes
-@@ -17217,7 +16779,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -17244,12 +16806,12 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -17561,6 +17123,11 @@
- -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include \
- -o thr.lo
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/thr.c -c -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -fPIC -DPIC -o .libs/thr.o
-+In file included from ../.././gcc/gthr-default.h:1:0,
-+ from [...]/hurd/master/libobjc/../gcc/gthr.h:162,
-+ from [...]/hurd/master/libobjc/thr.c:43:
-+[...]/hurd/master/libobjc/../gcc/gthr-posix.h: In function '__gthread_objc_thread_set_priority':
-+[...]/hurd/master/libobjc/../gcc/gthr-posix.h:384:41: warning: unused parameter 'priority' [-Wunused-parameter]
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/thr.c -c -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -o thr.o >/dev/null 2>&1
- /bin/bash ./libtool --mode=compile [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include [...]/hurd/master/libobjc/exception.c -c \
- -I. -I[...]/hurd/master/libobjc -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions -I[...]/hurd/master/libobjc/../gcc -I[...]/hurd/master/libobjc/../gcc/config -I../.././gcc -I[...]/hurd/master/libobjc/../include -fexceptions -Wno-deprecated-declarations \
-@@ -17660,7 +17227,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -17686,12 +17253,12 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -17936,7 +17503,7 @@
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -17962,12 +17529,12 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -18026,13 +17593,13 @@
- checking for [ARCH]-dlltool... dlltool
- checking for gawk... (cached) gawk
- checking for jar... jar
--checking for zip... /usr/bin/zip
-+checking for zip... no
- checking for unzip... /usr/bin/unzip
- checking whether to enable maintainer-specific portions of Makefiles... no
- [ARCH]
- checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
- checking if the GNU linker ([...]/hurd/master.build/./gcc/collect-ld) supports -Bsymbolic-functions... yes
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking which variable specifies run-time library path... LD_LIBRARY_PATH
- checking how to print strings... printf
- checking for a sed that does not truncate output... /bin/sed
-@@ -18043,7 +17610,7 @@
- checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... BSD nm
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... -r
-@@ -18069,19 +17636,19 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for shl_load... no
- checking for shl_load in -ldld... no
- checking for dlopen... no
- checking for dlopen in -ldl... yes
- checking whether a program can dlopen itself... yes
--checking whether a statically linked program can dlopen itself... no
-+checking whether a statically linked program can dlopen itself... yes
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
-@@ -18092,11 +17659,11 @@
- checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for [ARCH]-gcj... [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include
- checking dependency style of [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include ... gcc3
-@@ -18105,7 +17672,7 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC works... yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
-@@ -18158,8 +17725,8 @@
- checking sys/resource.h presence... yes
- checking for sys/resource.h... yes
- checking for dladdr in -ldl... yes
--checking for /proc/self/exe... yes
--checking for /proc/self/maps... yes
-+checking for /proc/self/exe... no
-+checking for /proc/self/maps... no
- checking for ld used by GCC... [...]/hurd/master.build/./gcc/collect-ld
- checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... (cached) yes
- checking for shared library run path origin... done
-@@ -18295,8 +17862,8 @@
- config.status: linking ../../../master/libjava/sysdep/i386/locks.h to sysdep/locks.h
- config.status: linking ../../../master/libjava/sysdep/generic/backtrace.h to sysdep/backtrace.h
- config.status: linking ../../../master/libjava/sysdep/descriptor-n.h to sysdep/descriptor.h
--config.status: linking ../../../master/libjava/include/i386-signal.h to include/java-signal.h
--config.status: linking ../../../master/libjava/include/i386-signal.h to include/java-signal-aux.h
-+config.status: linking ../../../master/libjava/include/default-signal.h to include/java-signal.h
-+config.status: linking ../../../master/libjava/include/default-signal.h to include/java-signal-aux.h
- config.status: executing default-1 commands
- Adding multilib support to Makefile in ../../../master/libjava
- multidirs=
-@@ -18356,7 +17923,7 @@
- checking if the linker ([...]/hurd/master.build/./gcc/collect-ld) is GNU ld... (cached) yes
- checking for BSD- or MS-compatible name lister (nm)... (cached) [...]/hurd/master.build/./gcc/nm
- checking the name lister ([...]/hurd/master.build/./gcc/nm) interface... (cached) BSD nm
--checking the maximum length of command line arguments... (cached) 805306365
-+checking the maximum length of command line arguments... (cached) -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for [...]/hurd/master.build/./gcc/collect-ld option to reload object files... (cached) -r
-@@ -18371,12 +17938,12 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -fno-rtti -fno-exceptions... (cached) no
- checking for [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
--checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) no
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... (cached) no
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -18399,11 +17966,11 @@
- checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking for [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include option to produce PIC... -fPIC -DPIC
- checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include PIC flag -fPIC -DPIC works... (cached) yes
--checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) yes
-+checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include static flag -static works... (cached) no
- checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking if [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
--checking dynamic linker characteristics... (cached) GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking __attribute__((,,))... yes
- checking __attribute__((unused))... yes
-@@ -18414,9 +17981,9 @@
- checking for sys/types.h... (cached) yes
- checking for sys/config.h... (cached) no
- checking for sys/ioctl.h... (cached) yes
--checking asm/ioctls.h usability... yes
--checking asm/ioctls.h presence... yes
--checking for asm/ioctls.h... yes
-+checking asm/ioctls.h usability... no
-+checking asm/ioctls.h presence... no
-+checking for asm/ioctls.h... no
- checking for inttypes.h... (cached) yes
- checking for stdint.h... (cached) yes
- checking utime.h usability... yes
-@@ -18439,9 +18006,9 @@
- checking sys/event.h usability... no
- checking sys/event.h presence... no
- checking for sys/event.h... no
--checking sys/epoll.h usability... yes
--checking sys/epoll.h presence... yes
--checking for sys/epoll.h... yes
-+checking sys/epoll.h usability... no
-+checking sys/epoll.h presence... no
-+checking for sys/epoll.h... no
- checking for ifaddrs.h... (cached) yes
- checking netinet/in_systm.h usability... yes
- checking netinet/in_systm.h presence... yes
-@@ -18498,9 +18065,9 @@
- checking for statvfs... yes
- checking for mmap... (cached) yes
- checking for munmap... yes
--checking for mincore... yes
--checking for msync... yes
--checking for madvise... yes
-+checking for mincore... no
-+checking for msync... no
-+checking for madvise... no
- checking for getpagesize... yes
- checking for sysconf... yes
- checking for lstat... (cached) yes
-@@ -18511,7 +18078,7 @@
- checking for getifaddrs... (cached) yes
- checking for kqueue... no
- checking for kevent... no
--checking for epoll_create... yes
-+checking for epoll_create... no
- checking for getloadavg... yes
- checking for magic_open in -lmagic... no
- checking whether struct sockaddr_in6 is in netinet/in.h... yes
-@@ -18536,13 +18103,13 @@
- checking gmp.h usability... yes
- checking gmp.h presence... yes
- checking for gmp.h... yes
--checking jni_md.h support... yes
-+checking jni_md.h support... configure: WARNING: no
- checking whether to enable maintainer-specific portions of Makefiles... no
- checking for mkdir... /bin/mkdir
- checking for cp... /bin/cp
- checking for date... /bin/date
- checking for find... /usr/bin/find
--checking for zip... (cached) /usr/bin/zip
-+checking for zip... (cached) no
- checking for a jar-like tool... trying fastjar, gjar and jar
- checking for fastjar... /usr/bin/fastjar
- checking whether to regenerate parsers with jay... no
-@@ -18679,7 +18246,7 @@
- checking for stdint.h... (cached) yes
- checking for unistd.h... (cached) yes
- checking for dlfcn.h... (cached) yes
--checking the maximum length of command line arguments... (cached) 805306365
-+checking the maximum length of command line arguments... (cached) -1
- checking command to parse [...]/hurd/master.build/./gcc/nm output from [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include object... (cached) ok
- checking for objdir... (cached) .libs
- checking for [ARCH]-ar... (cached) ar
-@@ -18692,7 +18259,7 @@
- checking if [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include supports -c -o file.o... (cached) yes
- checking whether the [...]/hurd/master.build/./gcc/xgcc -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include linker ([...]/hurd/master.build/./gcc/collect-ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -18703,7 +18270,7 @@
- checking for library containing opendir... none required
- checking which extension is used for loadable modules... .so
- checking which variable specifies run-time library path... (cached) LD_LIBRARY_PATH
--checking for the default library search path... /lib /usr/lib /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/local/lib
-+checking for the default library search path... /lib /usr/lib
- checking for objdir... .libs
- checking whether libtool supports -dlopen/-dlpreopen... yes
- checking for shl_load... (cached) no
-@@ -18925,14 +18492,12 @@
- make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
- make all-am
- make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
--make[4]: Nothing to be done for `all-am'.
- make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/gcj'
- Making all in include
- make[3]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
- make all-am
- make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
--make[4]: Nothing to be done for `all-am'.
- make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/include'
- Making all in classpath
-@@ -18948,705 +18513,705 @@
- Adding java source files from VM directory [...]/hurd/master.build/[ARCH]/libjava
- Adding generated files in builddir '..'.
- touch compile-classes
--./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties
--./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
--./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties
--./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties
--./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties
--./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties
--./classpath/tools/resource/sun/rmi/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/sun/rmi/rmic/messages.properties
--./classpath/tools/resource/com/sun/tools/javac/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/com/sun/tools/javac/messages.properties
--./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties
--./classpath/resource/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog_de.properties
--./classpath/resource/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties
-+./classpath/resource/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/font/fonts.properties
-+./classpath/resource/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/gtk/font.properties
-+./classpath/resource/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/fonts.properties
-+./classpath/resource/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/xfonts.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_en_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_wo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_to.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk_SK.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_UY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_JO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties
--./classpath/resource/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_my.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_YE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_SV.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv_LV.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_LB.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca_ES.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_LU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_af.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_TN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZW.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_af.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_MA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he_IL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ssy.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_fi_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi_FI.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is_IS.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr_SY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_en_MP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MP.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_SE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_syr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro_RO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl_GL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_da.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ig.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_am.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_DJ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gaa.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_se_FI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_AR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_rw.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Arab.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nso.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kaj.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_my.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kfo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_GR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_CA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha_Arab.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_GB.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_NZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_trv.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_DE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IE.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_BE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_DO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_Hant.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ny.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_da.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk_KZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lo_LA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_ES.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_MY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_Arab.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kam.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_be_BY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ak.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th_TH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mk.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kpe.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sk.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_is.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko_KR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_PT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_th.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_st.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_AT.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ta_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_to.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ti_ER.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy_GB.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_BE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ug.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ga_IE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az_Cyrl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_id_ID.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tig_ER.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_wal_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ko.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv_MV.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_JM.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_IT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fi.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk_UA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_VE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_MX.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cch.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_DZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_iu.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mr_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zu.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hi.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_BE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw_GB.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Arab.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_SO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sq_AL.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl_ES.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sl_SI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_RU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ha.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_NA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ku_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_IN.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lv.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_si.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km_KH.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dv.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_st.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ee.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_CH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ii.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ss.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cop.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_SG.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_de_LI.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gu_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_am.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_am.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kcg.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_be.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_be.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_byn_ER.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_DJ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_da_DK.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tg.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PK.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ky.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bg_BG.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_af_ZA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cy.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw_US.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eu_ES.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fil.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_si.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt_BR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mt_MT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_EC.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv_GB.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz_Latn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_GT.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hu_HU.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ia.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PE.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AS.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_vi.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_SY.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_TZ.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_NI.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_dz_BT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_az.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_xh.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tr_TR.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_CL.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_bs.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ca.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Dsrt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gez_ER.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nb_NO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_tt_RU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_or.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fo_FO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ur.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_MH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_TT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_km.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_he.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_eo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru_UA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw_KE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_cs_CZ.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_BW.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fur.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl_PL.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_mn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sw.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sv_FI.properties
- ./classpath/resource/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_US.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kw.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pl.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_zh.properties
--./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
--./classpath/resource/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/gtk/font.properties
--./classpath/resource/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/fonts.properties
--./classpath/resource/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/peer/x/xfonts.properties
--./classpath/resource/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/awt/font/fonts.properties
--./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_PH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ps_AF.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uk.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ka.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_BO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_as.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_AU.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_lt_LT.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_uz.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_HN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_te_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_so_KE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_gv.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_Shaw.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_haw.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_el_CY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pa.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_HK.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ln.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ne.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fr_CA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ja_JP.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sr_Latn.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ro.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nl_NL.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_yo.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PY.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kok.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ar_QA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_VI.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ve.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_ZA.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en_UM.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_it_CH.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_et_EE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_om_KE.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ts.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_nn_NO.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kn_IN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_sid_ET.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_en.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_kk.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_IR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_aa_ER.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ms_BN.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ru.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_ml.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_pt.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_es_PR.properties
-+./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/locale/LocaleInformation_fa_AF.properties
- ./classpath/resource/gnu/java/util/regex/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle.properties
- ./classpath/resource/gnu/java/util/regex/MessagesBundle_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_fr.properties
--./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties
--./classpath/resource/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/org/ietf/jgss/MessagesBundle.properties
-+./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/java/util/regex/MessagesBundle_it.properties
-+./classpath/resource/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog.properties
-+./classpath/resource/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/print/PrinterDialog_de.properties
-+./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/gnu/javax/security/auth/callback/MessagesBundle.properties
- ./classpath/resource/java/text/metazones.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/text/metazones.properties
- ./classpath/resource/java/util/iso4217.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/iso4217.properties
--./classpath/resource/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/weeks.properties
- ./classpath/resource/java/util/logging/logging.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/logging/logging.properties
--./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties
--./classpath/lib/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog_de.properties
--./classpath/lib/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties
-+./classpath/resource/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/java/util/weeks.properties
-+./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/javax/imageio/plugins/jpeg/MessagesBundle.properties
-+./classpath/resource/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/resource/org/ietf/jgss/MessagesBundle.properties
-+./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/external/asm/org/objectweb/asm/optimizer/shrink.properties
-+./classpath/tools/resource/com/sun/tools/javac/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/com/sun/tools/javac/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/common/Messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
-+./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jar/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties
-+./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties
-+./classpath/tools/resource/sun/rmi/rmic/messages.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/tools/resource/sun/rmi/rmic/messages.properties
-+./classpath/lib/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/font/fonts.properties
-+./classpath/lib/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/gtk/font.properties
-+./classpath/lib/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/fonts.properties
-+./classpath/lib/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/xfonts.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_US.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_wo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties
--./classpath/lib/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_my.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_ca_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca_ES.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_tr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_LB.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_YE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_to.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk_SK.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_UY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_JO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_SV.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv_LV.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_LU.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_af.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MT.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_am_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_am_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he_IL.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_TN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZW.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_MA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ssy.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_fi_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi_FI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is_IS.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr_SY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_MP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MP.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_SE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_syr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_id.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro_RO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_AR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_rw.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_el.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_my.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_my.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kfo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_om.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_GR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_CA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_nl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha_Arab.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_US_POSIX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_US_POSIX.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl_GL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GB.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NZ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BZ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hr.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ny.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_da.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_se.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_NA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_kok_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk_KZ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo_LA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_ES.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_Arab.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kam.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mk.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_bg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_te.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ig.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sk.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_is.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_is.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_PT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_th.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_ME_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_st.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_et.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_AT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ti_ER.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy_GB.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sa.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tig_ER.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv_MV.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_VE.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_es_MX.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_MX.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cch.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_DZ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_iu.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_SO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sq_AL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ha.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_am.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_am.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kcg.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_be.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_gl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_DJ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gaa.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_MY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kaj.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ii.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zu.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_se_FI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Arab.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fil.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_AF_Arab.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_si.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt_BR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt_MT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_EC.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv_GB.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_az.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_xh.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_tr_TR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tr_TR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gl_ES.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_GU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nso.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gez_ER.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb_NO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt_RU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_or.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_MH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_as_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hi_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_RU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_DO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_trv.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_DE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_Hant.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_BE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be_BY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_km.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_he.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_he.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_eo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eo.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ak.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ko_KR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_th_TH.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_BE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru_UA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cs_CZ.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_BW.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_BW.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_SG_Hans.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kpe.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sl_SI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ta_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_to.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_to.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_so.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_wal.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mr.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fo_FO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fur.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_pl_PL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl_PL.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_BE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_HK_Hant.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ug.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_KE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_or_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ga_IE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gu_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_az_Cyrl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_id_ID.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu_ES.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_JM.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_CH.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_IT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fi.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk_UA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sv_FI.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_PH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PH.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uk.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ka.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_es_BO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_BO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nb.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw_GB.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Arab.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_TT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_NA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_mt.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_as.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_as.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AU.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lt_LT.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_uz.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_HN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_te_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_so_KE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_gv.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Shaw.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_el_CY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_el_CY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_GT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ur.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ku_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_IN.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ET.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Cyrl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_lv.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_si.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_si.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_TW_Hant.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_km_KH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pa.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_HK.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_ne.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ne.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dv.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ps_AF.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_st.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_st.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fr_CA.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_Latn.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ro.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nl_NL.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_yo.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PY.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kok.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_en_VI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_VI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_eu.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ee.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ss.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cop.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_SG.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_de_LI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_be.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_be.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_MO_Hant.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_byn_ER.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sr_RS_Latn.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_DJ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_da_DK.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tg.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_PK.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ve.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_ZA.properties
- ./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_tt.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ky.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bg_BG.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_af_ZA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_cy.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh_CN_Hans.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_haw_US.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hu_HU.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_QA.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ia.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PE.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_AS.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_vi.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ar_SY.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sw_TZ.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_NI.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ja_JP.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_dz_BT.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_CL.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_bs.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ca.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ln.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_Dsrt.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_US.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kw.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pl.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_zh.properties
--./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties
--./classpath/lib/gnu/java/awt/peer/gtk/font.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/gtk/font.properties
--./classpath/lib/gnu/java/awt/peer/x/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/fonts.properties
--./classpath/lib/gnu/java/awt/peer/x/xfonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/peer/x/xfonts.properties
--./classpath/lib/gnu/java/awt/font/fonts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/awt/font/fonts.properties
--./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en_UM.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_it_CH.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_et_EE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_om_KE.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ts.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_nn_NO.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kn_IN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_sid_ET.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_en.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_en.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_kk.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_IR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_aa_ER.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ms_BN.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ru.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_ml.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_pt.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_es_PR.properties
-+./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/locale/LocaleInformation_fa_AF.properties
- ./classpath/lib/gnu/java/util/regex/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle.properties
- ./classpath/lib/gnu/java/util/regex/MessagesBundle_fr.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_fr.properties
--./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties
--./classpath/lib/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/org/ietf/jgss/MessagesBundle.properties
-+./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/java/util/regex/MessagesBundle_it.properties
-+./classpath/lib/gnu/javax/print/PrinterDialog.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog.properties
-+./classpath/lib/gnu/javax/print/PrinterDialog_de.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/print/PrinterDialog_de.properties
-+./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/gnu/javax/security/auth/callback/MessagesBundle.properties
- ./classpath/lib/java/text/metazones.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/text/metazones.properties
- ./classpath/lib/java/util/iso4217.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/iso4217.properties
--./classpath/lib/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/weeks.properties
- ./classpath/lib/java/util/logging/logging.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/logging/logging.properties
-+./classpath/lib/java/util/weeks.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/java/util/weeks.properties
-+./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/javax/imageio/plugins/jpeg/MessagesBundle.properties
-+./classpath/lib/org/ietf/jgss/MessagesBundle.properties [...]/hurd/master.build/[ARCH]/libjava/classpath/lib/./classpath/lib/org/ietf/jgss/MessagesBundle.properties
- touch resources
- make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/lib'
- Making all in doc
-@@ -19769,7 +19334,6 @@
- make[4]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
- make all-am
- make[5]: Entering directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
--make[5]: Nothing to be done for `all-am'.
- make[5]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
- make[4]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libjava/classpath/include'
- Making all in native
-@@ -19998,30 +19562,30 @@
- echo -n > vm-tools.lst; \
- fi
- cat classes.lst asm.lst vm-tools.lst > all-classes.lst
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties classes/gnu/classpath/tools/orbd/messages.properties
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/jar/messages.properties classes/gnu/classpath/tools/jar/messages.properties
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties classes/gnu/classpath/tools/serialver/messages.properties
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties classes/gnu/classpath/tools/tnameserv/messages.properties
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties classes/gnu/classpath/tools/rmid/messages.properties
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties classes/gnu/classpath/tools/keytool/messages.properties
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties classes/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties classes/gnu/classpath/tools/appletviewer/messages.properties
- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/common/Messages.properties classes/gnu/classpath/tools/common/Messages.properties
- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties classes/gnu/classpath/tools/getopt/Messages.properties
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties classes/gnu/classpath/tools/native2ascii/messages.properties
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/appletviewer/messages.properties classes/gnu/classpath/tools/appletviewer/messages.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties classes/gnu/classpath/tools/gjdoc/htmldoclet/HtmlDoclet.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/jar/messages.properties classes/gnu/classpath/tools/jar/messages.properties
- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/jarsigner/messages.properties classes/gnu/classpath/tools/jarsigner/messages.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/keytool/messages.properties classes/gnu/classpath/tools/keytool/messages.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/native2ascii/messages.properties classes/gnu/classpath/tools/native2ascii/messages.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/orbd/messages.properties classes/gnu/classpath/tools/orbd/messages.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties classes/gnu/classpath/tools/rmic/messages.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav classes/gnu/classpath/tools/rmic/templates/ImplTie.jav
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav classes/gnu/classpath/tools/rmic/templates/Stub.jav
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav classes/gnu/classpath/tools/rmic/templates/StubMethod.jav
- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav classes/gnu/classpath/tools/rmic/templates/Stub_12.jav
- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12Method.jav classes/gnu/classpath/tools/rmic/templates/Stub_12Method.jav
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav classes/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav
- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Tie.jav classes/gnu/classpath/tools/rmic/templates/Tie.jav
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav classes/gnu/classpath/tools/rmic/templates/Stub_12.jav
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav classes/gnu/classpath/tools/rmic/templates/Stub.jav
- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethod.jav classes/gnu/classpath/tools/rmic/templates/TieMethod.jav
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav classes/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav classes/gnu/classpath/tools/rmic/templates/ImplTie.jav
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav classes/gnu/classpath/tools/rmic/templates/StubMethod.jav
-- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/messages.properties classes/gnu/classpath/tools/rmic/messages.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav classes/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmid/messages.properties classes/gnu/classpath/tools/rmid/messages.properties
- cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/rmiregistry/messages.properties classes/gnu/classpath/tools/rmiregistry/messages.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/serialver/messages.properties classes/gnu/classpath/tools/serialver/messages.properties
-+ cp ../../../../../master/libjava/classpath/tools/resource/gnu/classpath/tools/tnameserv/messages.properties classes/gnu/classpath/tools/tnameserv/messages.properties
- cp ../../../../../master/libjava/classpath/tools/resource/com/sun/tools/javac/messages.properties classes/com/sun/tools/javac/messages.properties
- cp ../../../../../master/libjava/classpath/tools/resource/sun/rmi/rmic/messages.properties classes/sun/rmi/rmic/messages.properties
- cp -pR ../../../../../master/libjava/classpath/tools/asm .
-@@ -20297,6 +19861,9 @@
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF $depbase.Tpo -c -o gnu/gcj/util/natGCInfo.lo ../../../master/libjava/gnu/gcj/util/natGCInfo.cc &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../master/libjava/gnu/gcj/util/natGCInfo.cc -fPIC -DPIC -o gnu/gcj/util/.libs/natGCInfo.o
-+../../../master/libjava/gnu/gcj/util/natGCInfo.cc:440:1: warning: unused parameter 'name' [-Wunused-parameter]
-+../../../master/libjava/gnu/gcj/util/natGCInfo.cc:446:1: warning: unused parameter 'name' [-Wunused-parameter]
-+../../../master/libjava/gnu/gcj/util/natGCInfo.cc:452:1: warning: unused parameter 'name' [-Wunused-parameter]
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/gcj/util/natGCInfo.lo -MD -MP -MF gnu/gcj/util/.deps/natGCInfo.Tpo -c ../../../master/libjava/gnu/gcj/util/natGCInfo.cc -o gnu/gcj/util/natGCInfo.o >/dev/null 2>&1
- depbase=`echo gnu/java/lang/natMainThread.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/lang/natMainThread.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/lang/natMainThread.lo ../../../master/libjava/gnu/java/lang/natMainThread.cc &&\
-@@ -20357,6 +19924,8 @@
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/natPlainSocketImpl.lo gnu/java/net/natPlainSocketImpl.cc &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -fPIC -DPIC -o gnu/java/net/.libs/natPlainSocketImpl.o
-+gnu/java/net/natPlainSocketImpl.cc: In member function 'virtual jint gnu::java::net::PlainSocketImpl::available()':
-+gnu/java/net/natPlainSocketImpl.cc:515:27: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/natPlainSocketImpl.lo -MD -MP -MF gnu/java/net/.deps/natPlainSocketImpl.Tpo -c gnu/java/net/natPlainSocketImpl.cc -o gnu/java/net/natPlainSocketImpl.o >/dev/null 2>&1
- depbase=`echo gnu/java/net/protocol/core/natCoreInputStream.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/net/protocol/core/natCoreInputStream.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/net/protocol/core/natCoreInputStream.lo ../../../master/libjava/gnu/java/net/protocol/core/natCoreInputStream.cc &&\
-@@ -20387,6 +19956,8 @@
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/nio/channels/natFileChannelImpl.cc &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -fPIC -DPIC -o gnu/java/nio/channels/.libs/natFileChannelImpl.o
-+gnu/java/nio/channels/natFileChannelImpl.cc: In member function 'jint gnu::java::nio::channels::FileChannelImpl::available()':
-+gnu/java/nio/channels/natFileChannelImpl.cc:388:20: warning: enumeral and non-enumeral type in conditional expression [enabled by default]
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gnu/java/nio/channels/natFileChannelImpl.lo -MD -MP -MF gnu/java/nio/channels/.deps/natFileChannelImpl.Tpo -c gnu/java/nio/channels/natFileChannelImpl.cc -o gnu/java/nio/channels/natFileChannelImpl.o >/dev/null 2>&1
- depbase=`echo gnu/java/security/jce/prng/natVMSecureRandom.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ./libtool --tag=CXX --mode=compile [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -MT gnu/java/security/jce/prng/natVMSecureRandom.lo -MD -MP -MF $depbase.Tpo -c -o gnu/java/security/jce/prng/natVMSecureRandom.lo gnu/java/security/jce/prng/natVMSecureRandom.cc &&\
-@@ -23362,8 +22933,7 @@
- /bin/bash ./libtool --tag=GCJ --mode=compile [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c -o org-xml.lo @org-xml.list
- libtool: compile: [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -fPIC -o .libs/org-xml.o
- libtool: compile: [...]/hurd/master.build/./gcc/gcj -B[...]/hurd/master.build/[ARCH]/libjava/ -B[...]/hurd/master.build/./gcc/ -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootclasspath=../../../master/libjava/classpath/lib --encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -g -O2 -fsource-filename=[...]/hurd/master.build/[ARCH]/libjava/classpath/lib/classes -fjni -findirect-dispatch -fno-indirect-classes -c @org-xml.list -o org-xml.o >/dev/null 2>&1
--/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L[...]/hurd/master.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd/master.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -rpath [...]/hurd/master.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu/java/security/jce/hash.lo gnu/java/security/jce/prng.lo gnu/java/security/jce/sig.lo gnu/java/security/key.lo gnu/java/security/key/dss.lo gnu/java/security/key/rsa.lo gnu/java/security/pkcs.lo gnu/java/security/prng.lo gnu/java/security/provider.lo gnu/java/security/sig.lo gnu/java/security/sig/dss.lo gnu/java/security/sig/rsa.lo gnu/java/security/util.lo gnu/java/security/x509.lo gnu/java/security/x509/ext.lo gnu/java/text.lo gnu/java/util.lo gnu/java/util/jar.lo gnu/java/util/prefs.lo gnu/java/util/regex.lo gnu/javax/activation/viewers.lo gnu/javax/crypto.lo gnu/javax/crypto/assembly.lo gnu/javax/crypto/cipher.lo gnu/javax/crypto/jce.lo gnu/javax/crypto/jce/cipher.lo gnu/javax/crypto/jce/key.lo gnu/javax/crypto/jce/keyring.lo gnu/javax/crypto/jce/mac.lo gnu/javax/crypto/jce/params.lo gnu/javax/crypto/jce/prng.lo gnu/javax/crypto/jce/sig.lo gnu/javax/crypto/jce/spec.lo gnu/javax/crypto/key.lo gnu/javax/crypto/key/dh.lo gnu/javax/crypto/key/srp6.lo gnu/javax/crypto/keyring.lo gnu/javax/crypto/kwa.lo gnu/javax/crypto/mac.lo gnu/javax/crypto/mode.lo gnu/javax/crypto/pad.lo gnu/javax/crypto/prng.lo gnu/javax/crypto/sasl.lo gnu/javax/crypto/sasl/anonymous.lo gnu/javax/crypto/sasl/crammd5.lo gnu/javax/crypto/sasl/plain.lo gnu/javax/crypto/sasl/srp.lo gnu/javax/imageio.lo gnu/javax/imageio/bmp.lo gnu/javax/imageio/gif.lo gnu/javax/imageio/jpeg.lo gnu/javax/imageio/png.lo gnu/javax/naming/giop.lo gnu/javax/naming/ictxImpl/trans.lo gnu/javax/naming/jndi/url/corbaname.lo gnu/javax/naming/jndi/url/rmi.lo gnu/javax/net/ssl.lo gnu/javax/net/ssl/provider.lo gnu/javax/print.lo gnu/javax/print/ipp.lo gnu/javax/print/ipp/attribute.lo gnu/javax/print/ipp/attribute/defaults.lo gnu/javax/print/ipp/attribute/job.lo gnu/javax/print/ipp/attribute/printer.lo gnu/javax/print/ipp/attribute/supported.lo gnu/javax/security/auth.lo gnu/javax/security/auth/callback.lo gnu/javax/security/auth/login.lo gnu/javax/sound.lo gnu/javax/sound/sampled/AU.lo gnu/javax/sound/sampled/WAV.lo gnu/javax/swing/plaf/gnu.lo gnu/javax/swing/plaf/metal.lo gnu/javax/swing/text/html.lo gnu/javax/swing/text/html/css.lo gnu/javax/swing/text/html/parser/GnuParserDelegator.lo gnu/javax/swing/text/html/parser/HTML_401F.lo gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.lo gnu/javax/swing/text/html/parser/gnuDTD.lo gnu/javax/swing/text/html/parser/htmlAttributeSet.lo gnu/javax/swing/text/html/parser/htmlValidator.lo gnu/javax/swing/text/html/parser/models.lo gnu/javax/swing/text/html/parser/support.lo gnu/javax/swing/text/html/parser/support/low.lo gnu/javax/swing/tree.lo java/applet.lo java/awt.lo java/awt/color.lo java/awt/datatransfer.lo java/awt/dnd.lo java/awt/dnd/peer.lo java/awt/event.lo java/awt/font.lo java/awt/geom.lo java/awt/im.lo java/awt/im/spi.lo java/awt/image.lo java/awt/image/renderable.lo java/awt/peer.lo java/awt/print.lo java/beans.lo java/beans/beancontext.lo java/io.lo java/lang.lo java/lang/annotation.lo java/lang/instrument.lo java/lang/ref.lo java/lang/reflect.lo java/math.lo java/net.lo java/nio.lo java/nio/channels.lo java/nio/channels/spi.lo java/nio/charset.lo java/nio/charset/spi.lo java/rmi.lo java/rmi/activation.lo java/rmi/dgc.lo java/rmi/registry.lo java/rmi/server.lo java/security.lo java/security/acl.lo java/security/cert.lo java/security/interfaces.lo java/security/spec.lo java/sql.lo java/text.lo java/text/spi.lo java/util.lo java/util/concurrent.lo java/util/concurrent/atomic.lo java/util/concurrent/locks.lo java/util/jar.lo java/util/logging.lo java/util/prefs.lo java/util/regex.lo java/util/spi.lo java/util/zip.lo javax/accessibility.lo javax/activation.lo javax/activity.lo javax/crypto.lo javax/crypto/interfaces.lo javax/crypto/spec.lo javax/management.lo javax/management/loading.lo javax/management/openmbean.lo javax/management/remote.lo javax/management/remote/rmi.lo javax/naming.lo javax/naming/directory.lo javax/naming/event.lo javax/naming/ldap.lo javax/naming/spi.lo javax/net.lo javax/net/ssl.lo javax/print.lo javax/print/attribute.lo javax/print/attribute/standard.lo javax/print/event.lo javax/security/auth.lo javax/security/auth/callback.lo javax/security/auth/kerberos.lo javax/security/auth/login.lo javax/security/auth/spi.lo javax/security/auth/x500.lo javax/security/cert.lo javax/security/sasl.lo javax/sound/midi.lo javax/sound/midi/spi.lo javax/sound/sampled.lo javax/sound/sampled/spi.lo javax/sql.lo javax/swing.lo javax/swing/border.lo javax/swing/colorchooser.lo javax/swing/event.lo javax/swing/filechooser.lo javax/swing/plaf.lo javax/swing/plaf/basic.lo javax/swing/plaf/metal.lo javax/swing/plaf/multi.lo javax/swing/plaf/synth.lo javax/swing/table.lo javax/swing/text.lo javax/swing/text/html.lo javax/swing/text/html/parser.lo javax/swing/text/rtf.lo javax/swing/tree.lo javax/swing/undo.lo javax/tools.lo javax/transaction.lo javax/transaction/xa.lo org/ietf/jgss.lo sun/awt.lo sun/misc.lo sun/reflect.lo sun/reflect/annotation.lo sun/reflect/misc.lo gnu/classpath/jdwp.lo gnu/classpath/jdwp/event.lo gnu/classpath/jdwp/event/filters.lo gnu/classpath/jdwp/exception.lo gnu/classpath/jdwp/id.lo gnu/classpath/jdwp/processor.lo gnu/classpath/jdwp/transport.lo gnu/classpath/jdwp/util.lo gnu/classpath/jdwp/value.lo gnu/gcj/jvmti.lo gnu/java/awt/font/fonts.properties.lo gnu/java/awt/peer/gtk/font.properties.lo gnu/java/awt/peer/x/fonts.properties.lo gnu/java/awt/peer/x/xfonts.properties.lo gnu/java/locale/LocaleInformation.properties.lo gnu/java/locale/LocaleInformation_aa.properties.lo gnu/java/locale/LocaleInformation_aa_DJ.properties.lo gnu/java/locale/LocaleInformation_aa_ER.properties.lo gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.lo gnu/java/locale/LocaleInformation_aa_ET.properties.lo gnu/java/locale/LocaleInformation_af.properties.lo gnu/java/locale/LocaleInformation_af_NA.properties.lo gnu/java/locale/LocaleInformation_af_ZA.properties.lo gnu/java/locale/LocaleInformation_ak.properties.lo gnu/java/locale/LocaleInformation_am.properties.lo gnu/java/locale/LocaleInformation_am_ET.properties.lo gnu/java/locale/LocaleInformation_ar.properties.lo gnu/java/locale/LocaleInformation_ar_DZ.properties.lo gnu/java/locale/LocaleInformation_ar_JO.properties.lo gnu/java/locale/LocaleInformation_ar_LB.properties.lo gnu/java/locale/LocaleInformation_ar_MA.properties.lo gnu/java/locale/LocaleInformation_ar_QA.properties.lo gnu/java/locale/LocaleInformation_ar_SA.properties.lo gnu/java/locale/LocaleInformation_ar_SY.properties.lo gnu/java/locale/LocaleInformation_ar_TN.properties.lo gnu/java/locale/LocaleInformation_ar_YE.properties.lo gnu/java/locale/LocaleInformation_as.properties.lo gnu/java/locale/LocaleInformation_as_IN.properties.lo gnu/java/locale/LocaleInformation_az.properties.lo gnu/java/locale/LocaleInformation_az_Cyrl.properties.lo gnu/java/locale/LocaleInformation_be.properties.lo gnu/java/locale/LocaleInformation_be_BY.properties.lo gnu/java/locale/LocaleInformation_bg.properties.lo gnu/java/locale/LocaleInformation_bg_BG.properties.lo gnu/java/locale/LocaleInformation_bn.properties.lo gnu/java/locale/LocaleInformation_bn_IN.properties.lo gnu/java/locale/LocaleInformation_bo.properties.lo gnu/java/locale/LocaleInformation_bs.properties.lo gnu/java/locale/LocaleInformation_byn.properties.lo gnu/java/locale/LocaleInformation_byn_ER.properties.lo gnu/java/locale/LocaleInformation_ca.properties.lo gnu/java/locale/LocaleInformation_ca_ES.properties.lo gnu/java/locale/LocaleInformation_cch.properties.lo gnu/java/locale/LocaleInformation_cop.properties.lo gnu/java/locale/LocaleInformation_cs.properties.lo gnu/java/locale/LocaleInformation_cs_CZ.properties.lo gnu/java/locale/LocaleInformation_cy.properties.lo gnu/java/locale/LocaleInformation_cy_GB.properties.lo gnu/java/locale/LocaleInformation_da.properties.lo gnu/java/locale/LocaleInformation_da_DK.properties.lo gnu/java/locale/LocaleInformation_de.properties.lo gnu/java/locale/LocaleInformation_de_AT.properties.lo gnu/java/locale/LocaleInformation_de_BE.properties.lo gnu/java/locale/LocaleInformation_de_CH.properties.lo gnu/java/locale/LocaleInformation_de_DE.properties.lo gnu/java/locale/LocaleInformation_de_LI.properties.lo gnu/java/locale/LocaleInformation_de_LU.properties.lo gnu/java/locale/LocaleInformation_dv.properties.lo gnu/java/locale/LocaleInformation_dv_MV.properties.lo gnu/java/locale/LocaleInformation_dz.properties.lo gnu/java/locale/LocaleInformation_dz_BT.properties.lo gnu/java/locale/LocaleInformation_ee.properties.lo gnu/java/locale/LocaleInformation_el.properties.lo gnu/java/locale/LocaleInformation_el_CY.properties.lo gnu/java/locale/LocaleInformation_el_GR.properties.lo gnu/java/locale/LocaleInformation_en.properties.lo gnu/java/locale/LocaleInformation_en_AS.properties.lo gnu/java/locale/LocaleInformation_en_AU.properties.lo gnu/java/locale/LocaleInformation_en_BE.properties.lo gnu/java/locale/LocaleInformation_en_BW.properties.lo gnu/java/locale/LocaleInformation_en_BZ.properties.lo gnu/java/locale/LocaleInformation_en_CA.properties.lo gnu/java/locale/LocaleInformation_en_Dsrt.properties.lo gnu/java/locale/LocaleInformation_en_GB.properties.lo gnu/java/locale/LocaleInformation_en_GU.properties.lo gnu/java/locale/LocaleInformation_en_HK.properties.lo gnu/java/locale/LocaleInformation_en_IE.properties.lo gnu/java/locale/LocaleInformation_en_IN.properties.lo gnu/java/locale/LocaleInformation_en_JM.properties.lo gnu/java/locale/LocaleInformation_en_MH.properties.lo gnu/java/locale/LocaleInformation_en_MP.properties.lo gnu/java/locale/LocaleInformation_en_MT.properties.lo gnu/java/locale/LocaleInformation_en_NA.properties.lo gnu/java/locale/LocaleInformation_en_NZ.properties.lo gnu/java/locale/LocaleInformation_en_PH.properties.lo gnu/java/locale/LocaleInformation_en_PK.properties.lo gnu/java/locale/LocaleInformation_en_SG.properties.lo gnu/java/locale/LocaleInformation_en_Shaw.properties.lo gnu/java/locale/LocaleInformation_en_TT.properties.lo gnu/java/locale/LocaleInformation_en_UM.properties.lo gnu/java/locale/LocaleInformation_en_US.properties.lo gnu/java/locale/LocaleInformation_en_US_POSIX.properties.lo gnu/java/locale/LocaleInformation_en_VI.properties.lo gnu/java/locale/LocaleInformation_en_ZA.properties.lo gnu/java/locale/LocaleInformation_en_ZW.properties.lo gnu/java/locale/LocaleInformation_eo.properties.lo gnu/java/locale/LocaleInformation_es.properties.lo gnu/java/locale/LocaleInformation_es_AR.properties.lo gnu/java/locale/LocaleInformation_es_BO.properties.lo gnu/java/locale/LocaleInformation_es_CL.properties.lo gnu/java/locale/LocaleInformation_es_CO.properties.lo gnu/java/locale/LocaleInformation_es_CR.properties.lo gnu/java/locale/LocaleInformation_es_DO.properties.lo gnu/java/locale/LocaleInformation_es_EC.properties.lo gnu/java/locale/LocaleInformation_es_ES.properties.lo gnu/java/locale/LocaleInformation_es_GT.properties.lo gnu/java/locale/LocaleInformation_es_HN.properties.lo gnu/java/locale/LocaleInformation_es_MX.properties.lo gnu/java/locale/LocaleInformation_es_NI.properties.lo gnu/java/locale/LocaleInformation_es_PA.properties.lo gnu/java/locale/LocaleInformation_es_PE.properties.lo gnu/java/locale/LocaleInformation_es_PR.properties.lo gnu/java/locale/LocaleInformation_es_PY.properties.lo gnu/java/locale/LocaleInformation_es_SV.properties.lo gnu/java/locale/LocaleInformation_es_US.properties.lo gnu/java/locale/LocaleInformation_es_UY.properties.lo gnu/java/locale/LocaleInformation_es_VE.properties.lo gnu/java/locale/LocaleInformation_et.properties.lo gnu/java/locale/LocaleInformation_et_EE.properties.lo gnu/java/locale/LocaleInformation_eu.properties.lo gnu/java/locale/LocaleInformation_eu_ES.properties.lo gnu/java/locale/LocaleInformation_fa.properties.lo gnu/java/locale/LocaleInformation_fa_AF.properties.lo gnu/java/locale/LocaleInformation_fa_IR.properties.lo gnu/java/locale/LocaleInformation_fi.properties.lo gnu/java/locale/LocaleInformation_fi_FI.properties.lo gnu/java/locale/LocaleInformation_fil.properties.lo gnu/java/locale/LocaleInformation_fo.properties.lo gnu/java/locale/LocaleInformation_fo_FO.properties.lo gnu/java/locale/LocaleInformation_fr.properties.lo gnu/java/locale/LocaleInformation_fr_BE.properties.lo gnu/java/locale/LocaleInformation_fr_CA.properties.lo gnu/java/locale/LocaleInformation_fr_CH.properties.lo gnu/java/locale/LocaleInformation_fr_LU.properties.lo gnu/java/locale/LocaleInformation_fur.properties.lo gnu/java/locale/LocaleInformation_ga.properties.lo gnu/java/locale/LocaleInformation_ga_IE.properties.lo gnu/java/locale/LocaleInformation_gaa.properties.lo gnu/java/locale/LocaleInformation_gez.properties.lo gnu/java/locale/LocaleInformation_gez_ER.properties.lo gnu/java/locale/LocaleInformation_gez_ET.properties.lo gnu/java/locale/LocaleInformation_gl.properties.lo gnu/java/locale/LocaleInformation_gl_ES.properties.lo gnu/java/locale/LocaleInformation_gu.properties.lo gnu/java/locale/LocaleInformation_gu_IN.properties.lo gnu/java/locale/LocaleInformation_gv.properties.lo gnu/java/locale/LocaleInformation_gv_GB.properties.lo gnu/java/locale/LocaleInformation_ha.properties.lo gnu/java/locale/LocaleInformation_ha_Arab.properties.lo gnu/java/locale/LocaleInformation_haw.properties.lo gnu/java/locale/LocaleInformation_haw_US.properties.lo gnu/java/locale/LocaleInformation_he.properties.lo gnu/java/locale/LocaleInformation_he_IL.properties.lo gnu/java/locale/LocaleInformation_hi.properties.lo gnu/java/locale/LocaleInformation_hi_IN.properties.lo gnu/java/locale/LocaleInformation_hr.properties.lo gnu/java/locale/LocaleInformation_hu.properties.lo gnu/java/locale/LocaleInformation_hu_HU.properties.lo gnu/java/locale/LocaleInformation_hy.properties.lo gnu/java/locale/LocaleInformation_hy_AM.properties.lo gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.lo gnu/java/locale/LocaleInformation_ia.properties.lo gnu/java/locale/LocaleInformation_id.properties.lo gnu/java/locale/LocaleInformation_id_ID.properties.lo gnu/java/locale/LocaleInformation_ig.properties.lo gnu/java/locale/LocaleInformation_ii.properties.lo gnu/java/locale/LocaleInformation_is.properties.lo gnu/java/locale/LocaleInformation_is_IS.properties.lo gnu/java/locale/LocaleInformation_it.properties.lo gnu/java/locale/LocaleInformation_it_CH.properties.lo gnu/java/locale/LocaleInformation_it_IT.properties.lo gnu/java/locale/LocaleInformation_iu.properties.lo gnu/java/locale/LocaleInformation_ja.properties.lo gnu/java/locale/LocaleInformation_ja_JP.properties.lo gnu/java/locale/LocaleInformation_ka.properties.lo gnu/java/locale/LocaleInformation_kaj.properties.lo gnu/java/locale/LocaleInformation_kam.properties.lo gnu/java/locale/LocaleInformation_kcg.properties.lo gnu/java/locale/LocaleInformation_kfo.properties.lo gnu/java/locale/LocaleInformation_kk.properties.lo gnu/java/locale/LocaleInformation_kk_KZ.properties.lo gnu/java/locale/LocaleInformation_kl.properties.lo gnu/java/locale/LocaleInformation_kl_GL.properties.lo gnu/java/locale/LocaleInformation_km.properties.lo gnu/java/locale/LocaleInformation_km_KH.properties.lo gnu/java/locale/LocaleInformation_kn.properties.lo gnu/java/locale/LocaleInformation_kn_IN.properties.lo gnu/java/locale/LocaleInformation_ko.properties.lo gnu/java/locale/LocaleInformation_ko_KR.properties.lo gnu/java/locale/LocaleInformation_kok.properties.lo gnu/java/locale/LocaleInformation_kok_IN.properties.lo gnu/java/locale/LocaleInformation_kpe.properties.lo gnu/java/locale/LocaleInformation_ku.properties.lo gnu/java/locale/LocaleInformation_ku_Arab.properties.lo gnu/java/locale/LocaleInformation_ku_Latn.properties.lo gnu/java/locale/LocaleInformation_kw.properties.lo gnu/java/locale/LocaleInformation_kw_GB.properties.lo gnu/java/locale/LocaleInformation_ky.properties.lo gnu/java/locale/LocaleInformation_ln.properties.lo gnu/java/locale/LocaleInformation_lo.properties.lo gnu/java/locale/LocaleInformation_lo_LA.properties.lo gnu/java/locale/LocaleInformation_lt.properties.lo gnu/java/locale/LocaleInformation_lt_LT.properties.lo gnu/java/locale/LocaleInformation_lv.properties.lo gnu/java/locale/LocaleInformation_lv_LV.properties.lo gnu/java/locale/LocaleInformation_mk.properties.lo gnu/java/locale/LocaleInformation_ml.properties.lo gnu/java/locale/LocaleInformation_ml_IN.properties.lo gnu/java/locale/LocaleInformation_mn.properties.lo gnu/java/locale/LocaleInformation_mr.properties.lo gnu/java/locale/LocaleInformation_mr_IN.properties.lo gnu/java/locale/LocaleInformation_ms.properties.lo gnu/java/locale/LocaleInformation_ms_BN.properties.lo gnu/java/locale/LocaleInformation_ms_MY.properties.lo gnu/java/locale/LocaleInformation_mt.properties.lo gnu/java/locale/LocaleInformation_mt_MT.properties.lo gnu/java/locale/LocaleInformation_my.properties.lo gnu/java/locale/LocaleInformation_nb.properties.lo gnu/java/locale/LocaleInformation_nb_NO.properties.lo gnu/java/locale/LocaleInformation_ne.properties.lo gnu/java/locale/LocaleInformation_nl.properties.lo gnu/java/locale/LocaleInformation_nl_BE.properties.lo gnu/java/locale/LocaleInformation_nl_NL.properties.lo gnu/java/locale/LocaleInformation_nn.properties.lo gnu/java/locale/LocaleInformation_nn_NO.properties.lo gnu/java/locale/LocaleInformation_nr.properties.lo gnu/java/locale/LocaleInformation_nso.properties.lo gnu/java/locale/LocaleInformation_ny.properties.lo gnu/java/locale/LocaleInformation_om.properties.lo gnu/java/locale/LocaleInformation_om_ET.properties.lo gnu/java/locale/LocaleInformation_om_KE.properties.lo gnu/java/locale/LocaleInformation_or.properties.lo gnu/java/locale/LocaleInformation_or_IN.properties.lo gnu/java/locale/LocaleInformation_pa.properties.lo gnu/java/locale/LocaleInformation_pa_Arab.properties.lo gnu/java/locale/LocaleInformation_pa_IN.properties.lo gnu/java/locale/LocaleInformation_pl.properties.lo gnu/java/locale/LocaleInformation_pl_PL.properties.lo gnu/java/locale/LocaleInformation_ps.properties.lo gnu/java/locale/LocaleInformation_ps_AF.properties.lo gnu/java/locale/LocaleInformation_pt.properties.lo gnu/java/locale/LocaleInformation_pt_BR.properties.lo gnu/java/locale/LocaleInformation_pt_PT.properties.lo gnu/java/locale/LocaleInformation_ro.properties.lo gnu/java/locale/LocaleInformation_ro_RO.properties.lo gnu/java/locale/LocaleInformation_ru.properties.lo gnu/java/locale/LocaleInformation_ru_RU.properties.lo gnu/java/locale/LocaleInformation_ru_UA.properties.lo gnu/java/locale/LocaleInformation_rw.properties.lo gnu/java/locale/LocaleInformation_sa.properties.lo gnu/java/locale/LocaleInformation_sa_IN.properties.lo gnu/java/locale/LocaleInformation_se.properties.lo gnu/java/locale/LocaleInformation_se_FI.properties.lo gnu/java/locale/LocaleInformation_si.properties.lo gnu/java/locale/LocaleInformation_sid.properties.lo gnu/java/locale/LocaleInformation_sid_ET.properties.lo gnu/java/locale/LocaleInformation_sk.properties.lo gnu/java/locale/LocaleInformation_sk_SK.properties.lo gnu/java/locale/LocaleInformation_sl.properties.lo gnu/java/locale/LocaleInformation_sl_SI.properties.lo gnu/java/locale/LocaleInformation_so.properties.lo gnu/java/locale/LocaleInformation_so_DJ.properties.lo gnu/java/locale/LocaleInformation_so_ET.properties.lo gnu/java/locale/LocaleInformation_so_KE.properties.lo gnu/java/locale/LocaleInformation_so_SO.properties.lo gnu/java/locale/LocaleInformation_sq.properties.lo gnu/java/locale/LocaleInformation_sq_AL.properties.lo gnu/java/locale/LocaleInformation_sr.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_Cyrl.properties.lo gnu/java/locale/LocaleInformation_sr_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.lo gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.lo gnu/java/locale/LocaleInformation_ss.properties.lo gnu/java/locale/LocaleInformation_ssy.properties.lo gnu/java/locale/LocaleInformation_st.properties.lo gnu/java/locale/LocaleInformation_sv.properties.lo gnu/java/locale/LocaleInformation_sv_FI.properties.lo gnu/java/locale/LocaleInformation_sv_SE.properties.lo gnu/java/locale/LocaleInformation_sw.properties.lo gnu/java/locale/LocaleInformation_sw_KE.properties.lo gnu/java/locale/LocaleInformation_sw_TZ.properties.lo gnu/java/locale/LocaleInformation_syr.properties.lo gnu/java/locale/LocaleInformation_syr_SY.properties.lo gnu/java/locale/LocaleInformation_ta.properties.lo gnu/java/locale/LocaleInformation_ta_IN.properties.lo gnu/java/locale/LocaleInformation_te.properties.lo gnu/java/locale/LocaleInformation_te_IN.properties.lo gnu/java/locale/LocaleInformation_tg.properties.lo gnu/java/locale/LocaleInformation_th.properties.lo gnu/java/locale/LocaleInformation_th_TH.properties.lo gnu/java/locale/LocaleInformation_ti.properties.lo gnu/java/locale/LocaleInformation_ti_ER.properties.lo gnu/java/locale/LocaleInformation_ti_ET.properties.lo gnu/java/locale/LocaleInformation_tig.properties.lo gnu/java/locale/LocaleInformation_tig_ER.properties.lo gnu/java/locale/LocaleInformation_tn.properties.lo gnu/java/locale/LocaleInformation_to.properties.lo gnu/java/locale/LocaleInformation_tr.properties.lo gnu/java/locale/LocaleInformation_tr_TR.properties.lo gnu/java/locale/LocaleInformation_trv.properties.lo gnu/java/locale/LocaleInformation_ts.properties.lo gnu/java/locale/LocaleInformation_tt.properties.lo gnu/java/locale/LocaleInformation_tt_RU.properties.lo gnu/java/locale/LocaleInformation_ug.properties.lo gnu/java/locale/LocaleInformation_uk.properties.lo gnu/java/locale/LocaleInformation_uk_UA.properties.lo gnu/java/locale/LocaleInformation_ur.properties.lo gnu/java/locale/LocaleInformation_ur_IN.properties.lo gnu/java/locale/LocaleInformation_uz.properties.lo gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Arab.properties.lo gnu/java/locale/LocaleInformation_uz_Latn.properties.lo gnu/java/locale/LocaleInformation_ve.properties.lo gnu/java/locale/LocaleInformation_vi.properties.lo gnu/java/locale/LocaleInformation_wal.properties.lo gnu/java/locale/LocaleInformation_wal_ET.properties.lo gnu/java/locale/LocaleInformation_wo.properties.lo gnu/java/locale/LocaleInformation_xh.properties.lo gnu/java/locale/LocaleInformation_yo.properties.lo gnu/java/locale/LocaleInformation_zh.properties.lo gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.lo gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.lo gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.lo gnu/java/locale/LocaleInformation_zu.properties.lo gnu/java/util/regex/MessagesBundle.properties.lo gnu/java/util/regex/MessagesBundle_fr.properties.lo gnu/java/util/regex/MessagesBundle_it.properties.lo gnu/javax/print/PrinterDialog.properties.lo gnu/javax/print/PrinterDialog_de.properties.lo gnu/javax/security/auth/callback/MessagesBundle.properties.lo java/text/metazones.properties.lo java/util/iso4217.properties.lo java/util/weeks.properties.lo javax/imageio/plugins/jpeg/MessagesBundle.properties.lo javax/swing/text/html/default.css.lo org/ietf/jgss/MessagesBundle.properties.lo META-INF/services/java.util.prefs.PreferencesFactory.lo META-INF/services/java.util.prefs.PreferencesFactory.in.lo META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.lo META-INF/services/javax.sound.midi.spi.MidiFileReader.lo META-INF/services/javax.sound.midi.spi.MidiFileWriter.lo META-INF/services/javax.sound.sampled.spi.AudioFileReader.lo gnu-CORBA.lo gnu-java-awt-dnd-peer-gtk.lo gnu-java-awt-peer-gtk.lo gnu-java-awt-peer-swing.lo gnu-java-beans.lo gnu-java-lang-management.lo gnu-java-math.lo gnu-java-util-prefs-gconf.lo gnu-javax-management.lo gnu-javax-rmi.lo gnu-javax-sound-midi.lo gnu-xml-aelfred2.lo gnu-xml-dom.lo gnu-xml-libxmlj.lo gnu-xml-pipeline.lo gnu-xml-stream.lo gnu-xml-transform.lo gnu-xml-util.lo gnu-xml-validation.lo gnu-xml-xpath.lo java-lang-management.lo javax-imageio.lo javax-rmi.lo javax-xml.lo org-omg-CORBA.lo org-omg-CORBA_2_3.lo org-omg-CosNaming.lo org-omg-Dynamic.lo org-omg-DynamicAny.lo org-omg-IOP.lo org-omg-Messaging.lo org-omg-PortableInterceptor.lo org-omg-PortableServer.lo org-omg-SendingContext.lo org-omg-stub.lo org-relaxng.lo org-w3c.lo org-xml.lo ../libffi/libffi_convenience.la ../zlib/libzgcj_convenience.la ../boehm-gc/libgcjgc_convenience.la
--libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
-+/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -L[...]/hurd/master.build/[ARCH]/libjava -ffloat-store -fomit-frame-pointer -Usun -g -O2 -o libgcj.la -rpath [...]/hurd/master.build.install/lib -lpthread -lrt ./libltdl/libltdlc.la -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -rpath [...]/hurd/master.build.install/lib prims.lo jni.lo exception.lo stacktrace.lo link.lo defineclass.lo verify.lo jvmti.lo interpret.lo gnu/classpath/jdwp/natVMFrame.lo gnu/classpath/jdwp/natVMMethod.lo gnu/classpath/jdwp/natVMVirtualMachine.lo gnu/classpath/natConfiguration.lo gnu/classpath/natSystemProperties.lo gnu/classpath/natVMStackWalker.lo gnu/gcj/natCore.lo gnu/gcj/convert/JIS0208_to_Unicode.lo gnu/gcj/convert/JIS0212_to_Unicode.lo gnu/gcj/convert/Unicode_to_JIS.lo gnu/gcj/convert/natIconv.lo gnu/gcj/convert/natInput_EUCJIS.lo gnu/gcj/convert/natInput_SJIS.lo gnu/gcj/convert/natOutput_EUCJIS.lo gnu/gcj/convert/natOutput_SJIS.lo gnu/gcj/io/natSimpleSHSStream.lo gnu/gcj/io/shs.lo gnu/gcj/jvmti/natBreakpoint.lo gnu/gcj/jvmti/natNormalBreakpoint.lo gnu/gcj/runtime/natFinalizerThread.lo gnu/gcj/runtime/natSharedLibLoader.lo gnu/gcj/runtime/natSystemClassLoader.lo gnu/gcj/runtime/natStringBuffer.lo gnu/gcj/util/natDebug.lo gnu/gcj/util/natGCInfo.lo gnu/java/lang/natMainThread.lo gnu/java/lang/management/natVMClassLoadingMXBeanImpl.lo gnu/java/lang/management/natVMCompilationMXBeanImpl.lo gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.lo gnu/java/lang/management/natVMMemoryMXBeanImpl.lo gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.lo gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.lo gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.lo gnu/java/lang/management/natVMRuntimeMXBeanImpl.lo gnu/java/lang/management/natVMThreadMXBeanImpl.lo gnu/java/net/natPlainDatagramSocketImpl.lo gnu/java/net/natPlainSocketImpl.lo gnu/java/net/protocol/core/natCoreInputStream.lo gnu/java/nio/natVMPipe.lo gnu/java/nio/natVMSelector.lo gnu/java/nio/natNIOServerSocket.lo gnu/java/nio/natVMChannel.lo gnu/java/nio/channels/natFileChannelImpl.lo gnu/java/security/jce/prng/natVMSecureRandom.lo java/io/natFile.lo java/io/natVMObjectInputStream.lo java/io/natVMObjectStreamClass.lo java/lang/natCharacter.lo java/lang/natClass.lo java/lang/natClassLoader.lo java/lang/natConcreteProcess.lo java/lang/natVMDouble.lo java/lang/natVMFloat.lo java/lang/natMath.lo java/lang/natObject.lo java/lang/natRuntime.lo java/lang/natString.lo java/lang/natAbstractStringBuffer.lo java/lang/natSystem.lo java/lang/natThread.lo java/lang/natThreadLocal.lo java/lang/natVMClassLoader.lo java/lang/natVMProcess.lo java/lang/natVMThrowable.lo java/lang/ref/natReference.lo java/lang/reflect/natArray.lo java/lang/reflect/natConstructor.lo java/lang/reflect/natField.lo java/lang/reflect/natMethod.lo java/lang/reflect/natVMProxy.lo java/net/natVMInetAddress.lo java/net/natVMNetworkInterface.lo java/net/natVMURLConnection.lo java/nio/channels/natVMChannels.lo java/nio/natVMDirectByteBufferImpl.lo java/security/natVMAccessController.lo java/security/natVMAccessControlState.lo java/text/natCollator.lo java/util/natVMTimeZone.lo java/util/concurrent/atomic/natAtomicLong.lo java/util/logging/natLogger.lo java/util/zip/natDeflater.lo java/util/zip/natInflater.lo sun/misc/natUnsafe.lo boehm.lo posix.lo posix-threads.lo classpath/native/fdlibm/libfdlibm.la java/lang/Object.lo java/lang/Class.lo java/process-Posix.lo gnu/awt.lo gnu/awt/j2d.lo gnu/classpath.lo gnu/classpath/debug.lo gnu/classpath/toolkit.lo gnu/gcj.lo gnu/gcj/convert.lo gnu/gcj/io.lo gnu/gcj/runtime.lo gnu/gcj/util.lo gnu/java/awt.lo gnu/java/awt/color.lo gnu/java/awt/dnd.lo gnu/java/awt/font.lo gnu/java/awt/font/autofit.lo gnu/java/awt/font/opentype.lo gnu/java/awt/font/opentype/truetype.lo gnu/java/awt/image.lo gnu/java/awt/java2d.lo gnu/java/awt/peer.lo gnu/java/awt/peer/headless.lo gnu/java/awt/print.lo gnu/java/io.lo gnu/java/lang.lo gnu/java/lang/reflect.lo gnu/java/locale.lo gnu/java/net.lo gnu/java/net/loader.lo gnu/java/net/local.lo gnu/java/net/protocol/core.lo gnu/java/net/protocol/file.lo gnu/java/net/protocol/ftp.lo gnu/java/net/protocol/gcjlib.lo gnu/java/net/protocol/http.lo gnu/java/net/protocol/https.lo gnu/java/net/protocol/jar.lo gnu/java/nio.lo gnu/java/nio/channels.lo gnu/java/nio/charset.lo gnu/java/rmi.lo gnu/java/rmi/activation.lo gnu/java/rmi/dgc.lo gnu/java/rmi/registry.lo gnu/java/rmi/server.lo gnu/java/security.lo gnu/java/security/action.lo gnu/java/security/ber.lo gnu/java/security/der.lo gnu/java/security/hash.lo gnu libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/prims.o .libs/jni.o .libs/exception.o .libs/stacktrace.o .libs/link.o .libs/defineclass.o .libs/verify.o .libs/jvmti.o .libs/interpret.o gnu/classpath/jdwp/.libs/natVMFrame.o gnu/classpath/jdwp/.libs/natVMMethod.o gnu/classpath/jdwp/.libs/natVMVirtualMachine.o gnu/classpath/.libs/natConfiguration.o gnu/classpath/.libs/natSystemProperties.o gnu/classpath/.libs/natVMStackWalker.o gnu/gcj/.libs/natCore.o gnu/gcj/convert/.libs/JIS0208_to_Unicode.o gnu/gcj/convert/.libs/JIS0212_to_Unicode.o gnu/gcj/convert/.libs/Unicode_to_JIS.o gnu/gcj/convert/.libs/natIconv.o gnu/gcj/convert/.libs/natInput_EUCJIS.o gnu/gcj/convert/.libs/natInput_SJIS.o gnu/gcj/convert/.libs/natOutput_EUCJIS.o gnu/gcj/convert/.libs/natOutput_SJIS.o gnu/gcj/io/.libs/natSimpleSHSStream.o gnu/gcj/io/.libs/shs.o gnu/gcj/jvmti/.libs/natBreakpoint.o gnu/gcj/jvmti/.libs/natNormalBreakpoint.o gnu/gcj/runtime/.libs/natFinalizerThread.o gnu/gcj/runtime/.libs/natSharedLibLoader.o gnu/gcj/runtime/.libs/natSystemClassLoader.o gnu/gcj/runtime/.libs/natStringBuffer.o gnu/gcj/util/.libs/natDebug.o gnu/gcj/util/.libs/natGCInfo.o gnu/java/lang/.libs/natMainThread.o gnu/java/lang/management/.libs/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/.libs/natVMCompilationMXBeanImpl.o gnu/java/lang/management/.libs/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/.libs/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/.libs/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/.libs/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/.libs/natVMThreadMXBeanImpl.o gnu/java/net/.libs/natPlainDatagramSocketImpl.o gnu/java/net/.libs/natPlainSocketImpl.o gnu/java/net/protocol/core/.libs/natCoreInputStream.o gnu/java/nio/.libs/natVMPipe.o gnu/java/nio/.libs/natVMSelector.o gnu/java/nio/.libs/natNIOServerSocket.o gnu/java/nio/.libs/natVMChannel.o gnu/java/nio/channels/.libs/natFileChannelImpl.o gnu/java/security/jce/prng/.libs/natVMSecureRandom.o java/io/.libs/natFile.o java/io/.libs/natVMObjectInputStream.o java/io/.libs/natVMObjectStreamClass.o java/lang/.libs/natCharacter.o java/lang/.libs/natClass.o java/lang/.libs/natClassLoader.o java/lang/.libs/natConcreteProcess.o java/lang/.libs/natVMDouble.o java/lang/.libs/natVMFloat.o java/lang/.libs/natMath.o java/lang/.libs/natObject.o java/lang/.libs/natRuntime.o java/lang/.libs/natString.o java/lang/.libs/natAbstractStringBuffer.o java/lang/.libs/natSystem.o java/lang/.libs/natThread.o java/lang/.libs/natThreadLocal.o java/lang/.libs/natVMClassLoader.o java/lang/.libs/natVMProcess.o java/lang/.libs/natVMThrowable.o java/lang/ref/.libs/natReference.o java/lang/reflect/.libs/natArray.o java/lang/reflect/.libs/natConstructor.o java/lang/reflect/.libs/natField.o java/lang/reflect/.libs/natMethod.o java/lang/reflect/.libs/natVMProxy.o java/net/.libs/natVMInetAddress.o java/net/.libs/natVMNetworkInterface.o java/net/.libs/natVMURLConnection.o java/nio/channels/.libs/natVMChannels.o java/nio/.libs/natVMDirectByteBufferImpl.o java/security/.libs/natVMAccessController.o java/security/.libs/natVMAccessControlState.o java/text/.libs/natCollator.o java/util/.libs/natVMTimeZone.o java/util/concurrent/atomic/.libs/natAtomicLong.o java/util/logging/.libs/natLogger.o java/util/zip/.libs/natDeflater.o java/util/zip/.libs/natInflater.o sun/misc/.libs/natUnsafe.o .libs/boehm.o .libs/posix.o .libs/posix-threads.o java/lang/.libs/Object.o java/lang/.libs/Class.o java/.libs/process-Posix.o gnu/.libs/awt.o gnu/awt/.libs/j2d.o gnu/.libs/classpath.o gnu/classpath/.libs/debug.o gnu/classpath/.libs/toolkit.o gnu/.libs/gcj.o gnu/gcj/.libs/convert.o gnu/gcj/.libs/io.o gnu/gcj/.libs/runtime.o gnu/gcj/.libs/util.o gnu/java/.libs/awt.o gnu/java/awt/.libs/color.o gnu/java/awt/.libs/dnd.o gnu/java/awt/.libs/font.o gnu/java/awt/font/.libs/autofit.o gnu/java/awt/font/.libs/opentype.o gnu/java/awt/font/opentype/.libs/truetype.o gnu/java/awt/.libs/image.o gnu/java/awt/.libs/java2d.o gnu/java/awt/.libs/peer.o gnu/java/awt/peer/.libs/headless.o gnu/java/awt/.libs/print.o gnu/java/.libs/io.o gnu/java/.libs/lang.o gnu/java/lang/.libs/reflect.o gnu/java/.libs/locale.o gnu/java/.libs/net.o gnu/java/net/.libs/loader.o gnu/java/net/.libs/local.o gnu/java/net/protocol/.libs/core.o gnu/java/net/protocol/.libs/file.o gnu/java/net/protocol/.libs/ftp.o gnu/java/net/protocol/.libs/gcjlib.o gnu/java/net/protocol/.libs/http.o gnu/java/net/protocol/.libs/https.o gnu/java/net/protocol/.libs/jar.o gnu/java/.libs/nio.o gnu/java/nio/.libs/channels.o gnu/java/nio/.libs/charset.o gnu/java/.libs/rmi.o gnu/java/rmi/.libs/activation.o gnu/java/rmi/.libs/dgc.o gnu/java/rmi/.libs/registry.o gnu/java/rmi/.libs/server.o gnu/java/.libs/security.o gnu/java/security/.libs/action.o gnu/java/security/.libs/ber.o gnu/java/security/.libs/der.o gnu/java/security/.libs/hash.o gnu/java/security/jce/.libs/hash.o gnu/java/security/jce/.libs/prng.o gnu/java/security/jce/.libs/sig.o gnu/java/security/.libs/key.o gnu/java/security/key/.libs/dss.o gnu/java/security/key/.libs/rsa.o gnu/java/security/.libs/pkcs.o gnu/java/security/.libs/prng.o gnu/java/security/.libs/provider.o gnu/java/security/.libs/sig.o gnu/java/security/sig/.libs/dss.o gnu/java/security/sig/.libs/rsa.o gnu/java/security/.libs/util.o gnu/java/security/.libs/x509.o gnu/java/security/x509/.libs/ext.o gnu/java/.libs/text.o gnu/java/.libs/util.o gnu/java/util/.libs/jar.o gnu/java/util/.libs/prefs.o gnu/java/util/.libs/regex.o gnu/javax/activation/.libs/viewers.o gnu/javax/.libs/crypto.o gnu/javax/crypto/.libs/assembly.o gnu/javax/crypto/.libs/cipher.o gnu/javax/crypto/.libs/jce.o gnu/javax/crypto/jce/.libs/cipher.o gnu/javax/crypto/jce/.libs/key.o gnu/javax/crypto/jce/.libs/keyring.o gnu/javax/crypto/jce/.libs/mac.o gnu/javax/crypto/jce/.libs/params.o gnu/javax/crypto/jce/.libs/prng.o gnu/javax/crypto/jce/.libs/sig.o gnu/javax/crypto/jce/.libs/spec.o gnu/javax/crypto/.libs/key.o gnu/javax/crypto/key/.libs/dh.o gnu/javax/crypto/key/.libs/srp6.o gnu/javax/crypto/.libs/keyring.o gnu/javax/crypto/.libs/kwa.o gnu/javax/crypto/.libs/mac.o gnu/javax/crypto/.libs/mode.o gnu/javax/crypto/.libs/pad.o gnu/javax/crypto/.libs/prng.o gnu/javax/crypto/.libs/sasl.o gnu/javax/crypto/sasl/.libs/anonymous.o gnu/javax/crypto/sasl/.libs/crammd5.o gnu/javax/crypto/sasl/.libs/plain.o gnu/javax/crypto/sasl/.libs/srp.o gnu/javax/.libs/imageio.o gnu/javax/imageio/.libs/bmp.o gnu/javax/imageio/.libs/gif.o gnu/javax/imageio/.libs/jpeg.o gnu/javax/imageio/.libs/png.o gnu/javax/naming/.libs/giop.o gnu/javax/naming/ictxImpl/.libs/trans.o gnu/javax/naming/jndi/url/.libs/corbaname.o gnu/javax/naming/jndi/url/.libs/rmi.o gnu/javax/net/.libs/ssl.o gnu/javax/net/ssl/.libs/provider.o gnu/javax/.libs/print.o gnu/javax/print/.libs/ipp.o gnu/javax/print/ipp/.libs/attribute.o gnu/javax/print/ipp/attribute/.libs/defaults.o gnu/javax/print/ipp/attribute/.libs/job.o gnu/javax/print/ipp/attribute/.libs/printer.o gnu/javax/print/ipp/attribute/.libs/supported.o gnu/javax/security/.libs/auth.o gnu/javax/security/auth/.libs/callback.o gnu/javax/security/auth/.libs/login.o gnu/javax/.libs/sound.o gnu/javax/sound/sampled/.libs/AU.o gnu/javax/sound/sampled/.libs/WAV.o gnu/javax/swing/plaf/.libs/gnu.o gnu/javax/swing/plaf/.libs/metal.o gnu/javax/swing/text/.libs/html.o gnu/javax/swing/text/html/.libs/css.o gnu/javax/swing/text/html/parser/.libs/GnuParserDelegator.o gnu/javax/swing/text/html/parser/.libs/HTML_401F.o gnu/javax/swing/text/html/parser/.libs/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/gnuDTD.o gnu/javax/swing/text/html/parser/.libs/htmlAttributeSet.o gnu/javax/swing/text/html/parser/.libs/htmlValidator.o gnu/javax/swing/text/html/parser/.libs/models.o gnu/javax/swing/text/html/parser/.libs/support.o gnu/javax/swing/text/html/parser/support/.libs/low.o gnu/javax/swing/.libs/tree.o java/.libs/applet.o java/.libs/awt.o java/awt/.libs/color.o java/awt/.libs/datatransfer.o java/awt/.libs/dnd.o java/awt/dnd/.libs/peer.o java/awt/.libs/event.o java/awt/.libs/font.o java/awt/.libs/geom.o java/awt/.libs/im.o java/awt/im/.libs/spi.o java/awt/.libs/image.o java/awt/image/.libs/renderable.o java/awt/.libs/peer.o java/awt/.libs/print.o java/.libs/beans.o java/beans/.libs/beancontext.o java/.libs/io.o java/.libs/lang.o java/lang/.libs/annotation.o java/lang/.libs/instrument.o java/lang/.libs/ref.o java/lang/.libs/reflect.o java/.libs/math.o java/.libs/net.o java/.libs/nio.o java/nio/.libs/channels.o java/nio/channels/.libs/spi.o java/nio/.libs/charset.o java/nio/charset/.libs/spi.o java/.libs/rmi.o java/rmi/.libs/activation.o java/rmi/.libs/dgc.o java/rmi/.libs/registry.o java/rmi/.libs/server.o java/.libs/security.o java/security/.libs/acl.o java/security/.libs/cert.o java/security/.libs/interfaces.o java/security/.libs/spec.o java/.libs/sql.o java/.libs/text.o java/text/.libs/spi.o java/.libs/util.o java/util/.libs/concurrent.o java/util/concurrent/.libs/atomic.o java/util/concurrent/.libs/locks.o java/util/.libs/jar.o java/util/.libs/logging.o java/util/.libs/prefs.o java/util/.libs/regex.o java/util/.libs/spi.o java/util/.libs/zip.o javax/.libs/accessibility.o javax/.libs/activation.o javax/.libs/activity.o javax/.libs/crypto.o javax/crypto/.libs/interfaces.o javax/crypto/.libs/spec.o javax/.libs/management.o javax/management/.libs/loading.o javax/management/.libs/openmbean.o javax/management/.libs/remote.o javax/management/remote/.libs/rmi.o javax/.libs/naming.o javax/naming/.libs/directory.o javax/naming/.libs/event.o javax/naming/.libs/ldap.o javax/naming/.libs/spi.o javax/.libs/net.o javax/net/.libs/ssl.o javax/.libs/print.o javax/print/.libs/attribute.o javax/print/attribute/.libs/standard.o javax/print/.libs/event.o javax/security/.libs/auth.o javax/security/auth/.libs/callback.o javax/security/auth/.libs/kerberos.o javax/security/auth/.libs/login.o javax/security/auth/.libs/spi.o javax/security/auth/.libs/x500.o javax/security/.libs/cert.o javax/security/.libs/sasl.o javax/sound/.libs/midi.o javax/sound/midi/.libs/spi.o javax/sound/.libs/sampled.o javax/sound/sampled/.libs/spi.o javax/.libs/sql.o javax/.libs/swing.o javax/swing/.libs/border.o javax/swing/.libs/colorchooser.o javax/swing/.libs/event.o javax/swing/.libs/filechooser.o javax/swing/.libs/plaf.o javax/swing/plaf/.libs/basic.o javax/swing/plaf/.libs/metal.o javax/swing/plaf/.libs/multi.o javax/swing/plaf/.libs/synth.o javax/swing/.libs/table.o javax/swing/.libs/text.o javax/swing/text/.libs/html.o javax/swing/text/html/.libs/parser.o javax/swing/text/.libs/rtf.o javax/swing/.libs/tree.o javax/swing/.libs/undo.o javax/.libs/tools.o javax/.libs/transaction.o javax/transaction/.libs/xa.o org/ietf/.libs/jgss.o sun/.libs/awt.o sun/.libs/misc.o sun/.libs/reflect.o sun/reflect/.libs/annotation.o sun/reflect/.libs/misc.o gnu/classpath/.libs/jdwp.o gnu/classpath/jdwp/.libs/event.o gnu/classpath/jdwp/event/.libs/filters.o gnu/classpath/jdwp/.libs/exception.o gnu/classpath/jdwp/.libs/id.o gnu/classpath/jdwp/.libs/processor.o gnu/classpath/jdwp/.libs/transport.o gnu/classpath/jdwp/.libs/util.o gnu/classpath/jdwp/.libs/value.o gnu/gcj/.libs/jvmti.o gnu/java/awt/font/.libs/fonts.properties.o gnu/java/awt/peer/gtk/.libs/font.properties.o gnu/java/awt/peer/x/.libs/fonts.properties.o gnu/java/awt/peer/x/.libs/xfonts.properties.o gnu/java/locale/.libs/LocaleInformation.properties.o gnu/java/locale/.libs/LocaleInformation_aa.properties.o gnu/java/locale/.libs/LocaleInformation_aa_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/.libs/LocaleInformation_aa_ET.properties.o gnu/java/locale/.libs/LocaleInformation_af.properties.o gnu/java/locale/.libs/LocaleInformation_af_NA.properties.o gnu/java/locale/.libs/LocaleInformation_af_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_ak.properties.o gnu/java/locale/.libs/LocaleInformation_am.properties.o gnu/java/locale/.libs/LocaleInformation_am_ET.properties.o gnu/java/locale/.libs/LocaleInformation_ar.properties.o gnu/java/locale/.libs/LocaleInformation_ar_DZ.properties.o gnu/java/locale/.libs/LocaleInformation_ar_JO.properties.o gnu/java/locale/.libs/LocaleInformation_ar_LB.properties.o gnu/java/locale/.libs/LocaleInformation_ar_MA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_QA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SA.properties.o gnu/java/locale/.libs/LocaleInformation_ar_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ar_TN.properties.o gnu/java/locale/.libs/LocaleInformation_ar_YE.properties.o gnu/java/locale/.libs/LocaleInformation_as.properties.o gnu/java/locale/.libs/LocaleInformation_as_IN.properties.o gnu/java/locale/.libs/LocaleInformation_az.properties.o gnu/java/locale/.libs/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_be.properties.o gnu/java/locale/.libs/LocaleInformation_be_BY.properties.o gnu/java/locale/.libs/LocaleInformation_bg.properties.o gnu/java/locale/.libs/LocaleInformation_bg_BG.properties.o gnu/java/locale/.libs/LocaleInformation_bn.properties.o gnu/java/locale/.libs/LocaleInformation_bn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_bo.properties.o gnu/java/locale/.libs/LocaleInformation_bs.properties.o gnu/java/locale/.libs/LocaleInformation_byn.properties.o gnu/java/locale/.libs/LocaleInformation_byn_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ca.properties.o gnu/java/locale/.libs/LocaleInformation_ca_ES.properties.o gnu/java/locale/.libs/LocaleInformation_cch.properties.o gnu/java/locale/.libs/LocaleInformation_cop.properties.o gnu/java/locale/.libs/LocaleInformation_cs.properties.o gnu/java/locale/.libs/LocaleInformation_cs_CZ.properties.o gnu/java/locale/.libs/LocaleInformation_cy.properties.o gnu/java/locale/.libs/LocaleInformation_cy_GB.properties.o gnu/java/locale/.libs/LocaleInformation_da.properties.o gnu/java/locale/.libs/LocaleInformation_da_DK.properties.o gnu/java/locale/.libs/LocaleInformation_de.properties.o gnu/java/locale/.libs/LocaleInformation_de_AT.properties.o gnu/java/locale/.libs/LocaleInformation_de_BE.properties.o gnu/java/locale/.libs/LocaleInformation_de_CH.properties.o gnu/java/locale/.libs/LocaleInformation_de_DE.properties.o gnu/java/locale/.libs/LocaleInformation_de_LI.properties.o gnu/java/locale/.libs/LocaleInformation_de_LU.properties.o gnu/java/locale/.libs/LocaleInformation_dv.properties.o gnu/java/locale/.libs/LocaleInformation_dv_MV.properties.o gnu/java/locale/.libs/LocaleInformation_dz.properties.o gnu/java/locale/.libs/LocaleInformation_dz_BT.properties.o gnu/java/locale/.libs/LocaleInformation_ee.properties.o gnu/java/locale/.libs/LocaleInformation_el.properties.o gnu/java/locale/.libs/LocaleInformation_el_CY.properties.o gnu/java/locale/.libs/LocaleInformation_el_GR.properties.o gnu/java/locale/.libs/LocaleInformation_en.properties.o gnu/java/locale/.libs/LocaleInformation_en_AS.properties.o gnu/java/locale/.libs/LocaleInformation_en_AU.properties.o gnu/java/locale/.libs/LocaleInformation_en_BE.properties.o gnu/java/locale/.libs/LocaleInformation_en_BW.properties.o gnu/java/locale/.libs/LocaleInformation_en_BZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_CA.properties.o gnu/java/locale/.libs/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/.libs/LocaleInformation_en_GB.properties.o gnu/java/locale/.libs/LocaleInformation_en_GU.properties.o gnu/java/locale/.libs/LocaleInformation_en_HK.properties.o gnu/java/locale/.libs/LocaleInformation_en_IE.properties.o gnu/java/locale/.libs/LocaleInformation_en_IN.properties.o gnu/java/locale/.libs/LocaleInformation_en_JM.properties.o gnu/java/locale/.libs/LocaleInformation_en_MH.properties.o gnu/java/locale/.libs/LocaleInformation_en_MP.properties.o gnu/java/locale/.libs/LocaleInformation_en_MT.properties.o gnu/java/locale/.libs/LocaleInformation_en_NA.properties.o gnu/java/locale/.libs/LocaleInformation_en_NZ.properties.o gnu/java/locale/.libs/LocaleInformation_en_PH.properties.o gnu/java/locale/.libs/LocaleInformation_en_PK.properties.o gnu/java/locale/.libs/LocaleInformation_en_SG.properties.o gnu/java/locale/.libs/LocaleInformation_en_Shaw.properties.o gnu/java/locale/.libs/LocaleInformation_en_TT.properties.o gnu/java/locale/.libs/LocaleInformation_en_UM.properties.o gnu/java/locale/.libs/LocaleInformation_en_US.properties.o gnu/java/locale/.libs/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/.libs/LocaleInformation_en_VI.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZA.properties.o gnu/java/locale/.libs/LocaleInformation_en_ZW.properties.o gnu/java/locale/.libs/LocaleInformation_eo.properties.o gnu/java/locale/.libs/LocaleInformation_es.properties.o gnu/java/locale/.libs/LocaleInformation_es_AR.properties.o gnu/java/locale/.libs/LocaleInformation_es_BO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CL.properties.o gnu/java/locale/.libs/LocaleInformation_es_CO.properties.o gnu/java/locale/.libs/LocaleInformation_es_CR.properties.o gnu/java/locale/.libs/LocaleInformation_es_DO.properties.o gnu/java/locale/.libs/LocaleInformation_es_EC.properties.o gnu/java/locale/.libs/LocaleInformation_es_ES.properties.o gnu/java/locale/.libs/LocaleInformation_es_GT.properties.o gnu/java/locale/.libs/LocaleInformation_es_HN.properties.o gnu/java/locale/.libs/LocaleInformation_es_MX.properties.o gnu/java/locale/.libs/LocaleInformation_es_NI.properties.o gnu/java/locale/.libs/LocaleInformation_es_PA.properties.o gnu/java/locale/.libs/LocaleInformation_es_PE.properties.o gnu/java/locale/.libs/LocaleInformation_es_PR.properties.o gnu/java/locale/.libs/LocaleInformation_es_PY.properties.o gnu/java/locale/.libs/LocaleInformation_es_SV.properties.o gnu/java/locale/.libs/LocaleInformation_es_US.properties.o gnu/java/locale/.libs/LocaleInformation_es_UY.properties.o gnu/java/locale/.libs/LocaleInformation_es_VE.properties.o gnu/java/locale/.libs/LocaleInformation_et.properties.o gnu/java/locale/.libs/LocaleInformation_et_EE.properties.o gnu/java/locale/.libs/LocaleInformation_eu.properties.o gnu/java/locale/.libs/LocaleInformation_eu_ES.properties.o gnu/java/locale/.libs/LocaleInformation_fa.properties.o gnu/java/locale/.libs/LocaleInformation_fa_AF.properties.o gnu/java/locale/.libs/LocaleInformation_fa_IR.properties.o gnu/java/locale/.libs/LocaleInformation_fi.properties.o gnu/java/locale/.libs/LocaleInformation_fi_FI.properties.o gnu/java/locale/.libs/LocaleInformation_fil.properties.o gnu/java/locale/.libs/LocaleInformation_fo.properties.o gnu/java/locale/.libs/LocaleInformation_fo_FO.properties.o gnu/java/locale/.libs/LocaleInformation_fr.properties.o gnu/java/locale/.libs/LocaleInformation_fr_BE.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CA.properties.o gnu/java/locale/.libs/LocaleInformation_fr_CH.properties.o gnu/java/locale/.libs/LocaleInformation_fr_LU.properties.o gnu/java/locale/.libs/LocaleInformation_fur.properties.o gnu/java/locale/.libs/LocaleInformation_ga.properties.o gnu/java/locale/.libs/LocaleInformation_ga_IE.properties.o gnu/java/locale/.libs/LocaleInformation_gaa.properties.o gnu/java/locale/.libs/LocaleInformation_gez.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ER.properties.o gnu/java/locale/.libs/LocaleInformation_gez_ET.properties.o gnu/java/locale/.libs/LocaleInformation_gl.properties.o gnu/java/locale/.libs/LocaleInformation_gl_ES.properties.o gnu/java/locale/.libs/LocaleInformation_gu.properties.o gnu/java/locale/.libs/LocaleInformation_gu_IN.properties.o gnu/java/locale/.libs/LocaleInformation_gv.properties.o gnu/java/locale/.libs/LocaleInformation_gv_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ha.properties.o gnu/java/locale/.libs/LocaleInformation_ha_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_haw.properties.o gnu/java/locale/.libs/LocaleInformation_haw_US.properties.o gnu/java/locale/.libs/LocaleInformation_he.properties.o gnu/java/locale/.libs/LocaleInformation_he_IL.properties.o gnu/java/locale/.libs/LocaleInformation_hi.properties.o gnu/java/locale/.libs/LocaleInformation_hi_IN.properties.o gnu/java/locale/.libs/LocaleInformation_hr.properties.o gnu/java/locale/.libs/LocaleInformation_hu.properties.o gnu/java/locale/.libs/LocaleInformation_hu_HU.properties.o gnu/java/locale/.libs/LocaleInformation_hy.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM.properties.o gnu/java/locale/.libs/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/.libs/LocaleInformation_ia.properties.o gnu/java/locale/.libs/LocaleInformation_id.properties.o gnu/java/locale/.libs/LocaleInformation_id_ID.properties.o gnu/java/locale/.libs/LocaleInformation_ig.properties.o gnu/java/locale/.libs/LocaleInformation_ii.properties.o gnu/java/locale/.libs/LocaleInformation_is.properties.o gnu/java/locale/.libs/LocaleInformation_is_IS.properties.o gnu/java/locale/.libs/LocaleInformation_it.properties.o gnu/java/locale/.libs/LocaleInformation_it_CH.properties.o gnu/java/locale/.libs/LocaleInformation_it_IT.properties.o gnu/java/locale/.libs/LocaleInformation_iu.properties.o gnu/java/locale/.libs/LocaleInformation_ja.properties.o gnu/java/locale/.libs/LocaleInformation_ja_JP.properties.o gnu/java/locale/.libs/LocaleInformation_ka.properties.o gnu/java/locale/.libs/LocaleInformation_kaj.properties.o gnu/java/locale/.libs/LocaleInformation_kam.properties.o gnu/java/locale/.libs/LocaleInformation_kcg.properties.o gnu/java/locale/.libs/LocaleInformation_kfo.properties.o gnu/java/locale/.libs/LocaleInformation_kk.properties.o gnu/java/locale/.libs/LocaleInformation_kk_KZ.properties.o gnu/java/locale/.libs/LocaleInformation_kl.properties.o gnu/java/locale/.libs/LocaleInformation_kl_GL.properties.o gnu/java/locale/.libs/LocaleInformation_km.properties.o gnu/java/locale/.libs/LocaleInformation_km_KH.properties.o gnu/java/locale/.libs/LocaleInformation_kn.properties.o gnu/java/locale/.libs/LocaleInformation_kn_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ko.properties.o gnu/java/locale/.libs/LocaleInformation_ko_KR.properties.o gnu/java/locale/.libs/LocaleInformation_kok.properties.o gnu/java/locale/.libs/LocaleInformation_kok_IN.properties.o gnu/java/locale/.libs/LocaleInformation_kpe.properties.o gnu/java/locale/.libs/LocaleInformation_ku.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_ku_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_kw.properties.o gnu/java/locale/.libs/LocaleInformation_kw_GB.properties.o gnu/java/locale/.libs/LocaleInformation_ky.properties.o gnu/java/locale/.libs/LocaleInformation_ln.properties.o gnu/java/locale/.libs/LocaleInformation_lo.properties.o gnu/java/locale/.libs/LocaleInformation_lo_LA.properties.o gnu/java/locale/.libs/LocaleInformation_lt.properties.o gnu/java/locale/.libs/LocaleInformation_lt_LT.properties.o gnu/java/locale/.libs/LocaleInformation_lv.properties.o gnu/java/locale/.libs/LocaleInformation_lv_LV.properties.o gnu/java/locale/.libs/LocaleInformation_mk.properties.o gnu/java/locale/.libs/LocaleInformation_ml.properties.o gnu/java/locale/.libs/LocaleInformation_ml_IN.properties.o gnu/java/locale/.libs/LocaleInformation_mn.properties.o gnu/java/locale/.libs/LocaleInformation_mr.properties.o gnu/java/locale/.libs/LocaleInformation_mr_IN.properties.o gnu/java/locale/.libs/LocaleInformation_ms.properties.o gnu/java/locale/.libs/LocaleInformation_ms_BN.properties.o gnu/java/locale/.libs/LocaleInformation_ms_MY.properties.o gnu/java/locale/.libs/LocaleInformation_mt.properties.o gnu/java/locale/.libs/LocaleInformation_mt_MT.properties.o gnu/java/locale/.libs/LocaleInformation_my.properties.o gnu/java/locale/.libs/LocaleInformation_nb.properties.o gnu/java/locale/.libs/LocaleInformation_nb_NO.properties.o gnu/java/locale/.libs/LocaleInformation_ne.properties.o gnu/java/locale/.libs/LocaleInformation_nl.properties.o gnu/java/locale/.libs/LocaleInformation_nl_BE.properties.o gnu/java/locale/.libs/LocaleInformation_nl_NL.properties.o gnu/java/locale/.libs/LocaleInformation_nn.properties.o gnu/java/locale/.libs/LocaleInformation_nn_NO.properties.o gnu/java/locale/.libs/LocaleInformation_nr.properties.o gnu/java/locale/.libs/LocaleInformation_nso.properties.o gnu/java/locale/.libs/LocaleInformation_ny.properties.o gnu/java/locale/.libs/LocaleInformation_om.properties.o gnu/java/locale/.libs/LocaleInformation_om_ET.properties.o gnu/java/locale/.libs/LocaleInformation_om_KE.properties.o gnu/java/locale/.libs/LocaleInformation_or.properties.o gnu/java/locale/.libs/LocaleInformation_or_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pa.properties.o gnu/java/locale/.libs/LocaleInformation_pa_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_pa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_pl.properties.o gnu/java/locale/.libs/LocaleInformation_pl_PL.properties.o gnu/java/locale/.libs/LocaleInformation_ps.properties.o gnu/java/locale/.libs/LocaleInformation_ps_AF.properties.o gnu/java/locale/.libs/LocaleInformation_pt.properties.o gnu/java/locale/.libs/LocaleInformation_pt_BR.properties.o gnu/java/locale/.libs/LocaleInformation_pt_PT.properties.o gnu/java/locale/.libs/LocaleInformation_ro.properties.o gnu/java/locale/.libs/LocaleInformation_ro_RO.properties.o gnu/java/locale/.libs/LocaleInformation_ru.properties.o gnu/java/locale/.libs/LocaleInformation_ru_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ru_UA.properties.o gnu/java/locale/.libs/LocaleInformation_rw.properties.o gnu/java/locale/.libs/LocaleInformation_sa.properties.o gnu/java/locale/.libs/LocaleInformation_sa_IN.properties.o gnu/java/locale/.libs/LocaleInformation_se.properties.o gnu/java/locale/.libs/LocaleInformation_se_FI.properties.o gnu/java/locale/.libs/LocaleInformation_si.properties.o gnu/java/locale/.libs/LocaleInformation_sid.properties.o gnu/java/locale/.libs/LocaleInformation_sid_ET.properties.o gnu/java/locale/.libs/LocaleInformation_sk.properties.o gnu/java/locale/.libs/LocaleInformation_sk_SK.properties.o gnu/java/locale/.libs/LocaleInformation_sl.properties.o gnu/java/locale/.libs/LocaleInformation_sl_SI.properties.o gnu/java/locale/.libs/LocaleInformation_so.properties.o gnu/java/locale/.libs/LocaleInformation_so_DJ.properties.o gnu/java/locale/.libs/LocaleInformation_so_ET.properties.o gnu/java/locale/.libs/LocaleInformation_so_KE.properties.o gnu/java/locale/.libs/LocaleInformation_so_SO.properties.o gnu/java/locale/.libs/LocaleInformation_sq.properties.o gnu/java/locale/.libs/LocaleInformation_sq_AL.properties.o gnu/java/locale/.libs/LocaleInformation_sr.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/.libs/LocaleInformation_sr_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ss.properties.o gnu/java/locale/.libs/LocaleInformation_ssy.properties.o gnu/java/locale/.libs/LocaleInformation_st.properties.o gnu/java/locale/.libs/LocaleInformation_sv.properties.o gnu/java/locale/.libs/LocaleInformation_sv_FI.properties.o gnu/java/locale/.libs/LocaleInformation_sv_SE.properties.o gnu/java/locale/.libs/LocaleInformation_sw.properties.o gnu/java/locale/.libs/LocaleInformation_sw_KE.properties.o gnu/java/locale/.libs/LocaleInformation_sw_TZ.properties.o gnu/java/locale/.libs/LocaleInformation_syr.properties.o gnu/java/locale/.libs/LocaleInformation_syr_SY.properties.o gnu/java/locale/.libs/LocaleInformation_ta.properties.o gnu/java/locale/.libs/LocaleInformation_ta_IN.properties.o gnu/java/locale/.libs/LocaleInformation_te.properties.o gnu/java/locale/.libs/LocaleInformation_te_IN.properties.o gnu/java/locale/.libs/LocaleInformation_tg.properties.o gnu/java/locale/.libs/LocaleInformation_th.properties.o gnu/java/locale/.libs/LocaleInformation_th_TH.properties.o gnu/java/locale/.libs/LocaleInformation_ti.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ER.properties.o gnu/java/locale/.libs/LocaleInformation_ti_ET.properties.o gnu/java/locale/.libs/LocaleInformation_tig.properties.o gnu/java/locale/.libs/LocaleInformation_tig_ER.properties.o gnu/java/locale/.libs/LocaleInformation_tn.properties.o gnu/java/locale/.libs/LocaleInformation_to.properties.o gnu/java/locale/.libs/LocaleInformation_tr.properties.o gnu/java/locale/.libs/LocaleInformation_tr_TR.properties.o gnu/java/locale/.libs/LocaleInformation_trv.properties.o gnu/java/locale/.libs/LocaleInformation_ts.properties.o gnu/java/locale/.libs/LocaleInformation_tt.properties.o gnu/java/locale/.libs/LocaleInformation_tt_RU.properties.o gnu/java/locale/.libs/LocaleInformation_ug.properties.o gnu/java/locale/.libs/LocaleInformation_uk.properties.o gnu/java/locale/.libs/LocaleInformation_uk_UA.properties.o gnu/java/locale/.libs/LocaleInformation_ur.properties.o gnu/java/locale/.libs/LocaleInformation_ur_IN.properties.o gnu/java/locale/.libs/LocaleInformation_uz.properties.o gnu/java/locale/.libs/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Arab.properties.o gnu/java/locale/.libs/LocaleInformation_uz_Latn.properties.o gnu/java/locale/.libs/LocaleInformation_ve.properties.o gnu/java/locale/.libs/LocaleInformation_vi.properties.o gnu/java/locale/.libs/LocaleInformation_wal.properties.o gnu/java/locale/.libs/LocaleInformation_wal_ET.properties.o gnu/java/locale/.libs/LocaleInformation_wo.properties.o gnu/java/locale/.libs/LocaleInformation_xh.properties.o gnu/java/locale/.libs/LocaleInformation_yo.properties.o gnu/java/locale/.libs/LocaleInformation_zh.properties.o gnu/java/locale/.libs/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/.libs/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/.libs/LocaleInformation_zu.properties.o gnu/java/util/regex/.libs/MessagesBundle.properties.o gnu/java/util/regex/.libs/MessagesBundle_fr.properties.o gnu/java/util/regex/.libs/MessagesBundle_it.properties.o gnu/javax/print/.libs/PrinterDialog.properties.o gnu/javax/print/.libs/PrinterDialog_de.properties.o gnu/javax/security/auth/callback/.libs/MessagesBundle.properties.o java/text/.libs/metazones.properties.o java/util/.libs/iso4217.properties.o java/util/.libs/weeks.properties.o javax/imageio/plugins/jpeg/.libs/MessagesBundle.properties.o javax/swing/text/html/.libs/default.css.o org/ietf/jgss/.libs/MessagesBundle.properties.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.o META-INF/services/.libs/java.util.prefs.PreferencesFactory.in.o META-INF/services/.libs/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileReader.o META-INF/services/.libs/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/.libs/javax.sound.sampled.spi.AudioFileReader.o .libs/gnu-CORBA.o .libs/gnu-java-awt-dnd-peer-gtk.o .libs/gnu-java-awt-peer-gtk.o .libs/gnu-java-awt-peer-swing.o .libs/gnu-java-beans.o .libs/gnu-java-lang-management.o .libs/gnu-java-math.o .libs/gnu-java-util-prefs-gconf.o .libs/gnu-javax-management.o .libs/gnu-javax-rmi.o .libs/gnu-javax-sound-midi.o .libs/gnu-xml-aelfred2.o .libs/gnu-xml-dom.o .libs/gnu-xml-libxmlj.o .libs/gnu-xml-pipeline.o .libs/gnu-xml-stream.o .libs/gnu-xml-transform.o .libs/gnu-xml-util.o .libs/gnu-xml-validation.o .libs/gnu-xml-xpath.o .libs/java-lang-management.o .libs/javax-imageio.o .libs/javax-rmi.o .libs/javax-xml.o .libs/org-omg-CORBA.o .libs/org-omg-CORBA_2_3.o .libs/org-omg-CosNaming.o .libs/org-omg-Dynamic.o .libs/org-omg-DynamicAny.o .libs/org-omg-IOP.o .libs/org-omg-Messaging.o .libs/org-omg-PortableInterceptor.o .libs/org-omg-PortableServer.o .libs/org-omg-SendingContext.o .libs/org-omg-stub.o .libs/org-relaxng.o .libs/org-w3c.o .libs/org-xml.o -Wl,--whole-archive ./libltdl/.libs/libltdlc.a classpath/native/fdlibm/.libs/libfdlibm.a ../libffi/.libs/libffi_convenience.a ../zlib/.libs/libzgcj_convenience.a ../boehm-gc/.libs/libgcjgc_convenience.a -Wl,--no-whole-archive -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,--version-script=../../../master/libjava/libgcj.ver -Wl,-soname -Wl,libgcj.so.12 -o .libs/libgcj.so.12.0.0
- libtool: link: (cd ".libs" && rm -f "libgcj.so.12" && ln -s "libgcj.so.12.0.0" "libgcj.so.12")
- libtool: link: (cd ".libs" && rm -f "libgcj.so" && ln -s "libgcj.so.12.0.0" "libgcj.so")
- libtool: link: (cd .libs/libgcj.lax/libltdlc.a && ar x "[...]/hurd/master.build/[ARCH]/libjava/./libltdl/.libs/libltdlc.a")
-@@ -23464,12 +23034,12 @@
- libtool: link: ln org/ietf/jgss/MessagesBundle.properties.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o || cp org/ietf/jgss/MessagesBundle.properties.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o
- libtool: link: ln .libs/libgcj.lax/libffi_convenience.a/debug.o .libs/libgcj.lax/lt91-debug.o || cp .libs/libgcj.lax/libffi_convenience.a/debug.o .libs/libgcj.lax/lt91-debug.o
- libtool: link: ln .libs/libgcj.lax/libgcjgc_convenience.a/misc.o .libs/libgcj.lax/lt92-misc.o || cp .libs/libgcj.lax/libgcjgc_convenience.a/misc.o .libs/libgcj.lax/lt92-misc.o
--libtool: link: ar rc .libs/libgcj.a prims.o jni.o exception.o stacktrace.o link.o defineclass.o verify.o jvmti.o interpret.o gnu/classpath/jdwp/natVMFrame.o gnu/classpath/jdwp/natVMMethod.o gnu/classpath/jdwp/natVMVirtualMachine.o gnu/classpath/natConfiguration.o gnu/classpath/natSystemProperties.o gnu/classpath/natVMStackWalker.o gnu/gcj/natCore.o gnu/gcj/convert/JIS0208_to_Unicode.o gnu/gcj/convert/JIS0212_to_Unicode.o gnu/gcj/convert/Unicode_to_JIS.o gnu/gcj/convert/natIconv.o gnu/gcj/convert/natInput_EUCJIS.o gnu/gcj/convert/natInput_SJIS.o gnu/gcj/convert/natOutput_EUCJIS.o gnu/gcj/convert/natOutput_SJIS.o gnu/gcj/io/natSimpleSHSStream.o gnu/gcj/io/shs.o gnu/gcj/jvmti/natBreakpoint.o gnu/gcj/jvmti/natNormalBreakpoint.o gnu/gcj/runtime/natFinalizerThread.o gnu/gcj/runtime/natSharedLibLoader.o gnu/gcj/runtime/natSystemClassLoader.o gnu/gcj/runtime/natStringBuffer.o gnu/gcj/util/natDebug.o gnu/gcj/util/natGCInfo.o gnu/java/lang/natMainThread.o gnu/java/lang/management/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/natVMCompilationMXBeanImpl.o gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/natVMMemoryMXBeanImpl.o gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/natVMThreadMXBeanImpl.o gnu/java/net/natPlainDatagramSocketImpl.o gnu/java/net/natPlainSocketImpl.o gnu/java/net/protocol/core/natCoreInputStream.o gnu/java/nio/natVMPipe.o gnu/java/nio/natVMSelector.o gnu/java/nio/natNIOServerSocket.o gnu/java/nio/natVMChannel.o gnu/java/nio/channels/natFileChannelImpl.o gnu/java/security/jce/prng/natVMSecureRandom.o java/io/natFile.o java/io/natVMObjectInputStream.o java/io/natVMObjectStreamClass.o java/lang/natCharacter.o java/lang/natClass.o java/lang/natClassLoader.o java/lang/natConcreteProcess.o java/lang/natVMDouble.o java/lang/natVMFloat.o java/lang/natMath.o java/lang/natObject.o java/lang/natRuntime.o java/lang/natString.o java/lang/natAbstractStringBuffer.o java/lang/natSystem.o java/lang/natThread.o java/lang/natThreadLocal.o java/lang/natVMClassLoader.o java/lang/natVMProcess.o java/lang/natVMThrowable.o java/lang/ref/natReference.o java/lang/reflect/natArray.o java/lang/reflect/natConstructor.o java/lang/reflect/natField.o java/lang/reflect/natMethod.o java/lang/reflect/natVMProxy.o java/net/natVMInetAddress.o java/net/natVMNetworkInterface.o java/net/natVMURLConnection.o java/nio/channels/natVMChannels.o java/nio/natVMDirectByteBufferImpl.o java/security/natVMAccessController.o java/security/natVMAccessControlState.o java/text/natCollator.o java/util/natVMTimeZone.o java/util/concurrent/atomic/natAtomicLong.o java/util/logging/natLogger.o java/util/zip/natDeflater.o java/util/zip/natInflater.o sun/misc/natUnsafe.o boehm.o posix.o posix-threads.o java/lang/Object.o java/lang/Class.o java/process-Posix.o gnu/awt.o gnu/awt/j2d.o gnu/classpath.o gnu/classpath/debug.o gnu/classpath/toolkit.o gnu/gcj.o gnu/gcj/convert.o gnu/gcj/io.o gnu/gcj/runtime.o gnu/gcj/util.o .libs/libgcj.lax/lt1-awt.o gnu/java/awt/color.o gnu/java/awt/dnd.o gnu/java/awt/font.o gnu/java/awt/font/autofit.o gnu/java/awt/font/opentype.o gnu/java/awt/font/opentype/truetype.o gnu/java/awt/image.o gnu/java/awt/java2d.o gnu/java/awt/peer.o gnu/java/awt/peer/headless.o gnu/java/awt/print.o .libs/libgcj.lax/lt2-io.o gnu/java/lang.o gnu/java/lang/reflect.o gnu/java/locale.o gnu/java/net.o gnu/java/net/loader.o gnu/java/net/local.o gnu/java/net/protocol/core.o gnu/java/net/protocol/file.o gnu/java/net/protocol/ftp.o gnu/java/net/protocol/gcjlib.o gnu/java/net/protocol/http.o gnu/java/net/protocol/https.o gnu/java/net/protocol/jar.o gnu/java/nio.o gnu/java/nio/channels.o gnu/java/nio/charset.o gnu/java/rmi.o gnu/java/rmi/activation.o gnu/java/rmi/dgc.o gnu/java/rmi/registry.o gnu/java/rmi/server.o gnu/java/security.o gnu/java/security/action.o gnu/java/security/ber.o gnu/java/security/der.o gnu/java/security/hash.o .libs/libgcj.lax/lt3-hash.o gnu/java/security/jce/prng.o gnu/java/security/jce/sig.o gnu/java/security/key.o gnu/java/security/key/dss.o gnu/java/security/key/rsa.o gnu/java/security/pkcs.o .libs/libgcj.lax/lt4-prng.o gnu/java/security/provider.o .libs/libgcj.lax/lt5-sig.o .libs/libgcj.lax/lt6-dss.o .libs/libgcj.lax/lt7-rsa.o .libs/libgcj.lax/lt8-util.o gnu/java/security/x509.o gnu/java/security/x509/ext.o gnu/java/text.o .libs/libgcj.lax/lt9-util.o .libs/libgcj.lax/lt10-jar.o gnu/java/util/prefs.o gnu/java/util/regex.o gnu/javax/activation/viewers.o gnu/javax/crypto.o gnu/javax/crypto/assembly.o gnu/javax/crypto/cipher.o gnu/javax/crypto/jce.o .libs/libgcj.lax/lt11-cipher.o .libs/libgcj.lax/lt12-key.o gnu/javax/crypto/jce/keyring.o gnu/javax/crypto/jce/mac.o gnu/javax/crypto/jce/params.o .libs/libgcj.lax/lt13-prng.o .libs/libgcj.lax/lt14-sig.o gnu/javax/crypto/jce/spec.o .libs/libgcj.lax/lt15-key.o gnu/javax/crypto/key/dh.o gnu/javax/crypto/key/srp6.o .libs/libgcj.lax/lt16-keyring.o gnu/javax/crypto/kwa.o .libs/libgcj.lax/lt17-mac.o gnu/javax/crypto/mode.o gnu/javax/crypto/pad.o .libs/libgcj.lax/lt18-prng.o gnu/javax/crypto/sasl.o gnu/javax/crypto/sasl/anonymous.o gnu/javax/crypto/sasl/crammd5.o gnu/javax/crypto/sasl/plain.o gnu/javax/crypto/sasl/srp.o gnu/javax/imageio.o gnu/javax/imageio/bmp.o gnu/javax/imageio/gif.o gnu/javax/imageio/jpeg.o gnu/javax/imageio/png.o gnu/javax/naming/giop.o gnu/javax/naming/ictxImpl/trans.o gnu/javax/naming/jndi/url/corbaname.o .libs/libgcj.lax/lt19-rmi.o gnu/javax/net/ssl.o .libs/libgcj.lax/lt20-provider.o .libs/libgcj.lax/lt21-print.o gnu/javax/print/ipp.o gnu/javax/print/ipp/attribute.o gnu/javax/print/ipp/attribute/defaults.o gnu/javax/print/ipp/attribute/job.o gnu/javax/print/ipp/attribute/printer.o gnu/javax/print/ipp/attribute/supported.o gnu/javax/security/auth.o gnu/javax/security/auth/callback.o gnu/javax/security/auth/login.o gnu/javax/sound.o gnu/javax/sound/sampled/AU.o gnu/javax/sound/sampled/WAV.o gnu/javax/swing/plaf/gnu.o gnu/javax/swing/plaf/metal.o gnu/javax/swing/text/html.o gnu/javax/swing/text/html/css.o gnu/javax/swing/text/html/parser/GnuParserDelegator.o gnu/javax/swing/text/html/parser/HTML_401F.o gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/gnuDTD.o gnu/javax/swing/text/html/parser/htmlAttributeSet.o gnu/javax/swing/text/html/parser/htmlValidator.o gnu/javax/swing/text/html/parser/models.o gnu/javax/swing/text/html/parser/support.o gnu/javax/swing/text/html/parser/support/low.o gnu/javax/swing/tree.o java/applet.o .libs/libgcj.lax/lt22-awt.o .libs/libgcj.lax/lt23-color.o java/awt/datatransfer.o .libs/libgcj.lax/lt24-dnd.o .libs/libgcj.lax/lt25-peer.o java/awt/event.o .libs/libgcj.lax/lt26-font.o java/awt/geom.o java/awt/im.o java/awt/im/spi.o .libs/libgcj.lax/lt27-image.o java/awt/image/renderable.o .libs/libgcj.lax/lt28-peer.o .libs/libgcj.lax/lt29-print.o java/beans.o java/beans/beancontext.o .libs/libgcj.lax/lt30-io.o .libs/libgcj.lax/lt31-lang.o java/lang/annotation.o java/lang/instrument.o java/lang/ref.o .libs/libgcj.lax/lt32-reflect.o java/math.o .libs/libgcj.lax/lt33-net.o .libs/libgcj.lax/lt34-nio.o .libs/libgcj.lax/lt35-channels.o .libs/libgcj.lax/lt36-spi.o .libs/libgcj.lax/lt37-charset.o .libs/libgcj.lax/lt38-spi.o .libs/libgcj.lax/lt39-rmi.o .libs/libgcj.lax/lt40-activation.o .libs/libgcj.lax/lt41-dgc.o .libs/libgcj.lax/lt42-registry.o .libs/libgcj.lax/lt43-server.o .libs/libgcj.lax/lt44-security.o java/security/acl.o java/security/cert.o java/security/interfaces.o .libs/libgcj.lax/lt45-spec.o java/sql.o .libs/libgcj.lax/lt46-text.o .libs/libgcj.lax/lt47-spi.o .libs/libgcj.lax/lt48-util.o java/util/concurrent.o java/util/concurrent/atomic.o java/util/concurrent/locks.o .libs/libgcj.lax/lt49-jar.o java/util/logging.o .libs/libgcj.lax/lt50-prefs.o .libs/libgcj.lax/lt51-regex.o .libs/libgcj.lax/lt52-spi.o java/util/zip.o javax/accessibility.o .libs/libgcj.lax/lt53-activation.o javax/activity.o .libs/libgcj.lax/lt54-crypto.o .libs/libgcj.lax/lt55-interfaces.o .libs/libgcj.lax/lt56-spec.o javax/management.o javax/management/loading.o javax/management/openmbean.o javax/management/remote.o .libs/libgcj.lax/lt57-rmi.o javax/naming.o javax/naming/directory.o .libs/libgcj.lax/lt58-event.o javax/naming/ldap.o .libs/libgcj.lax/lt59-spi.o .libs/libgcj.lax/lt60-net.o .libs/libgcj.lax/lt61-ssl.o .libs/libgcj.lax/lt62-print.o .libs/libgcj.lax/lt63-attribute.o javax/print/attribute/standard.o .libs/libgcj.lax/lt64-event.o .libs/libgcj.lax/lt65-auth.o .libs/libgcj.lax/lt66-callback.o javax/security/auth/kerberos.o .libs/libgcj.lax/lt67-login.o .libs/libgcj.lax/lt68-spi.o javax/security/auth/x500.o .libs/libgcj.lax/lt69-cert.o .libs/libgcj.lax/lt70-sasl.o javax/sound/midi.o .libs/libgcj.lax/lt71-spi.o javax/sound/sampled.o .libs/libgcj.lax/lt72-spi.o .libs/libgcj.lax/lt73-sql.o javax/swing.o javax/swing/border.o javax/swing/colorchooser.o .libs/libgcj.lax/lt74-event.o javax/swing/filechooser.o javax/swing/plaf.o javax/swing/plaf/basic.o .libs/libgcj.lax/lt75-metal.o javax/swing/plaf/multi.o javax/swing/plaf/synth.o javax/swing/table.o .libs/libgcj.lax/lt76-text.o .libs/libgcj.lax/lt77-html.o javax/swing/text/html/parser.o javax/swing/text/rtf.o .libs/libgcj.lax/lt78-tree.o javax/swing/undo.o javax/tools.o javax/transaction.o javax/transaction/xa.o org/ietf/jgss.o .libs/libgcj.lax/lt79-awt.o sun/misc.o .libs/libgcj.lax/lt80-reflect.o .libs/libgcj.lax/lt81-annotation.o .libs/libgcj.lax/lt82-misc.o gnu/classpath/jdwp.o .libs/libgcj.lax/lt83-event.o gnu/classpath/jdwp/event/filters.o .libs/libgcj.lax/lt84-exception.o gnu/classpath/jdwp/id.o gnu/classpath/jdwp/processor.o gnu/classpath/jdwp/transport.o .libs/libgcj.lax/lt85-util.o gnu/classpath/jdwp/value.o .libs/libgcj.lax/lt86-jvmti.o gnu/java/awt/font/fonts.properties.o gnu/java/awt/peer/gtk/font.properties.o .libs/libgcj.lax/lt87-fonts.properties.o gnu/java/awt/peer/x/xfonts.properties.o gnu/java/locale/LocaleInformation.properties.o gnu/java/locale/LocaleInformation_aa.properties.o gnu/java/locale/LocaleInformation_aa_DJ.properties.o gnu/java/locale/LocaleInformation_aa_ER.properties.o gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/LocaleInformation_aa_ET.properties.o gnu/java/locale/LocaleInformation_af.properties.o gnu/java/locale/LocaleInformation_af_NA.properties.o gnu/java/locale/LocaleInformation_af_ZA.properties.o gnu/java/locale/LocaleInformation_ak.properties.o gnu/java/locale/LocaleInformation_am.properties.o gnu/java/locale/LocaleInformation_am_ET.properties.o gnu/java/locale/LocaleInformation_ar.properties.o gnu/java/locale/LocaleInformation_ar_DZ.properties.o gnu/java/locale/LocaleInformation_ar_JO.properties.o gnu/java/locale/LocaleInformation_ar_LB.properties.o gnu/java/locale/LocaleInformation_ar_MA.properties.o gnu/java/locale/LocaleInformation_ar_QA.properties.o gnu/java/locale/LocaleInformation_ar_SA.properties.o gnu/java/locale/LocaleInformation_ar_SY.properties.o gnu/java/locale/LocaleInformation_ar_TN.properties.o gnu/java/locale/LocaleInformation_ar_YE.properties.o gnu/java/locale/LocaleInformation_as.properties.o gnu/java/locale/LocaleInformation_as_IN.properties.o gnu/java/locale/LocaleInformation_az.properties.o gnu/java/locale/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/LocaleInformation_be.properties.o gnu/java/locale/LocaleInformation_be_BY.properties.o gnu/java/locale/LocaleInformation_bg.properties.o gnu/java/locale/LocaleInformation_bg_BG.properties.o gnu/java/locale/LocaleInformation_bn.properties.o gnu/java/locale/LocaleInformation_bn_IN.properties.o gnu/java/locale/LocaleInformation_bo.properties.o gnu/java/locale/LocaleInformation_bs.properties.o gnu/java/locale/LocaleInformation_byn.properties.o gnu/java/locale/LocaleInformation_byn_ER.properties.o gnu/java/locale/LocaleInformation_ca.properties.o gnu/java/locale/LocaleInformation_ca_ES.properties.o gnu/java/locale/LocaleInformation_cch.properties.o gnu/java/locale/LocaleInformation_cop.properties.o gnu/java/locale/LocaleInformation_cs.properties.o gnu/java/locale/LocaleInformation_cs_CZ.properties.o gnu/java/locale/LocaleInformation_cy.properties.o gnu/java/locale/LocaleInformation_cy_GB.properties.o gnu/java/locale/LocaleInformation_da.properties.o gnu/java/locale/LocaleInformation_da_DK.properties.o gnu/java/locale/LocaleInformation_de.properties.o gnu/java/locale/LocaleInformation_de_AT.properties.o gnu/java/locale/LocaleInformation_de_BE.properties.o gnu/java/locale/LocaleInformation_de_CH.properties.o gnu/java/locale/LocaleInformation_de_DE.properties.o gnu/java/locale/LocaleInformation_de_LI.properties.o gnu/java/locale/LocaleInformation_de_LU.properties.o gnu/java/locale/LocaleInformation_dv.properties.o gnu/java/locale/LocaleInformation_dv_MV.properties.o gnu/java/locale/LocaleInformation_dz.properties.o gnu/java/locale/LocaleInformation_dz_BT.properties.o gnu/java/locale/LocaleInformation_ee.properties.o gnu/java/locale/LocaleInformation_el.properties.o gnu/java/locale/LocaleInformation_el_CY.properties.o gnu/java/locale/LocaleInformation_el_GR.properties.o gnu/java/locale/LocaleInformation_en.properties.o gnu/java/locale/LocaleInformation_en_AS.properties.o gnu/java/locale/LocaleInformation_en_AU.properties.o gnu/java/locale/LocaleInformation_en_BE.properties.o gnu/java/locale/LocaleInformation_en_BW.properties.o gnu/java/locale/LocaleInformation_en_BZ.properties.o gnu/java/locale/LocaleInformation_en_CA.properties.o gnu/java/locale/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/LocaleInformation_en_GB.properties.o gnu/java/locale/LocaleInformation_en_GU.properties.o gnu/java/locale/LocaleInformation_en_HK.properties.o gnu/java/locale/LocaleInformation_en_IE.properties.o gnu/java/locale/LocaleInformation_en_IN.properties.o gnu/java/locale/LocaleInformation_en_JM.properties.o gnu/java/locale/LocaleInformation_en_MH.properties.o gnu/java/locale/LocaleInformation_en_MP.properties.o gnu/java/locale/LocaleInformation_en_MT.properties.o gnu/java/locale/LocaleInformation_en_NA.properties.o gnu/java/locale/LocaleInformation_en_NZ.properties.o gnu/java/locale/LocaleInformation_en_PH.properties.o gnu/java/locale/LocaleInformation_en_PK.properties.o gnu/java/locale/LocaleInformation_en_SG.properties.o gnu/java/locale/LocaleInformation_en_Shaw.properties.o gnu/java/locale/LocaleInformation_en_TT.properties.o gnu/java/locale/LocaleInformation_en_UM.properties.o gnu/java/locale/LocaleInformation_en_US.properties.o gnu/java/locale/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/LocaleInformation_en_VI.properties.o gnu/java/locale/LocaleInformation_en_ZA.properties.o gnu/java/locale/LocaleInformation_en_ZW.properties.o gnu/java/locale/LocaleInformation_eo.properties.o gnu/java/locale/LocaleInformation_es.properties.o gnu/java/locale/LocaleInformation_es_AR.properties.o gnu/java/locale/LocaleInformation_es_BO.properties.o gnu/java/locale/LocaleInformation_es_CL.properties.o gnu/java/locale/LocaleInformation_es_CO.properties.o gnu/java/locale/LocaleInformation_es_CR.properties.o gnu/java/locale/LocaleInformation_es_DO.properties.o gnu/java/locale/LocaleInformation_es_EC.properties.o gnu/java/locale/LocaleInformation_es_ES.properties.o gnu/java/locale/LocaleInformation_es_GT.properties.o gnu/java/locale/LocaleInformation_es_HN.properties.o gnu/java/locale/LocaleInformation_es_MX.properties.o gnu/java/locale/LocaleInformation_es_NI.properties.o gnu/java/locale/LocaleInformation_es_PA.properties.o gnu/java/locale/LocaleInformation_es_PE.properties.o gnu/java/locale/LocaleInformation_es_PR.properties.o gnu/java/locale/LocaleInformation_es_PY.properties.o gnu/java/locale/LocaleInformation_es_SV.properties.o gnu/java/locale/LocaleInformation_es_US.properties.o gnu/java/locale/LocaleInformation_es_UY.properties.o gnu/java/locale/LocaleInformation_es_VE.properties.o gnu/java/locale/LocaleInformation_et.properties.o gnu/java/locale/LocaleInformation_et_EE.properties.o gnu/java/locale/LocaleInformation_eu.properties.o gnu/java/locale/LocaleInformation_eu_ES.properties.o gnu/java/locale/LocaleInformation_fa.properties.o gnu/java/locale/LocaleInformation_fa_AF.properties.o gnu/java/locale/LocaleInformation_fa_IR.properties.o gnu/java/locale/LocaleInformation_fi.properties.o gnu/java/locale/LocaleInformation_fi_FI.properties.o gnu/java/locale/LocaleInformation_fil.properties.o gnu/java/locale/LocaleInformation_fo.properties.o gnu/java/locale/LocaleInformation_fo_FO.properties.o gnu/java/locale/LocaleInformation_fr.properties.o gnu/java/locale/LocaleInformation_fr_BE.properties.o gnu/java/locale/LocaleInformation_fr_CA.properties.o gnu/java/locale/LocaleInformation_fr_CH.properties.o gnu/java/locale/LocaleInformation_fr_LU.properties.o gnu/java/locale/LocaleInformation_fur.properties.o gnu/java/locale/LocaleInformation_ga.properties.o gnu/java/locale/LocaleInformation_ga_IE.properties.o gnu/java/locale/LocaleInformation_gaa.properties.o gnu/java/locale/LocaleInformation_gez.properties.o gnu/java/locale/LocaleInformation_gez_ER.properties.o gnu/java/locale/LocaleInformation_gez_ET.properties.o gnu/java/locale/LocaleInformation_gl.properties.o gnu/java/locale/LocaleInformation_gl_ES.properties.o gnu/java/locale/LocaleInformation_gu.properties.o gnu/java/locale/LocaleInformation_gu_IN.properties.o gnu/java/locale/LocaleInformation_gv.properties.o gnu/java/locale/LocaleInformation_gv_GB.properties.o gnu/java/locale/LocaleInformation_ha.properties.o gnu/java/locale/LocaleInformation_ha_Arab.properties.o gnu/java/locale/LocaleInformation_haw.properties.o gnu/java/locale/LocaleInformation_haw_US.properties.o gnu/java/locale/LocaleInformation_he.properties.o gnu/java/locale/LocaleInformation_he_IL.properties.o gnu/java/locale/LocaleInformation_hi.properties.o gnu/java/locale/LocaleInformation_hi_IN.properties.o gnu/java/locale/LocaleInformation_hr.properties.o gnu/java/locale/LocaleInformation_hu.properties.o gnu/java/locale/LocaleInformation_hu_HU.properties.o gnu/java/locale/LocaleInformation_hy.properties.o gnu/java/locale/LocaleInformation_hy_AM.properties.o gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/LocaleInformation_ia.properties.o gnu/java/locale/LocaleInformation_id.properties.o gnu/java/locale/LocaleInformation_id_ID.properties.o gnu/java/locale/LocaleInformation_ig.properties.o gnu/java/locale/LocaleInformation_ii.properties.o gnu/java/locale/LocaleInformation_is.properties.o gnu/java/locale/LocaleInformation_is_IS.properties.o gnu/java/locale/LocaleInformation_it.properties.o gnu/java/locale/LocaleInformation_it_CH.properties.o gnu/java/locale/LocaleInformation_it_IT.properties.o gnu/java/locale/LocaleInformation_iu.properties.o gnu/java/locale/LocaleInformation_ja.properties.o gnu/java/locale/LocaleInformation_ja_JP.properties.o gnu/java/locale/LocaleInformation_ka.properties.o gnu/java/locale/LocaleInformation_kaj.properties.o gnu/java/locale/LocaleInformation_kam.properties.o gnu/java/locale/LocaleInformation_kcg.properties.o gnu/java/locale/LocaleInformation_kfo.properties.o gnu/java/locale/LocaleInformation_kk.properties.o gnu/java/locale/LocaleInformation_kk_KZ.properties.o gnu/java/locale/LocaleInformation_kl.properties.o gnu/java/locale/LocaleInformation_kl_GL.properties.o gnu/java/locale/LocaleInformation_km.properties.o gnu/java/locale/LocaleInformation_km_KH.properties.o gnu/java/locale/LocaleInformation_kn.properties.o gnu/java/locale/LocaleInformation_kn_IN.properties.o gnu/java/locale/LocaleInformation_ko.properties.o gnu/java/locale/LocaleInformation_ko_KR.properties.o gnu/java/locale/LocaleInformation_kok.properties.o gnu/java/locale/LocaleInformation_kok_IN.properties.o gnu/java/locale/LocaleInformation_kpe.properties.o gnu/java/locale/LocaleInformation_ku.properties.o gnu/java/locale/LocaleInformation_ku_Arab.properties.o gnu/java/locale/LocaleInformation_ku_Latn.properties.o gnu/java/locale/LocaleInformation_kw.properties.o gnu/java/locale/LocaleInformation_kw_GB.properties.o gnu/java/locale/LocaleInformation_ky.properties.o gnu/java/locale/LocaleInformation_ln.properties.o gnu/java/locale/LocaleInformation_lo.properties.o gnu/java/locale/LocaleInformation_lo_LA.properties.o gnu/java/locale/LocaleInformation_lt.properties.o gnu/java/locale/LocaleInformation_lt_LT.properties.o gnu/java/locale/LocaleInformation_lv.properties.o gnu/java/locale/LocaleInformation_lv_LV.properties.o gnu/java/locale/LocaleInformation_mk.properties.o gnu/java/locale/LocaleInformation_ml.properties.o gnu/java/locale/LocaleInformation_ml_IN.properties.o gnu/java/locale/LocaleInformation_mn.properties.o gnu/java/locale/LocaleInformation_mr.properties.o gnu/java/locale/LocaleInformation_mr_IN.properties.o gnu/java/locale/LocaleInformation_ms.properties.o gnu/java/locale/LocaleInformation_ms_BN.properties.o gnu/java/locale/LocaleInformation_ms_MY.properties.o gnu/java/locale/LocaleInformation_mt.properties.o gnu/java/locale/LocaleInformation_mt_MT.properties.o gnu/java/locale/LocaleInformation_my.properties.o gnu/java/locale/LocaleInformation_nb.properties.o gnu/java/locale/LocaleInformation_nb_NO.properties.o gnu/java/locale/LocaleInformation_ne.properties.o gnu/java/locale/LocaleInformation_nl.properties.o gnu/java/locale/LocaleInformation_nl_BE.properties.o gnu/java/locale/LocaleInformation_nl_NL.properties.o gnu/java/locale/LocaleInformation_nn.properties.o gnu/java/locale/LocaleInformation_nn_NO.properties.o gnu/java/locale/LocaleInformation_nr.properties.o gnu/java/locale/LocaleInformation_nso.properties.o gnu/java/locale/LocaleInformation_ny.properties.o gnu/java/locale/LocaleInformation_om.properties.o gnu/java/locale/LocaleInformation_om_ET.properties.o gnu/java/locale/LocaleInformation_om_KE.properties.o gnu/java/locale/LocaleInformation_or.properties.o gnu/java/locale/LocaleInformation_or_IN.properties.o gnu/java/locale/LocaleInformation_pa.properties.o gnu/java/locale/LocaleInformation_pa_Arab.properties.o gnu/java/locale/LocaleInformation_pa_IN.properties.o gnu/java/locale/LocaleInformation_pl.properties.o gnu/java/locale/LocaleInformation_pl_PL.properties.o gnu/java/locale/LocaleInformation_ps.properties.o gnu/java/locale/LocaleInformation_ps_AF.properties.o gnu/java/locale/LocaleInformation_pt.properties.o gnu/java/locale/LocaleInformation_pt_BR.properties.o gnu/java/locale/LocaleInformation_pt_PT.properties.o gnu/java/locale/LocaleInformation_ro.properties.o gnu/java/locale/LocaleInformation_ro_RO.properties.o gnu/java/locale/LocaleInformation_ru.properties.o gnu/java/locale/LocaleInformation_ru_RU.properties.o gnu/java/locale/LocaleInformation_ru_UA.properties.o gnu/java/locale/LocaleInformation_rw.properties.o gnu/java/locale/LocaleInformation_sa.properties.o gnu/java/locale/LocaleInformation_sa_IN.properties.o gnu/java/locale/LocaleInformation_se.properties.o gnu/java/locale/LocaleInformation_se_FI.properties.o gnu/java/locale/LocaleInformation_si.properties.o gnu/java/locale/LocaleInformation_sid.properties.o gnu/java/locale/LocaleInformation_sid_ET.properties.o gnu/java/locale/LocaleInformation_sk.properties.o gnu/java/locale/LocaleInformation_sk_SK.properties.o gnu/java/locale/LocaleInformation_sl.properties.o gnu/java/locale/LocaleInformation_sl_SI.properties.o gnu/java/locale/LocaleInformation_so.properties.o gnu/java/locale/LocaleInformation_so_DJ.properties.o gnu/java/locale/LocaleInformation_so_ET.properties.o gnu/java/locale/LocaleInformation_so_KE.properties.o gnu/java/locale/LocaleInformation_so_SO.properties.o gnu/java/locale/LocaleInformation_sq.properties.o gnu/java/locale/LocaleInformation_sq_AL.properties.o gnu/java/locale/LocaleInformation_sr.properties.o gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_Latn.properties.o gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/LocaleInformation_ss.properties.o gnu/java/locale/LocaleInformation_ssy.properties.o gnu/java/locale/LocaleInformation_st.properties.o gnu/java/locale/LocaleInformation_sv.properties.o gnu/java/locale/LocaleInformation_sv_FI.properties.o gnu/java/locale/LocaleInformation_sv_SE.properties.o gnu/java/locale/LocaleInformation_sw.properties.o gnu/java/locale/LocaleInformation_sw_KE.properties.o gnu/java/locale/LocaleInformation_sw_TZ.properties.o gnu/java/locale/LocaleInformation_syr.properties.o gnu/java/locale/LocaleInformation_syr_SY.properties.o gnu/java/locale/LocaleInformation_ta.properties.o gnu/java/locale/LocaleInformation_ta_IN.properties.o gnu/java/locale/LocaleInformation_te.properties.o gnu/java/locale/LocaleInformation_te_IN.properties.o gnu/java/locale/LocaleInformation_tg.properties.o gnu/java/locale/LocaleInformation_th.properties.o gnu/java/locale/LocaleInformation_th_TH.properties.o gnu/java/locale/LocaleInformation_ti.properties.o gnu/java/locale/LocaleInformation_ti_ER.properties.o gnu/java/locale/LocaleInformation_ti_ET.properties.o gnu/java/locale/LocaleInformation_tig.properties.o gnu/java/locale/LocaleInformation_tig_ER.properties.o gnu/java/locale/LocaleInformation_tn.properties.o gnu/java/locale/LocaleInformation_to.properties.o gnu/java/locale/LocaleInformation_tr.properties.o gnu/java/locale/LocaleInformation_tr_TR.properties.o gnu/java/locale/LocaleInformation_trv.properties.o gnu/java/locale/LocaleInformation_ts.properties.o gnu/java/locale/LocaleInformation_tt.properties.o gnu/java/locale/LocaleInformation_tt_RU.properties.o gnu/java/locale/LocaleInformation_ug.properties.o gnu/java/locale/LocaleInformation_uk.properties.o gnu/java/locale/LocaleInformation_uk_UA.properties.o gnu/java/locale/LocaleInformation_ur.properties.o gnu/java/locale/LocaleInformation_ur_IN.properties.o gnu/java/locale/LocaleInformation_uz.properties.o gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Latn.properties.o gnu/java/locale/LocaleInformation_ve.properties.o gnu/java/locale/LocaleInformation_vi.properties.o gnu/java/locale/LocaleInformation_wal.properties.o gnu/java/locale/LocaleInformation_wal_ET.properties.o gnu/java/locale/LocaleInformation_wo.properties.o gnu/java/locale/LocaleInformation_xh.properties.o gnu/java/locale/LocaleInformation_yo.properties.o gnu/java/locale/LocaleInformation_zh.properties.o gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/LocaleInformation_zh_Hant.properties.o gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/LocaleInformation_zu.properties.o gnu/java/util/regex/MessagesBundle.properties.o gnu/java/util/regex/MessagesBundle_fr.properties.o gnu/java/util/regex/MessagesBundle_it.properties.o gnu/javax/print/PrinterDialog.properties.o gnu/javax/print/PrinterDialog_de.properties.o .libs/libgcj.lax/lt88-MessagesBundle.properties.o java/text/metazones.properties.o java/util/iso4217.properties.o java/util/weeks.properties.o .libs/libgcj.lax/lt89-MessagesBundle.properties.o javax/swing/text/html/default.css.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o META-INF/services/java.util.prefs.PreferencesFactory.o META-INF/services/java.util.prefs.PreferencesFactory.in.o META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/javax.sound.midi.spi.MidiFileReader.o META-INF/services/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/javax.sound.sampled.spi.AudioFileReader.o gnu-CORBA.o gnu-java-awt-dnd-peer-gtk.o gnu-java-awt-peer-gtk.o gnu-java-awt-peer-swing.o gnu-java-beans.o gnu-java-lang-management.o gnu-java-math.o gnu-java-util-prefs-gconf.o gnu-javax-management.o gnu-javax-rmi.o gnu-javax-sound-midi.o gnu-xml-aelfred2.o gnu-xml-dom.o gnu-xml-libxmlj.o gnu-xml-pipeline.o gnu-xml-stream.o gnu-xml-transform.o gnu-xml-util.o gnu-xml-validation.o gnu-xml-xpath.o java-lang-management.o javax-imageio.o javax-rmi.o javax-xml.o org-omg-CORBA.o org-omg-CORBA_2_3.o org-omg-CosNaming.o org-omg-Dynamic.o org-omg-DynamicAny.o org-omg-IOP.o org-omg-Messaging.o org-omg-PortableInterceptor.o org-omg-PortableServer.o org-omg-SendingContext.o org-omg-stub.o org-relaxng.o org-w3c.o org-xml.o .libs/libgcj.lax/libltdlc.a/ltdl.o .libs/libgcj.lax/libfdlibm.a/w_remainder.o .libs/libgcj.lax/libfdlibm.a/s_fabs.o .libs/libgcj.lax/libfdlibm.a/w_acos.o .libs/libgcj.lax/libfdlibm.a/sf_fabs.o .libs/libgcj.lax/libfdlibm.a/w_atan2.o .libs/libgcj.lax/libfdlibm.a/e_fmod.o .libs/libgcj.lax/libfdlibm.a/w_log.o .libs/libgcj.lax/libfdlibm.a/e_acos.o .libs/libgcj.lax/libfdlibm.a/e_sqrt.o .libs/libgcj.lax/libfdlibm.a/w_asin.o .libs/libgcj.lax/libfdlibm.a/w_log10.o .libs/libgcj.lax/libfdlibm.a/s_sin.o .libs/libgcj.lax/libfdlibm.a/k_cos.o .libs/libgcj.lax/libfdlibm.a/k_sin.o .libs/libgcj.lax/libfdlibm.a/s_rint.o .libs/libgcj.lax/libfdlibm.a/w_hypot.o .libs/libgcj.lax/libfdlibm.a/k_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/w_sqrt.o .libs/libgcj.lax/libfdlibm.a/s_tan.o .libs/libgcj.lax/libfdlibm.a/s_copysign.o .libs/libgcj.lax/libfdlibm.a/s_finite.o .libs/libgcj.lax/libfdlibm.a/e_hypot.o .libs/libgcj.lax/libfdlibm.a/w_exp.o .libs/libgcj.lax/libfdlibm.a/e_exp.o .libs/libgcj.lax/libfdlibm.a/mprec.o .libs/libgcj.lax/libfdlibm.a/s_log1p.o .libs/libgcj.lax/libfdlibm.a/w_pow.o .libs/libgcj.lax/libfdlibm.a/w_cosh.o .libs/libgcj.lax/libfdlibm.a/w_fmod.o .libs/libgcj.lax/libfdlibm.a/k_tan.o .libs/libgcj.lax/libfdlibm.a/s_expm1.o .libs/libgcj.lax/libfdlibm.a/s_floor.o .libs/libgcj.lax/libfdlibm.a/s_cbrt.o .libs/libgcj.lax/libfdlibm.a/s_ceil.o .libs/libgcj.lax/libfdlibm.a/e_asin.o .libs/libgcj.lax/libfdlibm.a/strtod.o .libs/libgcj.lax/libfdlibm.a/w_sinh.o .libs/libgcj.lax/libfdlibm.a/e_atan2.o .libs/libgcj.lax/libfdlibm.a/s_scalbn.o .libs/libgcj.lax/libfdlibm.a/dtoa.o .libs/libgcj.lax/libfdlibm.a/s_cos.o .libs/libgcj.lax/libfdlibm.a/e_scalb.o .libs/libgcj.lax/libfdlibm.a/e_log.o .libs/libgcj.lax/libfdlibm.a/e_log10.o .libs/libgcj.lax/libfdlibm.a/e_pow.o .libs/libgcj.lax/libfdlibm.a/s_atan.o .libs/libgcj.lax/libfdlibm.a/e_cosh.o .libs/libgcj.lax/libfdlibm.a/s_tanh.o .libs/libgcj.lax/libfdlibm.a/e_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/e_remainder.o .libs/libgcj.lax/libfdlibm.a/sf_rint.o .libs/libgcj.lax/libfdlibm.a/e_sinh.o .libs/libgcj.lax/libffi_convenience.a/ffi.o .libs/libgcj.lax/libffi_convenience.a/sysv.o .libs/libgcj.lax/libffi_convenience.a/raw_api.o .libs/libgcj.lax/lt91-debug.o .libs/libgcj.lax/libffi_convenience.a/types.o .libs/libgcj.lax/libffi_convenience.a/closures.o .libs/libgcj.lax/libffi_convenience.a/prep_cif.o .libs/libgcj.lax/libffi_convenience.a/java_raw_api.o .libs/libgcj.lax/libzgcj_convenience.a/adler32.o .libs/libgcj.lax/libzgcj_convenience.a/gzio.o .libs/libgcj.lax/libzgcj_convenience.a/inftrees.o .libs/libgcj.lax/libzgcj_convenience.a/uncompr.o .libs/libgcj.lax/libzgcj_convenience.a/crc32.o .libs/libgcj.lax/libzgcj_convenience.a/compress.o .libs/libgcj.lax/libzgcj_convenience.a/inffast.o .libs/libgcj.lax/libzgcj_convenience.a/zutil.o .libs/libgcj.lax/libzgcj_convenience.a/inflate.o .libs/libgcj.lax/libzgcj_convenience.a/deflate.o .libs/libgcj.lax/libzgcj_convenience.a/trees.o .libs/libgcj.lax/libzgcj_convenience.a/infback.o .libs/libgcj.lax/libgcjgc_convenience.a/malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/mallocx.o .libs/libgcj.lax/libgcjgc_convenience.a/os_dep.o .libs/libgcj.lax/libgcjgc_convenience.a/typd_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/darwin_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/mark_rts.o .libs/libgcj.lax/libgcjgc_convenience.a/ptr_chck.o .libs/libgcj.lax/libgcjgc_convenience.a/backgraph.o .libs/libgcj.lax/libgcjgc_convenience.a/gc_dlopen.o .libs/libgcj.lax/libgcjgc_convenience.a/pcr_interface.o .libs/libgcj.lax/libgcjgc_convenience.a/reclaim.o .libs/libgcj.lax/libgcjgc_convenience.a/win32_threads.o .libs/libgcj.lax/libgcjgc_convenience.a/allchblk.o .libs/libgcj.lax/libgcjgc_convenience.a/gcj_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/finalize.o .libs/libgcj.lax/lt92-misc.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/blacklst.o .libs/libgcj.lax/libgcjgc_convenience.a/obj_map.o .libs/libgcj.lax/libgcjgc_convenience.a/dbg_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/new_hblk.o .libs/libgcj.lax/libgcjgc_convenience.a/alloc.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_support.o .libs/libgcj.lax/libgcjgc_convenience.a/real_malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/mach_dep.o .libs/libgcj.lax/libgcjgc_convenience.a/headers.o .libs/libgcj.lax/libgcjgc_convenience.a/dyn_load.o .libs/libgcj.lax/libgcjgc_convenience.a/specific.o .libs/libgcj.lax/libgcjgc_convenience.a/checksums.o .libs/libgcj.lax/libgcjgc_convenience.a/stubborn.o .libs/libgcj.lax/libgcjgc_convenience.a/mark.o
-+libtool: link: ar rc .libs/libgcj.a prims.o jni.o exception.o stacktrace.o link.o defineclass.o verify.o jvmti.o interpret.o gnu/classpath/jdwp/natVMFrame.o gnu/classpath/jdwp/natVMMethod.o gnu/classpath/jdwp/natVMVirtualMachine.o gnu/classpath/natConfiguration.o gnu/classpath/natSystemProperties.o gnu/classpath/natVMStackWalker.o gnu/gcj/natCore.o gnu/gcj/convert/JIS0208_to_Unicode.o gnu/gcj/convert/JIS0212_to_Unicode.o gnu/gcj/convert/Unicode_to_JIS.o gnu/gcj/convert/natIconv.o gnu/gcj/convert/natInput_EUCJIS.o gnu/gcj/convert/natInput_SJIS.o gnu/gcj/convert/natOutput_EUCJIS.o gnu/gcj/convert/natOutput_SJIS.o gnu/gcj/io/natSimpleSHSStream.o gnu/gcj/io/shs.o gnu/gcj/jvmti/natBreakpoint.o gnu/gcj/jvmti/natNormalBreakpoint.o gnu/gcj/runtime/natFinalizerThread.o gnu/gcj/runtime/natSharedLibLoader.o gnu/gcj/runtime/natSystemClassLoader.o gnu/gcj/runtime/natStringBuffer.o gnu/gcj/util/natDebug.o gnu/gcj/util/natGCInfo.o gnu/java/lang/natMainThread.o gnu/java/lang/management/natVMClassLoadingMXBeanImpl.o gnu/java/lang/management/natVMCompilationMXBeanImpl.o gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.o gnu/java/lang/management/natVMMemoryMXBeanImpl.o gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.o gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.o gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.o gnu/java/lang/management/natVMRuntimeMXBeanImpl.o gnu/java/lang/management/natVMThreadMXBeanImpl.o gnu/java/net/natPlainDatagramSocketImpl.o gnu/java/net/natPlainSocketImpl.o gnu/java/net/protocol/core/natCoreInputStream.o gnu/java/nio/natVMPipe.o gnu/java/nio/natVMSelector.o gnu/java/nio/natNIOServerSocket.o gnu/java/nio/natVMChannel.o gnu/java/nio/channels/natFileChannelImpl.o gnu/java/security/jce/prng/natVMSecureRandom.o java/io/natFile.o java/io/natVMObjectInputStream.o java/io/natVMObjectStreamClass.o java/lang/natCharacter.o java/lang/natClass.o java/lang/natClassLoader.o java/lang/natConcreteProcess.o java/lang/natVMDouble.o java/lang/natVMFloat.o java/lang/natMath.o java/lang/natObject.o java/lang/natRuntime.o java/lang/natString.o java/lang/natAbstractStringBuffer.o java/lang/natSystem.o java/lang/natThread.o java/lang/natThreadLocal.o java/lang/natVMClassLoader.o java/lang/natVMProcess.o java/lang/natVMThrowable.o java/lang/ref/natReference.o java/lang/reflect/natArray.o java/lang/reflect/natConstructor.o java/lang/reflect/natField.o java/lang/reflect/natMethod.o java/lang/reflect/natVMProxy.o java/net/natVMInetAddress.o java/net/natVMNetworkInterface.o java/net/natVMURLConnection.o java/nio/channels/natVMChannels.o java/nio/natVMDirectByteBufferImpl.o java/security/natVMAccessController.o java/security/natVMAccessControlState.o java/text/natCollator.o java/util/natVMTimeZone.o java/util/concurrent/atomic/natAtomicLong.o java/util/logging/natLogger.o java/util/zip/natDeflater.o java/util/zip/natInflater.o sun/misc/natUnsafe.o boehm.o posix.o posix-threads.o java/lang/Object.o java/lang/Class.o java/process-Posix.o gnu/awt.o gnu/awt/j2d.o gnu/classpath.o gnu/classpath/debug.o gnu/classpath/toolkit.o gnu/gcj.o gnu/gcj/convert.o gnu/gcj/io.o gnu/gcj/runtime.o gnu/gcj/util.o .libs/libgcj.lax/lt1-awt.o gnu/java/awt/color.o gnu/java/awt/dnd.o gnu/java/awt/font.o gnu/java/awt/font/autofit.o gnu/java/awt/font/opentype.o gnu/java/awt/font/opentype/truetype.o gnu/java/awt/image.o gnu/java/awt/java2d.o gnu/java/awt/peer.o gnu/java/awt/peer/headless.o gnu/java/awt/print.o .libs/libgcj.lax/lt2-io.o gnu/java/lang.o gnu/java/lang/reflect.o gnu/java/locale.o gnu/java/net.o gnu/java/net/loader.o gnu/java/net/local.o gnu/java/net/protocol/core.o gnu/java/net/protocol/file.o gnu/java/net/protocol/ftp.o gnu/java/net/protocol/gcjlib.o gnu/java/net/protocol/http.o gnu/java/net/protocol/https.o gnu/java/net/protocol/jar.o gnu/java/nio.o gnu/java/nio/channels.o gnu/java/nio/charset.o gnu/java/rmi.o gnu/java/rmi/activation.o gnu/java/rmi/dgc.o gnu/java/rmi/registry.o gnu/java/rmi/server.o gnu/java/security.o gnu/java/security/action.o gnu/java/security/ber.o gnu/java/security/der.o gnu/java/security/hash.o .libs/libgcj.lax/lt3-hash.o gnu/java/security/jce/prng.o gnu/java/security/jce/sig.o gnu/java/security/key.o gnu/java/security/key/dss.o gnu/java/security/key/rsa.o gnu/java/security/pkcs.o .libs/libgcj.lax/lt4-prng.o gnu/java/security/provider.o .libs/libgcj.lax/lt5-sig.o .libs/libgcj.lax/lt6-dss.o .libs/libgcj.lax/lt7-rsa.o .libs/libgcj.lax/lt8-util.o gnu/java/security/x509.o gnu/java/security/x509/ext.o gnu/java/text.o .libs/libgcj.lax/lt9-util.o .libs/libgcj.lax/lt10-jar.o gnu/java/util/prefs.o gnu/java/util/regex.o gnu/javax/activation/viewers.o gnu/javax/crypto.o gnu/javax/crypto/assembly.o gnu/javax/crypto/cipher.o gnu/javax/crypto/jce.o .libs/libgcj.lax/lt11-cipher.o .libs/libgcj.lax/lt12-key.o gnu/javax/crypto/jce/keyring.o gnu/javax/crypto/jce/mac.o gnu/javax/crypto/jce/params.o .libs/libgcj.lax/lt13-prng.o .libs/libgcj.lax/lt14-sig.o gnu/javax/crypto/jce/spec.o .libs/libgcj.lax/lt15-key.o gnu/javax/crypto/key/dh.o gnu/javax/crypto/key/srp6.o .libs/libgcj.lax/lt16-keyring.o gnu/javax/crypto/kwa.o .libs/libgcj.lax/lt17-mac.o gnu/javax/crypto/mode.o gnu/javax/crypto/pad.o .libs/libgcj.lax/lt18-prng.o gnu/javax/crypto/sasl.o gnu/javax/crypto/sasl/anonymous.o gnu/javax/crypto/sasl/crammd5.o gnu/javax/crypto/sasl/plain.o gnu/javax/crypto/sasl/srp.o gnu/javax/imageio.o gnu/javax/imageio/bmp.o gnu/javax/imageio/gif.o gnu/javax/imageio/jpeg.o gnu/javax/imageio/png.o gnu/javax/naming/giop.o gnu/javax/naming/ictxImpl/trans.o gnu/javax/naming/jndi/url/corbaname.o .libs/libgcj.lax/lt19-rmi.o gnu/javax/net/ssl.o .libs/libgcj.lax/lt20-provider.o .libs/libgcj.lax/lt21-print.o gnu/javax/print/ipp.o gnu/javax/print/ipp/attribute.o gnu/javax/print/ipp/attribute/defaults.o gnu/javax/print/ipp/attribute/job.o gnu/javax/print/ipp/attribute/printer.o gnu/javax/print/ipp/attribute/supported.o gnu/javax/security/auth.o gnu/javax/security/auth/callback.o gnu/javax/security/auth/login.o gnu/javax/sound.o gnu/javax/sound/sampled/AU.o gnu/javax/sound/sampled/WAV.o gnu/javax/swing/plaf/gnu.o gnu/javax/swing/plaf/metal.o gnu/javax/swing/text/html.o gnu/javax/swing/text/html/css.o gnu/javax/swing/text/html/parser/GnuParserDelegator.o gnu/javax/swing/text/html/parser/HTML_401F.o gnu/javax/swing/text/html/parser/SmallHtmlAttributeSet.o gnu/javax/swing/text/html/parser/gnuDTD.o gnu/javax/swing/text/html/parser/htmlAttributeSet.o gnu/javax/swing/text/html/parser/htmlValidator.o gnu/javax/swing/text/html/parser/models.o gnu/javax/swing/text/html/parser/support.o gnu/javax/swing/text/html/parser/support/low.o gnu/javax/swing/tree.o java/applet.o .libs/libgcj.lax/lt22-awt.o .libs/libgcj.lax/lt23-color.o java/awt/datatransfer.o .libs/libgcj.lax/lt24-dnd.o .libs/libgcj.lax/lt25-peer.o java/awt/event.o .libs/libgcj.lax/lt26-font.o java/awt/geom.o java/awt/im.o java/awt/im/spi.o .libs/libgcj.lax/lt27-image.o java/awt/image/renderable.o .libs/libgcj.lax/lt28-peer.o .libs/libgcj.lax/lt29-print.o java/beans.o java/beans/beancontext.o .libs/libgcj.lax/lt30-io.o .libs/libgcj.lax/lt31-lang.o java/lang/annotation.o java/lang/instrument.o java/lang/ref.o .libs/libgcj.lax/lt32-reflect.o java/math.o .libs/libgcj.lax/lt33-net.o .libs/libgcj.lax/lt34-nio.o .libs/libgcj.lax/lt35-channels.o .libs/libgcj.lax/lt36-spi.o .libs/libgcj.lax/lt37-charset.o .libs/libgcj.lax/lt38-spi.o .libs/libgcj.lax/lt39-rmi.o .libs/libgcj.lax/lt40-activation.o .libs/libgcj.lax/lt41-dgc.o .libs/libgcj.lax/lt42-registry.o .libs/libgcj.lax/lt43-server.o .libs/libgcj.lax/lt44-security.o java/security/acl.o java/security/cert.o java/security/interfaces.o .libs/libgcj.lax/lt45-spec.o java/sql.o .libs/libgcj.lax/lt46-text.o .libs/libgcj.lax/lt47-spi.o .libs/libgcj.lax/lt48-util.o java/util/concurrent.o java/util/concurrent/atomic.o java/util/concurrent/locks.o .libs/libgcj.lax/lt49-jar.o java/util/logging.o .libs/libgcj.lax/lt50-prefs.o .libs/libgcj.lax/lt51-regex.o .libs/libgcj.lax/lt52-spi.o java/util/zip.o javax/accessibility.o .libs/libgcj.lax/lt53-activation.o javax/activity.o .libs/libgcj.lax/lt54-crypto.o .libs/libgcj.lax/lt55-interfaces.o .libs/libgcj.lax/lt56-spec.o javax/management.o javax/management/loading.o javax/management/openmbean.o javax/management/remote.o .libs/libgcj.lax/lt57-rmi.o javax/naming.o javax/naming/directory.o .libs/libgcj.lax/lt58-event.o javax/naming/ldap.o .libs/libgcj.lax/lt59-spi.o .libs/libgcj.lax/lt60-net.o .libs/libgcj.lax/lt61-ssl.o .libs/libgcj.lax/lt62-print.o .libs/libgcj.lax/lt63-attribute.o javax/print/attribute/standard.o .libs/libgcj.lax/lt64-event.o .libs/libgcj.lax/lt65-auth.o .libs/libgcj.lax/lt66-callback.o javax/security/auth/kerberos.o .libs/libgcj.lax/lt67-login.o .libs/libgcj.lax/lt68-spi.o javax/security/auth/x500.o .libs/libgcj.lax/lt69-cert.o .libs/libgcj.lax/lt70-sasl.o javax/sound/midi.o .libs/libgcj.lax/lt71-spi.o javax/sound/sampled.o .libs/libgcj.lax/lt72-spi.o .libs/libgcj.lax/lt73-sql.o javax/swing.o javax/swing/border.o javax/swing/colorchooser.o .libs/libgcj.lax/lt74-event.o javax/swing/filechooser.o javax/swing/plaf.o javax/swing/plaf/basic.o .libs/libgcj.lax/lt75-metal.o javax/swing/plaf/multi.o javax/swing/plaf/synth.o javax/swing/table.o .libs/libgcj.lax/lt76-text.o .libs/libgcj.lax/lt77-html.o javax/swing/text/html/parser.o javax/swing/text/rtf.o .libs/libgcj.lax/lt78-tree.o javax/swing/undo.o javax/tools.o javax/transaction.o javax/transaction/xa.o org/ietf/jgss.o .libs/libgcj.lax/lt79-awt.o sun/misc.o .libs/libgcj.lax/lt80-reflect.o .libs/libgcj.lax/lt81-annotation.o .libs/libgcj.lax/lt82-misc.o gnu/classpath/jdwp.o .libs/libgcj.lax/lt83-event.o gnu/classpath/jdwp/event/filters.o .libs/libgcj.lax/lt84-exception.o gnu/classpath/jdwp/id.o gnu/classpath/jdwp/processor.o gnu/classpath/jdwp/transport.o .libs/libgcj.lax/lt85-util.o gnu/classpath/jdwp/value.o .libs/libgcj.lax/lt86-jvmti.o gnu/java/awt/font/fonts.properties.o gnu/java/awt/peer/gtk/font.properties.o .libs/libgcj.lax/lt87-fonts.properties.o gnu/java/awt/peer/x/xfonts.properties.o gnu/java/locale/LocaleInformation.properties.o gnu/java/locale/LocaleInformation_aa.properties.o gnu/java/locale/LocaleInformation_aa_DJ.properties.o gnu/java/locale/LocaleInformation_aa_ER.properties.o gnu/java/locale/LocaleInformation_aa_ER_SAAHO.properties.o gnu/java/locale/LocaleInformation_aa_ET.properties.o gnu/java/locale/LocaleInformation_af.properties.o gnu/java/locale/LocaleInformation_af_NA.properties.o gnu/java/locale/LocaleInformation_af_ZA.properties.o gnu/java/locale/LocaleInformation_ak.properties.o gnu/java/locale/LocaleInformation_am.properties.o gnu/java/locale/LocaleInformation_am_ET.properties.o gnu/java/locale/LocaleInformation_ar.properties.o gnu/java/locale/LocaleInformation_ar_DZ.properties.o gnu/java/locale/LocaleInformation_ar_JO.properties.o gnu/java/locale/LocaleInformation_ar_LB.properties.o gnu/java/locale/LocaleInformation_ar_MA.properties.o gnu/java/locale/LocaleInformation_ar_QA.properties.o gnu/java/locale/LocaleInformation_ar_SA.properties.o gnu/java/locale/LocaleInformation_ar_SY.properties.o gnu/java/locale/LocaleInformation_ar_TN.properties.o gnu/java/locale/LocaleInformation_ar_YE.properties.o gnu/java/locale/LocaleInformation_as.properties.o gnu/java/locale/LocaleInformation_as_IN.properties.o gnu/java/locale/LocaleInformation_az.properties.o gnu/java/locale/LocaleInformation_az_Cyrl.properties.o gnu/java/locale/LocaleInformation_be.properties.o gnu/java/locale/LocaleInformation_be_BY.properties.o gnu/java/locale/LocaleInformation_bg.properties.o gnu/java/locale/LocaleInformation_bg_BG.properties.o gnu/java/locale/LocaleInformation_bn.properties.o gnu/java/locale/LocaleInformation_bn_IN.properties.o gnu/java/locale/LocaleInformation_bo.properties.o gnu/java/locale/LocaleInformation_bs.properties.o gnu/java/locale/LocaleInformation_byn.properties.o gnu/java/locale/LocaleInformation_byn_ER.properties.o gnu/java/locale/LocaleInformation_ca.properties.o gnu/java/locale/LocaleInformation_ca_ES.properties.o gnu/java/locale/LocaleInformation_cch.properties.o gnu/java/locale/LocaleInformation_cop.properties.o gnu/java/locale/LocaleInformation_cs.properties.o gnu/java/locale/LocaleInformation_cs_CZ.properties.o gnu/java/locale/LocaleInformation_cy.properties.o gnu/java/locale/LocaleInformation_cy_GB.properties.o gnu/java/locale/LocaleInformation_da.properties.o gnu/java/locale/LocaleInformation_da_DK.properties.o gnu/java/locale/LocaleInformation_de.properties.o gnu/java/locale/LocaleInformation_de_AT.properties.o gnu/java/locale/LocaleInformation_de_BE.properties.o gnu/java/locale/LocaleInformation_de_CH.properties.o gnu/java/locale/LocaleInformation_de_DE.properties.o gnu/java/locale/LocaleInformation_de_LI.properties.o gnu/java/locale/LocaleInformation_de_LU.properties.o gnu/java/locale/LocaleInformation_dv.properties.o gnu/java/locale/LocaleInformation_dv_MV.properties.o gnu/java/locale/LocaleInformation_dz.properties.o gnu/java/locale/LocaleInformation_dz_BT.properties.o gnu/java/locale/LocaleInformation_ee.properties.o gnu/java/locale/LocaleInformation_el.properties.o gnu/java/locale/LocaleInformation_el_CY.properties.o gnu/java/locale/LocaleInformation_el_GR.properties.o gnu/java/locale/LocaleInformation_en.properties.o gnu/java/locale/LocaleInformation_en_AS.properties.o gnu/java/locale/LocaleInformation_en_AU.properties.o gnu/java/locale/LocaleInformation_en_BE.properties.o gnu/java/locale/LocaleInformation_en_BW.properties.o gnu/java/locale/LocaleInformation_en_BZ.properties.o gnu/java/locale/LocaleInformation_en_CA.properties.o gnu/java/locale/LocaleInformation_en_Dsrt.properties.o gnu/java/locale/LocaleInformation_en_GB.properties.o gnu/java/locale/LocaleInformation_en_GU.properties.o gnu/java/locale/LocaleInformation_en_HK.properties.o gnu/java/locale/LocaleInformation_en_IE.properties.o gnu/java/locale/LocaleInformation_en_IN.properties.o gnu/java/locale/LocaleInformation_en_JM.properties.o gnu/java/locale/LocaleInformation_en_MH.properties.o gnu/java/locale/LocaleInformation_en_MP.properties.o gnu/java/locale/LocaleInformation_en_MT.properties.o gnu/java/locale/LocaleInformation_en_NA.properties.o gnu/java/locale/LocaleInformation_en_NZ.properties.o gnu/java/locale/LocaleInformation_en_PH.properties.o gnu/java/locale/LocaleInformation_en_PK.properties.o gnu/java/locale/LocaleInformation_en_SG.properties.o gnu/java/locale/LocaleInformation_en_Shaw.properties.o gnu/java/locale/LocaleInformation_en_TT.properties.o gnu/java/locale/LocaleInformation_en_UM.properties.o gnu/java/locale/LocaleInformation_en_US.properties.o gnu/java/locale/LocaleInformation_en_US_POSIX.properties.o gnu/java/locale/LocaleInformation_en_VI.properties.o gnu/java/locale/LocaleInformation_en_ZA.properties.o gnu/java/locale/LocaleInformation_en_ZW.properties.o gnu/java/locale/LocaleInformation_eo.properties.o gnu/java/locale/LocaleInformation_es.properties.o gnu/java/locale/LocaleInformation_es_AR.properties.o gnu/java/locale/LocaleInformation_es_BO.properties.o gnu/java/locale/LocaleInformation_es_CL.properties.o gnu/java/locale/LocaleInformation_es_CO.properties.o gnu/java/locale/LocaleInformation_es_CR.properties.o gnu/java/locale/LocaleInformation_es_DO.properties.o gnu/java/locale/LocaleInformation_es_EC.properties.o gnu/java/locale/LocaleInformation_es_ES.properties.o gnu/java/locale/LocaleInformation_es_GT.properties.o gnu/java/locale/LocaleInformation_es_HN.properties.o gnu/java/locale/LocaleInformation_es_MX.properties.o gnu/java/locale/LocaleInformation_es_NI.properties.o gnu/java/locale/LocaleInformation_es_PA.properties.o gnu/java/locale/LocaleInformation_es_PE.properties.o gnu/java/locale/LocaleInformation_es_PR.properties.o gnu/java/locale/LocaleInformation_es_PY.properties.o gnu/java/locale/LocaleInformation_es_SV.properties.o gnu/java/locale/LocaleInformation_es_US.properties.o gnu/java/locale/LocaleInformation_es_UY.properties.o gnu/java/locale/LocaleInformation_es_VE.properties.o gnu/java/locale/LocaleInformation_et.properties.o gnu/java/locale/LocaleInformation_et_EE.properties.o gnu/java/locale/LocaleInformation_eu.properties.o gnu/java/locale/LocaleInformation_eu_ES.properties.o gnu/java/locale/LocaleInformation_fa.properties.o gnu/java/locale/LocaleInformation_fa_AF.properties.o gnu/java/locale/LocaleInformation_fa_IR.properties.o gnu/java/locale/LocaleInformation_fi.properties.o gnu/java/locale/LocaleInformation_fi_FI.properties.o gnu/java/locale/LocaleInformation_fil.properties.o gnu/java/locale/LocaleInformation_fo.properties.o gnu/java/locale/LocaleInformation_fo_FO.properties.o gnu/java/locale/LocaleInformation_fr.properties.o gnu/java/locale/LocaleInformation_fr_BE.properties.o gnu/java/locale/LocaleInformation_fr_CA.properties.o gnu/java/locale/LocaleInformation_fr_CH.properties.o gnu/java/locale/LocaleInformation_fr_LU.properties.o gnu/java/locale/LocaleInformation_fur.properties.o gnu/java/locale/LocaleInformation_ga.properties.o gnu/java/locale/LocaleInformation_ga_IE.properties.o gnu/java/locale/LocaleInformation_gaa.properties.o gnu/java/locale/LocaleInformation_gez.properties.o gnu/java/locale/LocaleInformation_gez_ER.properties.o gnu/java/locale/LocaleInformation_gez_ET.properties.o gnu/java/locale/LocaleInformation_gl.properties.o gnu/java/locale/LocaleInformation_gl_ES.properties.o gnu/java/locale/LocaleInformation_gu.properties.o gnu/java/locale/LocaleInformation_gu_IN.properties.o gnu/java/locale/LocaleInformation_gv.properties.o gnu/java/locale/LocaleInformation_gv_GB.properties.o gnu/java/locale/LocaleInformation_ha.properties.o gnu/java/locale/LocaleInformation_ha_Arab.properties.o gnu/java/locale/LocaleInformation_haw.properties.o gnu/java/locale/LocaleInformation_haw_US.properties.o gnu/java/locale/LocaleInformation_he.properties.o gnu/java/locale/LocaleInformation_he_IL.properties.o gnu/java/locale/LocaleInformation_hi.properties.o gnu/java/locale/LocaleInformation_hi_IN.properties.o gnu/java/locale/LocaleInformation_hr.properties.o gnu/java/locale/LocaleInformation_hu.properties.o gnu/java/locale/LocaleInformation_hu_HU.properties.o gnu/java/locale/LocaleInformation_hy.properties.o gnu/java/locale/LocaleInformation_hy_AM.properties.o gnu/java/locale/LocaleInformation_hy_AM_REVISED.properties.o gnu/java/locale/LocaleInformation_ia.properties.o gnu/java/locale/LocaleInformation_id.properties.o gnu/java/locale/LocaleInformation_id_ID.properties.o gnu/java/locale/LocaleInformation_ig.properties.o gnu/java/locale/LocaleInformation_ii.properties.o gnu/java/locale/LocaleInformation_is.properties.o gnu/java/locale/LocaleInformation_is_IS.properties.o gnu/java/locale/LocaleInformation_it.properties.o gnu/java/locale/LocaleInformation_it_CH.properties.o gnu/java/locale/LocaleInformation_it_IT.properties.o gnu/java/locale/LocaleInformation_iu.properties.o gnu/java/locale/LocaleInformation_ja.properties.o gnu/java/locale/LocaleInformation_ja_JP.properties.o gnu/java/locale/LocaleInformation_ka.properties.o gnu/java/locale/LocaleInformation_kaj.properties.o gnu/java/locale/LocaleInformation_kam.properties.o gnu/java/locale/LocaleInformation_kcg.properties.o gnu/java/locale/LocaleInformation_kfo.properties.o gnu/java/locale/LocaleInformation_kk.properties.o gnu/java/locale/LocaleInformation_kk_KZ.properties.o gnu/java/locale/LocaleInformation_kl.properties.o gnu/java/locale/LocaleInformation_kl_GL.properties.o gnu/java/locale/LocaleInformation_km.properties.o gnu/java/locale/LocaleInformation_km_KH.properties.o gnu/java/locale/LocaleInformation_kn.properties.o gnu/java/locale/LocaleInformation_kn_IN.properties.o gnu/java/locale/LocaleInformation_ko.properties.o gnu/java/locale/LocaleInformation_ko_KR.properties.o gnu/java/locale/LocaleInformation_kok.properties.o gnu/java/locale/LocaleInformation_kok_IN.properties.o gnu/java/locale/LocaleInformation_kpe.properties.o gnu/java/locale/LocaleInformation_ku.properties.o gnu/java/locale/LocaleInformation_ku_Arab.properties.o gnu/java/locale/LocaleInformation_ku_Latn.properties.o gnu/java/locale/LocaleInformation_kw.properties.o gnu/java/locale/LocaleInformation_kw_GB.properties.o gnu/java/locale/LocaleInformation_ky.properties.o gnu/java/locale/LocaleInformation_ln.properties.o gnu/java/locale/LocaleInformation_lo.properties.o gnu/java/locale/LocaleInformation_lo_LA.properties.o gnu/java/locale/LocaleInformation_lt.properties.o gnu/java/locale/LocaleInformation_lt_LT.properties.o gnu/java/locale/LocaleInformation_lv.properties.o gnu/java/locale/LocaleInformation_lv_LV.properties.o gnu/java/locale/LocaleInformation_mk.properties.o gnu/java/locale/LocaleInformation_ml.properties.o gnu/java/locale/LocaleInformation_ml_IN.properties.o gnu/java/locale/LocaleInformation_mn.properties.o gnu/java/locale/LocaleInformation_mr.properties.o gnu/java/locale/LocaleInformation_mr_IN.properties.o gnu/java/locale/LocaleInformation_ms.properties.o gnu/java/locale/LocaleInformation_ms_BN.properties.o gnu/java/locale/LocaleInformation_ms_MY.properties.o gnu/java/locale/LocaleInformation_mt.properties.o gnu/java/locale/LocaleInformation_mt_MT.properties.o gnu/java/locale/LocaleInformation_my.properties.o gnu/java/locale/LocaleInformation_nb.properties.o gnu/java/locale/LocaleInformation_nb_NO.properties.o gnu/java/locale/LocaleInformation_ne.properties.o gnu/java/locale/LocaleInformation_nl.properties.o gnu/java/locale/LocaleInformation_nl_BE.properties.o gnu/java/locale/LocaleInformation_nl_NL.properties.o gnu/java/locale/LocaleInformation_nn.properties.o gnu/java/locale/LocaleInformation_nn_NO.properties.o gnu/java/locale/LocaleInformation_nr.properties.o gnu/java/locale/LocaleInformation_nso.properties.o gnu/java/locale/LocaleInformation_ny.properties.o gnu/java/locale/LocaleInformation_om.properties.o gnu/java/locale/LocaleInformation_om_ET.properties.o gnu/java/locale/LocaleInformation_om_KE.properties.o gnu/java/locale/LocaleInformation_or.properties.o gnu/java/locale/LocaleInformation_or_IN.properties.o gnu/java/locale/LocaleInformation_pa.properties.o gnu/java/locale/LocaleInformation_pa_Arab.properties.o gnu/java/locale/LocaleInformation_pa_IN.properties.o gnu/java/locale/LocaleInformation_pl.properties.o gnu/java/locale/LocaleInformation_pl_PL.properties.o gnu/java/locale/LocaleInformation_ps.properties.o gnu/java/locale/LocaleInformation_ps_AF.properties.o gnu/java/locale/LocaleInformation_pt.properties.o gnu/java/locale/LocaleInformation_pt_BR.properties.o gnu/java/locale/LocaleInformation_pt_PT.properties.o gnu/java/locale/LocaleInformation_ro.properties.o gnu/java/locale/LocaleInformation_ro_RO.properties.o gnu/java/locale/LocaleInformation_ru.properties.o gnu/java/locale/LocaleInformation_ru_RU.properties.o gnu/java/locale/LocaleInformation_ru_UA.properties.o gnu/java/locale/LocaleInformation_rw.properties.o gnu/java/locale/LocaleInformation_sa.properties.o gnu/java/locale/LocaleInformation_sa_IN.properties.o gnu/java/locale/LocaleInformation_se.properties.o gnu/java/locale/LocaleInformation_se_FI.properties.o gnu/java/locale/LocaleInformation_si.properties.o gnu/java/locale/LocaleInformation_sid.properties.o gnu/java/locale/LocaleInformation_sid_ET.properties.o gnu/java/locale/LocaleInformation_sk.properties.o gnu/java/locale/LocaleInformation_sk_SK.properties.o gnu/java/locale/LocaleInformation_sl.properties.o gnu/java/locale/LocaleInformation_sl_SI.properties.o gnu/java/locale/LocaleInformation_so.properties.o gnu/java/locale/LocaleInformation_so_DJ.properties.o gnu/java/locale/LocaleInformation_so_ET.properties.o gnu/java/locale/LocaleInformation_so_KE.properties.o gnu/java/locale/LocaleInformation_so_SO.properties.o gnu/java/locale/LocaleInformation_sq.properties.o gnu/java/locale/LocaleInformation_sq_AL.properties.o gnu/java/locale/LocaleInformation_sr.properties.o gnu/java/locale/LocaleInformation_sr_BA_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_BA_Latn.properties.o gnu/java/locale/LocaleInformation_sr_Cyrl.properties.o gnu/java/locale/LocaleInformation_sr_Latn.properties.o gnu/java/locale/LocaleInformation_sr_ME_Latn.properties.o gnu/java/locale/LocaleInformation_sr_RS_Latn.properties.o gnu/java/locale/LocaleInformation_ss.properties.o gnu/java/locale/LocaleInformation_ssy.properties.o gnu/java/locale/LocaleInformation_st.properties.o gnu/java/locale/LocaleInformation_sv.properties.o gnu/java/locale/LocaleInformation_sv_FI.properties.o gnu/java/locale/LocaleInformation_sv_SE.properties.o gnu/java/locale/LocaleInformation_sw.properties.o gnu/java/locale/LocaleInformation_sw_KE.properties.o gnu/java/locale/LocaleInformation_sw_TZ.properties.o gnu/java/locale/LocaleInformation_syr.properties.o gnu/java/locale/LocaleInformation_syr_SY.properties.o gnu/java/locale/LocaleInformation_ta.properties.o gnu/java/locale/LocaleInformation_ta_IN.properties.o gnu/java/locale/LocaleInformation_te.properties.o gnu/java/locale/LocaleInformation_te_IN.properties.o gnu/java/locale/LocaleInformation_tg.properties.o gnu/java/locale/LocaleInformation_th.properties.o gnu/java/locale/LocaleInformation_th_TH.properties.o gnu/java/locale/LocaleInformation_ti.properties.o gnu/java/locale/LocaleInformation_ti_ER.properties.o gnu/java/locale/LocaleInformation_ti_ET.properties.o gnu/java/locale/LocaleInformation_tig.properties.o gnu/java/locale/LocaleInformation_tig_ER.properties.o gnu/java/locale/LocaleInformation_tn.properties.o gnu/java/locale/LocaleInformation_to.properties.o gnu/java/locale/LocaleInformation_tr.properties.o gnu/java/locale/LocaleInformation_tr_TR.properties.o gnu/java/locale/LocaleInformation_trv.properties.o gnu/java/locale/LocaleInformation_ts.properties.o gnu/java/locale/LocaleInformation_tt.properties.o gnu/java/locale/LocaleInformation_tt_RU.properties.o gnu/java/locale/LocaleInformation_ug.properties.o gnu/java/locale/LocaleInformation_uk.properties.o gnu/java/locale/LocaleInformation_uk_UA.properties.o gnu/java/locale/LocaleInformation_ur.properties.o gnu/java/locale/LocaleInformation_ur_IN.properties.o gnu/java/locale/LocaleInformation_uz.properties.o gnu/java/locale/LocaleInformation_uz_AF_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Arab.properties.o gnu/java/locale/LocaleInformation_uz_Latn.properties.o gnu/java/locale/LocaleInformation_ve.properties.o gnu/java/locale/LocaleInformation_vi.properties.o gnu/java/locale/LocaleInformation_wal.properties.o gnu/java/locale/LocaleInformation_wal_ET.properties.o gnu/java/locale/LocaleInformation_wo.properties.o gnu/java/locale/LocaleInformation_xh.properties.o gnu/java/locale/LocaleInformation_yo.properties.o gnu/java/locale/LocaleInformation_zh.properties.o gnu/java/locale/LocaleInformation_zh_CN_Hans.properties.o gnu/java/locale/LocaleInformation_zh_HK_Hant.properties.o gnu/java/locale/LocaleInformation_zh_Hant.properties.o gnu/java/locale/LocaleInformation_zh_MO_Hant.properties.o gnu/java/locale/LocaleInformation_zh_SG_Hans.properties.o gnu/java/locale/LocaleInformation_zh_TW_Hant.properties.o gnu/java/locale/LocaleInformation_zu.properties.o gnu/java/util/regex/MessagesBundle.properties.o gnu/java/util/regex/MessagesBundle_fr.properties.o gnu/java/util/regex/MessagesBundle_it.properties.o gnu/javax/print/PrinterDialog.properties.o gnu/javax/print/PrinterDialog_de.properties.o .libs/libgcj.lax/lt88-MessagesBundle.properties.o java/text/metazones.properties.o java/util/iso4217.properties.o java/util/weeks.properties.o .libs/libgcj.lax/lt89-MessagesBundle.properties.o javax/swing/text/html/default.css.o .libs/libgcj.lax/lt90-MessagesBundle.properties.o META-INF/services/java.util.prefs.PreferencesFactory.o META-INF/services/java.util.prefs.PreferencesFactory.in.o META-INF/services/javax.sound.midi.spi.MidiDeviceProvider.o META-INF/services/javax.sound.midi.spi.MidiFileReader.o META-INF/services/javax.sound.midi.spi.MidiFileWriter.o META-INF/services/javax.sound.sampled.spi.AudioFileReader.o gnu-CORBA.o gnu-java-awt-dnd-peer-gtk.o gnu-java-awt-peer-gtk.o gnu-java-awt-peer-swing.o gnu-java-beans.o gnu-java-lang-management.o gnu-java-math.o gnu-java-util-prefs-gconf.o gnu-javax-management.o gnu-javax-rmi.o gnu-javax-sound-midi.o gnu-xml-aelfred2.o gnu-xml-dom.o gnu-xml-libxmlj.o gnu-xml-pipeline.o gnu-xml-stream.o gnu-xml-transform.o gnu-xml-util.o gnu-xml-validation.o gnu-xml-xpath.o java-lang-management.o javax-imageio.o javax-rmi.o javax-xml.o org-omg-CORBA.o org-omg-CORBA_2_3.o org-omg-CosNaming.o org-omg-Dynamic.o org-omg-DynamicAny.o org-omg-IOP.o org-omg-Messaging.o org-omg-PortableInterceptor.o org-omg-PortableServer.o org-omg-SendingContext.o org-omg-stub.o org-relaxng.o org-w3c.o org-xml.o .libs/libgcj.lax/libltdlc.a/ltdl.o .libs/libgcj.lax/libfdlibm.a/dtoa.o .libs/libgcj.lax/libfdlibm.a/e_acos.o .libs/libgcj.lax/libfdlibm.a/e_asin.o .libs/libgcj.lax/libfdlibm.a/e_atan2.o .libs/libgcj.lax/libfdlibm.a/e_cosh.o .libs/libgcj.lax/libfdlibm.a/e_exp.o .libs/libgcj.lax/libfdlibm.a/e_fmod.o .libs/libgcj.lax/libfdlibm.a/e_hypot.o .libs/libgcj.lax/libfdlibm.a/e_log.o .libs/libgcj.lax/libfdlibm.a/e_log10.o .libs/libgcj.lax/libfdlibm.a/e_pow.o .libs/libgcj.lax/libfdlibm.a/e_remainder.o .libs/libgcj.lax/libfdlibm.a/e_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/e_scalb.o .libs/libgcj.lax/libfdlibm.a/e_sinh.o .libs/libgcj.lax/libfdlibm.a/e_sqrt.o .libs/libgcj.lax/libfdlibm.a/k_cos.o .libs/libgcj.lax/libfdlibm.a/k_rem_pio2.o .libs/libgcj.lax/libfdlibm.a/k_sin.o .libs/libgcj.lax/libfdlibm.a/k_tan.o .libs/libgcj.lax/libfdlibm.a/mprec.o .libs/libgcj.lax/libfdlibm.a/s_atan.o .libs/libgcj.lax/libfdlibm.a/s_cbrt.o .libs/libgcj.lax/libfdlibm.a/s_ceil.o .libs/libgcj.lax/libfdlibm.a/s_copysign.o .libs/libgcj.lax/libfdlibm.a/s_cos.o .libs/libgcj.lax/libfdlibm.a/s_expm1.o .libs/libgcj.lax/libfdlibm.a/s_fabs.o .libs/libgcj.lax/libfdlibm.a/sf_fabs.o .libs/libgcj.lax/libfdlibm.a/s_finite.o .libs/libgcj.lax/libfdlibm.a/s_floor.o .libs/libgcj.lax/libfdlibm.a/s_log1p.o .libs/libgcj.lax/libfdlibm.a/sf_rint.o .libs/libgcj.lax/libfdlibm.a/s_rint.o .libs/libgcj.lax/libfdlibm.a/s_scalbn.o .libs/libgcj.lax/libfdlibm.a/s_sin.o .libs/libgcj.lax/libfdlibm.a/s_tan.o .libs/libgcj.lax/libfdlibm.a/s_tanh.o .libs/libgcj.lax/libfdlibm.a/strtod.o .libs/libgcj.lax/libfdlibm.a/w_acos.o .libs/libgcj.lax/libfdlibm.a/w_asin.o .libs/libgcj.lax/libfdlibm.a/w_atan2.o .libs/libgcj.lax/libfdlibm.a/w_cosh.o .libs/libgcj.lax/libfdlibm.a/w_exp.o .libs/libgcj.lax/libfdlibm.a/w_fmod.o .libs/libgcj.lax/libfdlibm.a/w_hypot.o .libs/libgcj.lax/libfdlibm.a/w_log.o .libs/libgcj.lax/libfdlibm.a/w_log10.o .libs/libgcj.lax/libfdlibm.a/w_pow.o .libs/libgcj.lax/libfdlibm.a/w_remainder.o .libs/libgcj.lax/libfdlibm.a/w_sinh.o .libs/libgcj.lax/libfdlibm.a/w_sqrt.o .libs/libgcj.lax/lt91-debug.o .libs/libgcj.lax/libffi_convenience.a/prep_cif.o .libs/libgcj.lax/libffi_convenience.a/types.o .libs/libgcj.lax/libffi_convenience.a/raw_api.o .libs/libgcj.lax/libffi_convenience.a/java_raw_api.o .libs/libgcj.lax/libffi_convenience.a/closures.o .libs/libgcj.lax/libffi_convenience.a/ffi.o .libs/libgcj.lax/libffi_convenience.a/sysv.o .libs/libgcj.lax/libzgcj_convenience.a/adler32.o .libs/libgcj.lax/libzgcj_convenience.a/compress.o .libs/libgcj.lax/libzgcj_convenience.a/crc32.o .libs/libgcj.lax/libzgcj_convenience.a/deflate.o .libs/libgcj.lax/libzgcj_convenience.a/gzio.o .libs/libgcj.lax/libzgcj_convenience.a/infback.o .libs/libgcj.lax/libzgcj_convenience.a/inffast.o .libs/libgcj.lax/libzgcj_convenience.a/inflate.o .libs/libgcj.lax/libzgcj_convenience.a/inftrees.o .libs/libgcj.lax/libzgcj_convenience.a/trees.o .libs/libgcj.lax/libzgcj_convenience.a/uncompr.o .libs/libgcj.lax/libzgcj_convenience.a/zutil.o .libs/libgcj.lax/libgcjgc_convenience.a/allchblk.o .libs/libgcj.lax/libgcjgc_convenience.a/alloc.o .libs/libgcj.lax/libgcjgc_convenience.a/blacklst.o .libs/libgcj.lax/libgcjgc_convenience.a/checksums.o .libs/libgcj.lax/libgcjgc_convenience.a/dbg_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/dyn_load.o .libs/libgcj.lax/libgcjgc_convenience.a/finalize.o .libs/libgcj.lax/libgcjgc_convenience.a/gc_dlopen.o .libs/libgcj.lax/libgcjgc_convenience.a/gcj_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/headers.o .libs/libgcj.lax/libgcjgc_convenience.a/malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/mallocx.o .libs/libgcj.lax/libgcjgc_convenience.a/mark.o .libs/libgcj.lax/libgcjgc_convenience.a/mark_rts.o .libs/libgcj.lax/lt92-misc.o .libs/libgcj.lax/libgcjgc_convenience.a/new_hblk.o .libs/libgcj.lax/libgcjgc_convenience.a/obj_map.o .libs/libgcj.lax/libgcjgc_convenience.a/os_dep.o .libs/libgcj.lax/libgcjgc_convenience.a/pcr_interface.o .libs/libgcj.lax/libgcjgc_convenience.a/ptr_chck.o .libs/libgcj.lax/libgcjgc_convenience.a/real_malloc.o .libs/libgcj.lax/libgcjgc_convenience.a/reclaim.o .libs/libgcj.lax/libgcjgc_convenience.a/specific.o .libs/libgcj.lax/libgcjgc_convenience.a/stubborn.o .libs/libgcj.lax/libgcjgc_convenience.a/typd_mlc.o .libs/libgcj.lax/libgcjgc_convenience.a/backgraph.o .libs/libgcj.lax/libgcjgc_convenience.a/win32_threads.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_support.o .libs/libgcj.lax/libgcjgc_convenience.a/pthread_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/darwin_stop_world.o .libs/libgcj.lax/libgcjgc_convenience.a/mach_dep.o
- libtool: link: ranlib .libs/libgcj.a
- libtool: link: rm -fr .libs/libgcj.lax .libs/libgcj.lax
- libtool: link: ( cd ".libs" && rm -f "libgcj.la" && ln -s "../libgcj.la" "libgcj.la" )
--/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
--libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
-+/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
-+libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
- libtool: link: ar rc .libs/libjvm.a jni-libjvm.o
- libtool: link: ranlib .libs/libjvm.a
- libtool: link: ( cd ".libs" && rm -f "libjvm.la" && ln -s "../libjvm.la" "libjvm.la" )
-@@ -23478,8 +23048,8 @@
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../master/libjava/gij.cc -fPIC -DPIC -o .libs/gij.o
- libtool: compile: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -DHAVE_CONFIG_H -I. -I../../../master/libjava -I./include -I./gcj -I../../../master/libjava -Iinclude -I../../../master/libjava/include -I../../../master/libjava/classpath/include -Iclasspath/include -I../../../master/libjava/classpath/native/fdlibm -I../../../master/libjava/../boehm-gc/include -I../boehm-gc/include -I../../../master/libjava/libltdl -I../../../master/libjava/libltdl -I../../../master/libjava/.././libjava/../gcc -I../../../master/libjava/../zlib -I../../../master/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -MT gij.lo -MD -MP -MF .deps/gij.Tpo -c ../../../master/libjava/gij.cc -o gij.o >/dev/null 2>&1
--/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
--libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
-+/bin/bash ./libtool --tag=CXX --mode=link [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX="\"[...]/hurd/master.build.install\"" -DTOOLEXECLIBDIR="\"[...]/hurd/master.build.install/lib\"" -DJAVA_HOME="\"[...]/hurd/master.build.install\"" -DBOOT_CLASS_PATH="\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\"" -DJAVA_EXT_DIRS="\"[...]/hurd/master.build.install/share/java/ext\"" -DGCJ_ENDORSED_DIRS="\"[...]/hurd/master.build.install/share/java/gcj-endorsed\"" -DGCJ_VERSIONED_LIBDIR="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\"" -DPATH_SEPARATOR="\":\"" -DECJ_JAR_FILE="\"\"" -DLIBGCJ_DEFAULT_DATABASE="\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\"" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"gcj-4.6.0-12/classmap.db\"" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info `grep -v '^#' ../../../master/libjava/libtool-version` -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la
-+libtool: link: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build/[ARCH]/libjava/.libs -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs ./.libs/libgcj.so -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
- libtool: link: (cd ".libs" && rm -f "libgij.so.12" && ln -s "libgij.so.12.0.0" "libgij.so.12")
- libtool: link: (cd ".libs" && rm -f "libgij.so" && ln -s "libgij.so.12.0.0" "libgij.so")
- libtool: link: ar rc .libs/libgij.a gij.o
diff --git a/open_issues/gcc/testsuite/log_build-hurd.sed b/open_issues/gcc/testsuite/log_build-hurd.sed
deleted file mode 100644
index 26da4f7e..00000000
--- a/open_issues/gcc/testsuite/log_build-hurd.sed
+++ /dev/null
@@ -1,11 +0,0 @@
-s%i686-unknown-gnu0\.3%[ARCH]%g
-
-s%libdecnumber/dpd%[libdecnumber]%g
-
-
-
-
-
-
-s%libgomp/config/posix/%libgomp/config/[SYSDEP]/%g
-
diff --git a/open_issues/gcc/testsuite/log_build-linux.sed b/open_issues/gcc/testsuite/log_build-linux.sed
deleted file mode 100644
index f9b412ef..00000000
--- a/open_issues/gcc/testsuite/log_build-linux.sed
+++ /dev/null
@@ -1,10 +0,0 @@
-s%i686-pc-linux-gnu%[ARCH]%g
-
-s%libdecnumber/bid%[libdecnumber]%g
-s%-I../../../master/libgcc/config/libbid -DENABLE_DECIMAL_BID_FORMAT%%
-
-s%-I../../../master/libgomp/config/linux/x86 -I../../../master/libgomp/config/linux %%
-s%-ftls-model=initial-exec -march=i486 -mtune=i686 %%
-s%-Werror -ftls-model=initial-exec -march=i486 -pthread -mtune=i686%-pthread -Werror%
-s%libgomp/config/linux/%libgomp/config/[SYSDEP]/%g
-s%libgomp/config/posix/%libgomp/config/[SYSDEP]/%g
diff --git a/open_issues/gcc/testsuite/log_install-diff b/open_issues/gcc/testsuite/log_install-diff
deleted file mode 100644
index 0cccbf4d..00000000
--- a/open_issues/gcc/testsuite/log_install-diff
+++ /dev/null
@@ -1,221 +0,0 @@
---- /dev/fd/63 2010-12-10 12:00:47.102216005 +0100
-+++ /dev/fd/62 2010-12-10 12:00:47.102216005 +0100
-@@ -395,7 +395,7 @@
- /usr/bin/install -c -m 644 ../../master/gcc/cp/cxx-pretty-print.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/cp/cxx-pretty-print.h
- /usr/bin/install -c -m 644 ../../master/gcc/cp/name-lookup.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/cp/name-lookup.h
- /bin/bash ../../master/gcc/../mkinstalldirs [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include
--headers=`echo tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h coretypes.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h toplev.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h tree-pass.h timevar.h timevar.def gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h ggc.h gtype-desc.h statistics.h tree-dump.h ../../master/gcc/../include/splay-tree.h tree-pass.h timevar.h timevar.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h ../../master/gcc/../libcpp/include/line-map.h input.h vec.h statistics.h opts.h params.h params.def plugin.def options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/linux-android.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h defaults.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h config/i386/i386-protos.h tm-preds.h auto-host.h ../../master/gcc/../include/ansidecl.h auto-host.h ansidecl.h auto-host.h ansidecl.h intl.h plugin-version.h configargs.h diagnostic.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def c-family/c-objc.h c-family/c-pretty-print.h pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-iterator.h plugin.h gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h tree-flow.h tree-flow-inline.h tree-ssa-operands.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h ../../master/gcc/../include/hashtab.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h ipa-reference.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-ssa-alias.h langhooks.h incpath.h debug.h except.h ../../master/gcc/../include/hashtab.h vecprim.h vecir.h tree-ssa-sccvn.h real.h output.h ipa-utils.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h c-family/c-pragma.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cppdefault.h flags.h ../../master/gcc/../include/md5.h params.def params.h prefix.h tree-inline.h ipa-prop.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h vec.h statistics.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h tm_p.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h cfgloop.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/linux-android.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h vecprim.h double-int.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h emit-rtl.h version.h | tr ' ' '\012' | sort -u`; \
-+headers=`echo tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h coretypes.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h toplev.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h tree-pass.h timevar.h timevar.def gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h ggc.h gtype-desc.h statistics.h tree-dump.h ../../master/gcc/../include/splay-tree.h tree-pass.h timevar.h timevar.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h ../../master/gcc/../libcpp/include/line-map.h input.h vec.h statistics.h opts.h params.h params.def plugin.def options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h options.h insn-constants.h config/vxworks-dummy.h config/i386/i386.h config/i386/unix.h config/i386/att.h config/dbxelf.h config/elfos.h config/svr4.h config/linux.h config/glibc-stdint.h config/i386/linux.h config/gnu.h config/i386/gnu.h defaults.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h config/i386/i386-protos.h tm-preds.h auto-host.h ../../master/gcc/../include/ansidecl.h auto-host.h ansidecl.h auto-host.h ansidecl.h intl.h plugin-version.h configargs.h diagnostic.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def c-family/c-objc.h c-family/c-pretty-print.h pretty-print.h ../../master/gcc/../libcpp/include/line-map.h input.h ../../master/gcc/../include/obstack.h c-family/c-common.h c-family/c-common.def ../../master/gcc/../include/splay-tree.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ggc.h gtype-desc.h statistics.h diagnostic-core.h ../../master/gcc/../libcpp/include/line-map.h input.h bversion.h diagnostic.def tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-iterator.h plugin.h gcc-plugin.h highlev-plugin-common.h config.h auto-host.h ../../master/gcc/../include/ansidecl.h system.h hwint.h ../../master/gcc/../include/libiberty.h ../../master/gcc/../include/safe-ctype.h ../../master/gcc/../include/filenames.h ../../master/gcc/../include/hashtab.h tree-flow.h tree-flow-inline.h tree-ssa-operands.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h ../../master/gcc/../include/hashtab.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h ipa-reference.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-ssa-alias.h langhooks.h incpath.h debug.h except.h ../../master/gcc/../include/hashtab.h vecprim.h vecir.h tree-ssa-sccvn.h real.h output.h ipa-utils.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h c-family/c-pragma.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h ../../master/gcc/../libcpp/include/line-map.h ../../master/gcc/../libcpp/include/cpplib.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cppdefault.h flags.h ../../master/gcc/../include/md5.h params.def params.h prefix.h tree-inline.h ipa-prop.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h vec.h statistics.h cgraph.h vec.h statistics.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cif-code.def ipa-ref.h ipa-ref-inline.h ../../master/gcc/../include/plugin-api.h gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h target.h target.def insn-modes.h tree-ssa-operands.h tree-ssa-alias.h vecir.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h tm_p.h ../../master/gcc/config/i386/i386-protos.h tm-preds.h cfgloop.h basic-block.h predict.h predict.def vec.h statistics.h function.h tree.h all-tree.def tree.def c-family/c-common.def ../../master/gcc/ada/gcc-interface/ada-tree.def ../../master/gcc/cp/cp-tree.def ../../master/gcc/java/java-tree.def ../../master/gcc/objc/objc-tree.def machmode.h mode-classes.def insn-modes.h tree-check.h builtins.def sync-builtins.def omp-builtins.def ../../master/gcc/../libcpp/include/line-map.h input.h statistics.h vec.h statistics.h treestruct.def ../../master/gcc/../include/hashtab.h double-int.h alias.h ../../master/gcc/../libcpp/include/symtab.h ../../master/gcc/../include/obstack.h flags.h coretypes.h flag-types.h options.h flag-types.h vecir.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h ../../master/gcc/../include/hashtab.h vecprim.h tm.h options.h ../../master/gcc/config/vxworks-dummy.h ../../master/gcc/config/i386/i386.h ../../master/gcc/config/i386/unix.h ../../master/gcc/config/i386/att.h ../../master/gcc/config/dbxelf.h ../../master/gcc/config/elfos.h ../../master/gcc/config/svr4.h ../../master/gcc/config/linux.h ../../master/gcc/config/glibc-stdint.h ../../master/gcc/config/i386/linux.h ../../master/gcc/config/gnu.h ../../master/gcc/config/i386/gnu.h ../../master/gcc/defaults.h insn-constants.h insn-flags.h options.h flag-types.h hard-reg-set.h cfghooks.h rtl.h rtl.def machmode.h mode-classes.def insn-modes.h reg-notes.def insn-notes.def ../../master/gcc/../libcpp/include/line-map.h input.h real.h machmode.h mode-classes.def insn-modes.h statistics.h vec.h statistics.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h alias.h ../../master/gcc/../include/hashtab.h genrtl.h vecir.h vecprim.h double-int.h bitmap.h ../../master/gcc/../include/hashtab.h statistics.h sbitmap.h emit-rtl.h version.h | tr ' ' '\012' | sort -u`; \
- srcdirstrip=`echo "../../master/gcc" | sed 's/[].[^$\\*|]/\\\\&/g'`; \
- for file in $headers; do \
- if [ -f $file ] ; then \
-@@ -433,13 +433,14 @@
- mkdir -p -- [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config
- /usr/bin/install -c -m 644 ../../master/gcc/config/elfos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/elfos.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/glibc-stdint.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/glibc-stdint.h
-+/usr/bin/install -c -m 644 ../../master/gcc/config/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/gnu.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/i386/att.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/att.h
- mkdir -p -- [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386
-+/usr/bin/install -c -m 644 ../../master/gcc/config/i386/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/gnu.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386-protos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386-protos.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/i386/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/linux.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/i386/unix.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/unix.h
--/usr/bin/install -c -m 644 ../../master/gcc/config/linux-android.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux-android.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/svr4.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/svr4.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/vxworks-dummy.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/vxworks-dummy.h
-@@ -470,12 +471,13 @@
- /usr/bin/install -c -m 644 ../../master/gcc/config/dbxelf.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/dbxelf.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/elfos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/elfos.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/glibc-stdint.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/glibc-stdint.h
-+/usr/bin/install -c -m 644 ../../master/gcc/config/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/gnu.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/i386/att.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/att.h
-+/usr/bin/install -c -m 644 ../../master/gcc/config/i386/gnu.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/gnu.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386-protos.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386-protos.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/i386/i386.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/i386.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/i386/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/linux.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/i386/unix.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/i386/unix.h
--/usr/bin/install -c -m 644 ../../master/gcc/config/linux-android.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux-android.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/linux.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/linux.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/svr4.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/svr4.h
- /usr/bin/install -c -m 644 ../../master/gcc/config/vxworks-dummy.h [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/plugin/include/config/vxworks-dummy.h
-@@ -638,7 +640,6 @@
- libtool: install: /usr/bin/install -c .libs/liblto_plugin.a [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0/liblto_plugin.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0/liblto_plugin.a
- libtool: install: ranlib [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0/liblto_plugin.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/libexec/gcc/[ARCH]/4.6.0
-@@ -789,7 +790,6 @@
- libtool: install: /usr/bin/install -c .libs/libsupc++.a [...]/hurd/master.build.install/lib/libsupc++.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libsupc++.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libsupc++.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -839,7 +839,6 @@
- libtool: install: /usr/bin/install -c .libs/libstdc++.a [...]/hurd/master.build.install/lib/libstdc++.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libstdc++.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libstdc++.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -1115,9 +1114,6 @@
- libtool: install: /usr/bin/install -c .libs/libmudflapth.a [...]/hurd/master.build.install/lib/libmudflapth.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libmudflapth.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libmudflapth.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
--ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
--
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -1250,9 +1246,6 @@
- libtool: install: /usr/bin/install -c .libs/libssp_nonshared.a [...]/hurd/master.build.install/lib/libssp_nonshared.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libssp_nonshared.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libssp_nonshared.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
--ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
--
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -1450,9 +1443,6 @@
- libtool: install: /usr/bin/install -c .libs/libquadmath.a [...]/hurd/master.build.install/lib/libquadmath.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libquadmath.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libquadmath.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
--ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
--
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -1584,7 +1574,6 @@
- libtool: install: /usr/bin/install -c .libs/libgfortranbegin.a [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/libgfortranbegin.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/libgfortranbegin.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0/libgfortranbegin.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib/gcc/[ARCH]/4.6.0
-@@ -1617,9 +1606,6 @@
- libtool: install: /usr/bin/install -c .libs/libgfortran.a [...]/hurd/master.build.install/lib/libgfortran.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgfortran.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libgfortran.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
--ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
--
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -1652,9 +1638,6 @@
- libtool: install: /usr/bin/install -c .libs/libobjc.a [...]/hurd/master.build.install/lib/libobjc.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libobjc.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libobjc.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
--ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
--
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -1724,9 +1707,6 @@
- done; \
- fi
- make[3]: Leaving directory `/media/data[...]/hurd/master.build/[ARCH]/libobjc'
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
--ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
--
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -2048,9 +2028,6 @@
- libtool: install: /usr/bin/install -c .libs/libffi.a [...]/hurd/master.build.install/lib/libffi.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libffi.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libffi.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
--ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
--
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -2260,7 +2237,6 @@
- /bin/bash ../../../libtool --mode=install /usr/bin/install -c libjavamath.la '[...]/hurd/master.build.install/lib/gcj-4.6.0-12'
- libtool: install: /usr/bin/install -c .libs/libjavamath.so [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjavamath.so
- libtool: install: /usr/bin/install -c .libs/libjavamath.lai [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjavamath.la
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib/gcj-4.6.0-12
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib/gcj-4.6.0-12
-@@ -2451,14 +2427,13 @@
- test -z "[...]/hurd/master.build.install/lib/gcj-4.6.0-12" || /bin/mkdir -p "[...]/hurd/master.build.install/lib/gcj-4.6.0-12"
- /bin/bash ./libtool --mode=install /usr/bin/install -c libjvm.la '[...]/hurd/master.build.install/lib/gcj-4.6.0-12'
- libtool: install: warning: relinking `libjvm.la'
--libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
--libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
-+libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libjvm.la -avoid-version -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib/gcj-4.6.0-12 jni-libjvm.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
-+libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/jni-libjvm.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libjvm.so -o .libs/libjvm.so
- libtool: install: /usr/bin/install -c .libs/libjvm.soT [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.so
- libtool: install: /usr/bin/install -c .libs/libjvm.lai [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.la
- libtool: install: /usr/bin/install -c .libs/libjvm.a [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/gcj-4.6.0-12/libjvm.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib/gcj-4.6.0-12
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib/gcj-4.6.0-12
-@@ -2532,8 +2507,8 @@
- libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgcj.so.12.0.0 libgcj.so || { rm -f libgcj.so && ln -s libgcj.so.12.0.0 libgcj.so; }; })
- libtool: install: /usr/bin/install -c .libs/libgcj.lai [...]/hurd/master.build.install/lib/libgcj.la
- libtool: install: warning: relinking `libgij.la'
--libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
--libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
-+libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
-+libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
- libtool: install: /usr/bin/install -c .libs/libgij.so.12.0.0T [...]/hurd/master.build.install/lib/libgij.so.12.0.0
- libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so.12 || { rm -f libgij.so.12 && ln -s libgij.so.12.0.0 libgij.so.12; }; })
- libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so || { rm -f libgij.so && ln -s libgij.so.12.0.0 libgij.so; }; })
-@@ -2561,9 +2536,6 @@
- libtool: install: /usr/bin/install -c .libs/libgcj_bc.a [...]/hurd/master.build.install/lib/libgcj_bc.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgcj_bc.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libgcj_bc.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
--ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
--
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -2613,8 +2585,8 @@
- libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgcj.so.12.0.0 libgcj.so || { rm -f libgcj.so && ln -s libgcj.so.12.0.0 libgcj.so; }; })
- libtool: install: /usr/bin/install -c .libs/libgcj.lai [...]/hurd/master.build.install/lib/libgcj.la
- libtool: install: warning: relinking `libgij.la'
--libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
--libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
-+libtool: install: (cd [...]/hurd/master.build/[ARCH]/libjava; /bin/bash [...]/hurd/master.build/[ARCH]/libjava/libtool --tag CXX --mode=relink [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -Wswitch-enum -D_FILE_OFFSET_BITS=64 -ffloat-store -fomit-frame-pointer -Usun -Wextra -Wall -D_GNU_SOURCE -DPREFIX=\"[...]/hurd/master.build.install\" -DTOOLEXECLIBDIR=\"[...]/hurd/master.build.install/lib\" -DJAVA_HOME=\"[...]/hurd/master.build.install\" -DBOOT_CLASS_PATH=\"[...]/hurd/master.build.install/share/java/libgcj-4.6.0.jar\" -DJAVA_EXT_DIRS=\"[...]/hurd/master.build.install/share/java/ext\" -DGCJ_ENDORSED_DIRS=\"[...]/hurd/master.build.install/share/java/gcj-endorsed\" -DGCJ_VERSIONED_LIBDIR=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12\" -DPATH_SEPARATOR=\":\" -DECJ_JAR_FILE=\"\" -DLIBGCJ_DEFAULT_DATABASE=\"[...]/hurd/master.build.install/lib/gcj-4.6.0-12/classmap.db\" -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL=\"gcj-4.6.0-12/classmap.db\" -g -O2 -D_GNU_SOURCE -o libgij.la -rpath [...]/hurd/master.build.install/lib -version-info 12:0:0 -Wl,-Bsymbolic-functions -rpath [...]/hurd/master.build.install/lib gij.lo -L[...]/hurd/master.build/[ARCH]/libjava/.libs libgcj.la )
-+libtool: relink: [...]/hurd/master.build/./gcc/xgcc -shared-libgcc -B[...]/hurd/master.build/./gcc -nostdinc++ -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -B[...]/hurd/master.build.install/[ARCH]/bin/ -B[...]/hurd/master.build.install/[ARCH]/lib/ -isystem [...]/hurd/master.build.install/[ARCH]/include -isystem [...]/hurd/master.build.install/[ARCH]/sys-include -shared -nostdlib /usr/lib/crti.o [...]/hurd/master.build/./gcc/crtbeginS.o .libs/gij.o -Wl,-rpath -Wl,[...]/hurd/master.build.install/lib -L[...]/hurd/master.build/[ARCH]/libjava/.libs -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src -L[...]/hurd/master.build/[ARCH]/libstdc++-v3/src/.libs -L[...]/hurd/master.build.install/lib -lgcj -L[...]/hurd/master.build/[ARCH]/libjava -lpthread -lrt -ldl -L[...]/hurd/master.build/./gcc -lc -lgcc_s [...]/hurd/master.build/./gcc/crtendS.o /usr/lib/crtn.o -Wl,-Bsymbolic-functions -Wl,-soname -Wl,libgij.so.12 -o .libs/libgij.so.12.0.0
- libtool: install: /usr/bin/install -c .libs/libgij.so.12.0.0T [...]/hurd/master.build.install/lib/libgij.so.12.0.0
- libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so.12 || { rm -f libgij.so.12 && ln -s libgij.so.12.0.0 libgij.so.12; }; })
- libtool: install: (cd [...]/hurd/master.build.install/lib && { ln -s -f libgij.so.12.0.0 libgij.so || { rm -f libgij.so && ln -s libgij.so.12.0.0 libgij.so; }; })
-@@ -2642,9 +2614,6 @@
- libtool: install: /usr/bin/install -c .libs/libgcj_bc.a [...]/hurd/master.build.install/lib/libgcj_bc.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgcj_bc.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libgcj_bc.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
--ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
--
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
-@@ -3776,9 +3745,6 @@
- libtool: install: /usr/bin/install -c .libs/libgomp.a [...]/hurd/master.build.install/lib/libgomp.a
- libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libgomp.a
- libtool: install: ranlib [...]/hurd/master.build.install/lib/libgomp.a
--libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
--ldconfig: [...]/hurd/master.build.install/lib/libstdc++.so.6.0.15-gdb.py is not an ELF file - it has the wrong magic bytes at the start.
--
- ----------------------------------------------------------------------
- Libraries have been installed in:
- [...]/hurd/master.build.install/lib
diff --git a/open_issues/unit_testing.mdwn b/open_issues/unit_testing.mdwn
index d50f5f6d..66a61b8a 100644
--- a/open_issues/unit_testing.mdwn
+++ b/open_issues/unit_testing.mdwn
@@ -18,7 +18,7 @@ abandoned).
* [DejaGnu](http://www.gnu.org/software/dejagnu/) /
[Expect](http://expect.nist.gov/)
- * used by the [[GCC testsuite|gcc/testsuite]], [[GDB_testsuite]],
+ * used by the [[GCC testsuite|gcc]], [[GDB_testsuite]],
[[binutils testsuite|binutils/testsuite]], etc.
* The [[glibc_testsuite]] has a home-grown system (Makefile-based), likewise
--
cgit v1.2.3
From a443aefc2e130efeb1c76edd91cb950d90ad6adf Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 11 Dec 2010 10:09:39 +0100
Subject: hurd/subhurd: Add use case: debugging the main Hurd system
---
hurd/subhurd.mdwn | 31 +++++++++++++++++++++++++------
1 file changed, 25 insertions(+), 6 deletions(-)
diff --git a/hurd/subhurd.mdwn b/hurd/subhurd.mdwn
index 5b132604..84372dd1 100644
--- a/hurd/subhurd.mdwn
+++ b/hurd/subhurd.mdwn
@@ -1,12 +1,13 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
A sub-Hurd is like a [[neighbor_Hurd|neighborhurd]], however, makes use of some
resources provided by another Hurd. For instance, backing store and the
@@ -17,7 +18,8 @@ attach to them with gdb from the parent
([[debugging_via_subhurds|debugging/subhurd]]). This avoids deadlock, e.g.,
when the instance of gdb stops the server but requires its use. (Note: it is
possible to use [[debugging/gdb/noninvasive_debugging]], but this is less
-flexible.)
+flexible.) Vice versa, it is also possible to use a subhurd to debug the
+*main* Hurd system, for example, the latter's root file system.
# Howto
@@ -105,9 +107,9 @@ inside the subhurd, or to `ssh` directly into the subhurd.
If you want to access the subhurd processes from the outside, e.g. for
[[debugging_purposes|debugging/subhurd]] (or to get rid of a subhurd that
-didn't exit cleanly...), you need to find out how main Hurd PIDs correspond to
+didn't exit cleanly...), you need to find out how main Hurd [[PID]]s correspond to
subhurd processes: the subhurd processes appear in the main Hurd (e.g. if doing
-`ps -e`) as unknown processes, and vice versa, but the PIDs are different! To
+`ps -e`) as unknown processes, and vice versa, but the [[PID]]s are different! To
find out which process is which, you can simply compare the order -- while the
numbers are different, the order should usually match. Often it also helps to
look at the number of threads (e.g. using `ps -l`), as many servers have very
@@ -119,3 +121,20 @@ characteristic thread counts.
Read about using a subhurd for [[debugging_purposes|debugging/subhurd]].
Roland's tutorial about [[running_a_subhurd]].
+
+
+# Use Cases
+
+## Debugging the *Main* Hurd System
+
+A subhurd can be used for debugging the *main* Hurd system. This works as long
+as the subhurd doesn't use any services provided by the main Hurd. For
+example, if you already have a subhurd running at the time it happens, you can
+use that one to debug a deadlocked [[translator/ext2fs]] root file system in
+the *main* Hurd.
+
+For this, you need to get a handle to the main Hurd's [[ext2fs
+translator|translator/ext2fs]]'s [[PID]], but this is no problem, as currently
+[[PID]]s are visible across subhurd boundaries. (It is a [[!taglink
+open_issue_hurd]] whether this is the right thing to do in
+[[open_issues/virtualization]] contexts, but that's how it currently is.)
--
cgit v1.2.3
From 5c5c16e265d8ef56b71f319885f32bf144bdea23 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 13 Dec 2010 11:03:31 +0100
Subject: news/2010-08-31: Don't say HAMP.
RMS asked me to include a G in HAMP, as done for GLAMP,
.
---
news/2010-08-31.mdwn | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/news/2010-08-31.mdwn b/news/2010-08-31.mdwn
index b791b323..84fa69c1 100644
--- a/news/2010-08-31.mdwn
+++ b/news/2010-08-31.mdwn
@@ -72,9 +72,8 @@ else="[[!paste id=full_news]]"]]
> and added a [Planet Arch Hurd](http://planet.archhurd.org/) which
> aggregates the different Arch Hurd Blogs.
>
-> * The team packaged everything you need for a
-> [HAMP](http://www.archhurd.org/news/18/) system: Hurd, Apache, MySQL and
-> PHP.
+> * The team packaged everything you need for a [GNU/Hurd-based Apache,
+> MySQL, PHP system](http://www.archhurd.org/news/18/).
>
> * Their Diego Nieto Cid sent a patch series to [*bring console-driver-xkb
> up to
--
cgit v1.2.3
From 8fb130c6315264ff44d86c1d06b8b2d83035bdbe Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 13 Dec 2010 17:14:28 +0100
Subject: microkernel/mach/external_pager_mechanism: Based on a 2002-06 email
by Neal Walfield.
---
microkernel/mach/external_pager_mechanism.mdwn | 13 +++----------
1 file changed, 3 insertions(+), 10 deletions(-)
diff --git a/microkernel/mach/external_pager_mechanism.mdwn b/microkernel/mach/external_pager_mechanism.mdwn
index 7b6015bb..2040f4ba 100644
--- a/microkernel/mach/external_pager_mechanism.mdwn
+++ b/microkernel/mach/external_pager_mechanism.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2002, 2007, 2008 Free Software Foundation,
+[[!meta copyright="Copyright © 2002, 2007, 2008, 2010 Free Software Foundation,
Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
Mach provides a so-called external pager [[mechanism]]. This
mechanism serves to separate *managing memory* from *managing
@@ -180,10 +180,3 @@ fashion. The server is not required to send a response to the kernel.
(D) The manager then transfers the data to the storeio server which
eventually sends it to disk. The device driver consumes the memory
doing the equivalent of a `vm_deallocate`.
-
-
-# Sources
-
-This text is based on a [June 2002
-email](http://lists.gnu.org/archive/html/l4-hurd/2002-06/msg00001.html) by
-[[NealWalfield]].
--
cgit v1.2.3
From cfccdc1bdbee7fb25ef0aa9639a3ffec926bf690 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 13 Dec 2010 19:56:25 +0100
Subject: Shuffle / create / enhance some UNIX / glibc pages.
---
glibc.mdwn | 8 ++++++--
glibc/environment_variable.mdwn | 15 +++++++++++++++
glibc/environment_variables.mdwn | 15 ---------------
glibc/file_descriptor.mdwn | 13 +++++++++++++
glibc/process.mdwn | 26 ++++++++++++++++++++++++++
glibc/signal.mdwn | 31 +++++++++++++++++++++++++++++++
glibc/signals.mdwn | 32 --------------------------------
hurd/glibc.mdwn | 8 +++-----
hurd/glibc/internals.mdwn | 35 -----------------------------------
hurd/io_path.mdwn | 4 ++++
naming_context.mdwn | 17 ++++++++++++-----
unix.mdwn | 13 ++++++++++++-
unix/file_descriptor.mdwn | 4 ++++
unix/process.mdwn | 20 ++++++++++++++++++++
unix/signal.mdwn | 34 ++++++++++++++++++++++++++++++++++
15 files changed, 180 insertions(+), 95 deletions(-)
create mode 100644 glibc/environment_variable.mdwn
delete mode 100644 glibc/environment_variables.mdwn
create mode 100644 glibc/file_descriptor.mdwn
create mode 100644 glibc/process.mdwn
create mode 100644 glibc/signal.mdwn
delete mode 100644 glibc/signals.mdwn
delete mode 100644 hurd/glibc/internals.mdwn
create mode 100644 unix/process.mdwn
create mode 100644 unix/signal.mdwn
diff --git a/glibc.mdwn b/glibc.mdwn
index 124216d9..c47f3f1f 100644
--- a/glibc.mdwn
+++ b/glibc.mdwn
@@ -38,9 +38,13 @@ Porting glibc to a specific architecture is non-trivial.
## Concepts
- * [[environment_variables]]
+ * [[environment_variable]]
- * [[signals]]
+ * [[file_descriptor]]
+
+ * [[process]]
+
+ * [[signal]]
## Individual functions
diff --git a/glibc/environment_variable.mdwn b/glibc/environment_variable.mdwn
new file mode 100644
index 00000000..76c1371e
--- /dev/null
+++ b/glibc/environment_variable.mdwn
@@ -0,0 +1,15 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+
+# External
+
+ * [*putenv() and setenv()*](http://www.greenend.org.uk/rjk/2008/putenv.html)
+ by Richard Kettlewell.
diff --git a/glibc/environment_variables.mdwn b/glibc/environment_variables.mdwn
deleted file mode 100644
index 76c1371e..00000000
--- a/glibc/environment_variables.mdwn
+++ /dev/null
@@ -1,15 +0,0 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-
-# External
-
- * [*putenv() and setenv()*](http://www.greenend.org.uk/rjk/2008/putenv.html)
- by Richard Kettlewell.
diff --git a/glibc/file_descriptor.mdwn b/glibc/file_descriptor.mdwn
new file mode 100644
index 00000000..2c56d070
--- /dev/null
+++ b/glibc/file_descriptor.mdwn
@@ -0,0 +1,13 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+A [[UNIX file descriptor|unix/file_descriptor]] is implemented in [[glibc]] by
+using operations on objects referred to by [[Mach
+ports|microkernel/mach/port]]).
diff --git a/glibc/process.mdwn b/glibc/process.mdwn
new file mode 100644
index 00000000..9b2ec251
--- /dev/null
+++ b/glibc/process.mdwn
@@ -0,0 +1,26 @@
+[[!meta copyright="Copyright © 2009, 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+The GNU Hurd uses a similar concept to [[UNIX processes|unix/process]].
+
+As a [[Mach task|microkernel/mach/task]] only implements a part of a UNIX
+process, there is additional work to be done, for example for [[signal]]s,
+[[environment_variable]]s, [[file_descriptor]]s.
+
+
+# Controlling TTY
+
+Hurd controlling tty behavior is generally consistent with BSD's, including
+`TIOCSCTTY`. Linux also has `TIOCSCTTY` and it is harmless to use it there.
+But BSD and Hurd never do an implicit `TIOCSCTTY` (hence our `O_NOCTTY` is
+zero).
+
+C.f. and the
+following messages.
diff --git a/glibc/signal.mdwn b/glibc/signal.mdwn
new file mode 100644
index 00000000..67028fef
--- /dev/null
+++ b/glibc/signal.mdwn
@@ -0,0 +1,31 @@
+[[!meta copyright="Copyright © 2009, 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+The [[*UNIX signalling mechanism*|unix/signal]] is implemented for the GNU Hurd
+by means of a separate *signal-handling [[thread]]* that is part of every
+[[process]]. This makes handling of signals a separate thread of control.
+
+ * [[SA_SIGINFO, SA_SIGACTION|open_issues/sa_siginfo_sa_sigaction]]
+
+ * Why does `kill` hang sometimes?
+
+ kill send the signal to the process
+ if the process is hung, killing waits
+ signals should be just asynchronous, but apparently for some
+ reason Roland & co wanted some synchronization
+
+ [[!taglink open_issue_glibc]]
+
+
+# Further Reading
+
+ * {{$unix#djb_self-pipe}}.
+
+ * {{$unix#rjk_fork}}.
diff --git a/glibc/signals.mdwn b/glibc/signals.mdwn
deleted file mode 100644
index 40fdc0e1..00000000
--- a/glibc/signals.mdwn
+++ /dev/null
@@ -1,32 +0,0 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-*[[UNIX]] signals* are a means to asynchronously invoke a specific function
-(*signal handler*). This may impact on [[system call]]s that are executing at
-the same time in that they may be completely aborted, return incomplete
-results, scheduled for restarting, or cause signal delivery to be blocked upon
-the system call's completion.
-
-An explanation can be found in the relevant standards, an overview, including
-UNIX signals' deficiencies is given in {{$unix#2010_brown_ghosts_3}}, for
-example.
-
-The UNIX signalling mechanism is implemented for the GNU Hurd by means of a
-separate signal-handling thread that is part of every process. This makes
-handling of signals a separate thread of control.
-
- * [[SA_SIGINFO, SA_SIGACTION|open_issues/sa_siginfo_sa_sigaction]]
-
-
-# External
-
- * {{$unix#djb_self-pipe}}.
-
- * {{$unix#rjk_fork}}.
diff --git a/hurd/glibc.mdwn b/hurd/glibc.mdwn
index bdfed833..39bfed62 100644
--- a/hurd/glibc.mdwn
+++ b/hurd/glibc.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2007, 2008, 2009 Free Software Foundation,
+[[!meta copyright="Copyright © 2007, 2008, 2009, 2010 Free Software Foundation,
Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[General_information|/glibc]] about the glibc.
@@ -17,5 +17,3 @@ For information about how the glibc integrates into the system, see sections
[[Hurd-specific_API]].
[[Debugging_glibc|debugging/glibc]].
-
-[[Internals]].
diff --git a/hurd/glibc/internals.mdwn b/hurd/glibc/internals.mdwn
deleted file mode 100644
index 897da92e..00000000
--- a/hurd/glibc/internals.mdwn
+++ /dev/null
@@ -1,35 +0,0 @@
-[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-Some bits about this, some bits about that.
-
-# Controlling TTY
-
-Hurd controlling tty behavior is generally consistent with BSD's, including
-`TIOCSCTTY`. Linux also has `TIOCSCTTY` and it is harmless to use it there.
-But BSD and Hurd never do an implicit `TIOCSCTTY` (hence our `O_NOCTTY` is
-zero).
-
-C.f. and the
-following messages.
-
-# Sinals
-
-[[Unix]] signals are implemented in glibc.
-
-In every process, signals are handled in a separate signal thread.
-
- [Why does kill hang sometimes?]
- kill send the signal to the process
- if the process is hung, killing waits
- signals should be just asynchronous, but apparently for some reason
- Roland & co wanted some syunchronization
-
-[[!taglink open_issue_glibc]]
diff --git a/hurd/io_path.mdwn b/hurd/io_path.mdwn
index 598ad967..0d83a4ba 100644
--- a/hurd/io_path.mdwn
+++ b/hurd/io_path.mdwn
@@ -50,3 +50,7 @@ License|/fdl]]."]]"""]]
nice overview of the related layering inside the Linux kernel,
including the VFS layer, page cache and directory entry cache
(dcache).
+
+
+[[!tag open_issue_documentation]]
diff --git a/naming_context.mdwn b/naming_context.mdwn
index 3a0751c0..2968b0a5 100644
--- a/naming_context.mdwn
+++ b/naming_context.mdwn
@@ -1,18 +1,22 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
Names are bindings to objects, however, to find an object
given a name, the relation must be looked up in a
-naming context. A problem with using string as names is
+*naming context*.
+
+A problem with using strings as names is
that it is very easy to lose track of the correct naming
-context. This is one of the problem with [[PassiveTranslators]]:
+context. This is one of the problem with [[passive
+translators|hurd/translator]]:
a passive translator is a string. When the node is accessed
on which the passive translator is set and there is no active
translator, then an active translator is started using the
@@ -22,3 +26,6 @@ passive translator. The passive translator settings are
therefore resolved in the file system's naming context, which
may be different from that of the program instance that set the
passive translator setting.
+
+[[!tag open_issue_hurd open_issue_documentation]]
diff --git a/unix.mdwn b/unix.mdwn
index 3cfe7771..8694f7b0 100644
--- a/unix.mdwn
+++ b/unix.mdwn
@@ -13,6 +13,17 @@ License|/fdl]]."]]"""]]
*UNIX* is a [[kernel]] implementation.
+# Concepts
+
+ * [[file_descriptor]]
+
+ * [[process]]
+
+ * [[signal]]
+
+ * [[system_call]]
+
+
# External
* Wikipedia page about [[!wikipedia UNIX]].
@@ -31,7 +42,7 @@ License|/fdl]]."]]"""]]
to the `open` [[system_call]].
In {{$2010_brown_ghosts_3}}, he deals with *unfixable designs*, such as
- [[UNIX signals|glibc/signals]] and the *UNIX permission model* (which is
+ UNIX [[signal]]s and the *UNIX permission model* (which is
clearly inferior to a [[capability]]-based system).
* [*UNIX File Permissions*](http://www.greenend.org.uk/rjk/2004/perms.html)
diff --git a/unix/file_descriptor.mdwn b/unix/file_descriptor.mdwn
index 16e03fdf..6f8533c5 100644
--- a/unix/file_descriptor.mdwn
+++ b/unix/file_descriptor.mdwn
@@ -11,3 +11,7 @@ License|/fdl]]."]]"""]]
A *file descriptor* is a [[concept]] of [[UNIX]], and represents a
non-[[persistent|persistency]] handle to an object (a file, for example). With
respect to specific aspects, it is comparable to a [[capability]].
+
+In a GNU Hurd system, the concept of file descriptors is based on object
+handles (through [[Mach ports|microkernel/mach/port]]), and is [[implemented in
+glibc|glibc/file_descriptor]].
diff --git a/unix/process.mdwn b/unix/process.mdwn
new file mode 100644
index 00000000..21fbfc69
--- /dev/null
+++ b/unix/process.mdwn
@@ -0,0 +1,20 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+A *UNIX process* is TODO.
+
+Generally, especially in [[microkernel]]-based systems, the [[kernel]]'s idea
+of a task is not as encompassing as a UNIX process, and will use additional
+effort to enhance the kernel's primitive to a full-fledged UNIX model.
+
+A [[Mach task|microkernel/mach/task]] implements a part of a UNIX process.
+
+In the GNU/Hurd, processes are based on [[Mach task|microkernel/mach/task]]s,
+but are [[enhanced by the glibc|glibc/process]].
diff --git a/unix/signal.mdwn b/unix/signal.mdwn
new file mode 100644
index 00000000..0d038a45
--- /dev/null
+++ b/unix/signal.mdwn
@@ -0,0 +1,34 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+*[[UNIX]] signals* are a means to asynchronously invoke a specific function
+(*signal handler*) in a [[process]]. It's a rather limited for of doing
+[[IPC]].
+
+Signalling may impact on [[system call]]s that are executing at the same time
+in that they may be completely aborted, return incomplete results, scheduled
+for restarting, or cause signal delivery to be blocked upon the system call's
+completion.
+
+An explanation can be found in the relevant standards, an overview, including
+UNIX signals' deficiencies is given in {{$unix#2010_brown_ghosts_3}}, for
+example.
+
+In a GNU/Hurd system, the signalling system is [[implemented in
+glibc|glibc/signal]].
+
+
+# Further Reading
+
+ * [[!wikipedia Signal_(computing)]]
+
+ * {{$unix#djb_self-pipe}}.
+
+ * {{$unix#rjk_fork}}.
--
cgit v1.2.3
From 4eea3efc13acccfb613571f604f17e0ec68e5bed Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 13 Dec 2010 20:22:52 +0100
Subject: ``Some'' Mach documentation.
Parts have been rescued from
4b382d8daa5a9e2d54e78c18beeff76bc54dc16b:Mach/MachConcepts.mdwn.
---
hurd/faq/old_hurd_faq.txt | 2 +-
idl.mdwn | 22 +++--
ipc.mdwn | 15 ++--
microkernel/fud.mdwn | 14 ++-
microkernel/mach/concepts.mdwn | 27 +++++-
microkernel/mach/documentation.mdwn | 6 +-
microkernel/mach/external_pager_mechanism.mdwn | 14 ++-
microkernel/mach/ipc.mdwn | 19 ++---
microkernel/mach/memory_object.mdwn | 31 +++++++
microkernel/mach/message.mdwn | 31 +++++++
microkernel/mach/mig.mdwn | 33 ++++---
microkernel/mach/mig/documentation.mdwn | 14 +--
microkernel/mach/mig/gnu_mig.mdwn | 12 ++-
microkernel/mach/port.mdwn | 114 +++++++++++++++++--------
microkernel/mach/rpc.mdwn | 16 ++--
microkernel/mach/task.mdwn | 23 +++++
microkernel/mach/thread.mdwn | 37 ++++++++
microkernel/mach/virtual_address_space.mdwn | 36 ++++++++
18 files changed, 364 insertions(+), 102 deletions(-)
create mode 100644 microkernel/mach/memory_object.mdwn
create mode 100644 microkernel/mach/message.mdwn
create mode 100644 microkernel/mach/task.mdwn
create mode 100644 microkernel/mach/thread.mdwn
create mode 100644 microkernel/mach/virtual_address_space.mdwn
diff --git a/hurd/faq/old_hurd_faq.txt b/hurd/faq/old_hurd_faq.txt
index c7e0ffe8..e6c6cb5a 100644
--- a/hurd/faq/old_hurd_faq.txt
+++ b/hurd/faq/old_hurd_faq.txt
@@ -89,7 +89,7 @@ Q4. What's all this about Mach 3.0 (and Mach 4.0)?
As mentioned above, Mach is a micro-kernel, written at Carnegie Mellon
University. A more descriptive term might be a greatest-common-factor
kernel, since it provides facilities common to all ``real'' operating
-systems, such as memory management, interprocess communication,
+systems, such as memory management, inter-process communication,
processes, and a bunch of other stuff. Unfortunately, the system
calls used to access these facilities are only vaguely related to the
familiar and cherished Unix system calls. There are no "fork",
diff --git a/idl.mdwn b/idl.mdwn
index db58f789..adfd9b93 100644
--- a/idl.mdwn
+++ b/idl.mdwn
@@ -1,15 +1,19 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2002, 2003, 2007, 2008, 2010 Free Software
+Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-An IDL is an interface definition language. The most well-known is
-CORBA. An IDL compiler takes a specification and generates stubs
-that hide the transport details. In the case of [[microkernel/mach/MIG]], this
-hides the marshalling and unmarshalling of parameters according
-to [[microkernel/Mach]]'s semantics.
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+An *IDL* is an *interface definition language*. The most well-known is CORBA.
+
+An IDL compiler takes a specification and generates stub code that hides the
+transport details, and by this implements a [[RPC]] system.
+
+In the case of [[Mach's MIG|microkernel/mach/mig]], this hides the marshalling
+and unmarshalling of parameters according to [[microkernel/Mach]]'s semantics,
+and invoking the respective [[microkernel/mach/port]] operations.
diff --git a/ipc.mdwn b/ipc.mdwn
index 2f9cef2e..ff9a166c 100644
--- a/ipc.mdwn
+++ b/ipc.mdwn
@@ -1,16 +1,17 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
-IPC stands for interprocess communication.
+*IPC* stands for *inter-process communication*.
-On [[Unix]], interprocess communication can be achieved using pipes.
+On [[Unix]], inter-process communication can be achieved using pipes.
This is inefficient for large amounts of data as the data must be
copied. This is generally not a problem as most services are
provided by the Unix kernel and Unix is not designed to be
@@ -22,12 +23,14 @@ of many components. As components are separated by their respective
examine and modify the caller's state. The advantage is that if the
protocol is carefully designed, the callee cannot cause the caller
any [[destructive_interference]] thereby removing the need for the
-caller to [[trust]] the callee thus reducing the former's [[tcb]].
+caller to [[trust]] the callee thus reducing the former's [[TCB]].
When done systematically, this can increase the system's [[robustness]].
To this end, microkernels provide richer IPC semantics that include
the ability to transfer [[capabilities|capability]] and to use [[virtual_memory]]
[[mechanism]]s to copy data.
+Continue reading about [[Mach's IPC system|microkernel/mach/IPC]].
+
# See Also
diff --git a/microkernel/fud.mdwn b/microkernel/fud.mdwn
index 6353f81d..3f9229aa 100644
--- a/microkernel/fud.mdwn
+++ b/microkernel/fud.mdwn
@@ -11,7 +11,19 @@ This article is a response to an [earlier article](http://www.linuxjournal.com/n
Miles Nordin claimed that microkernels are dead already. But this is not completely true. The first generation of microkernels, which were in fact no real microkernels, are dead. But there is a new generation, which uses a radically different strategy than the original (so-called) microkernels. Thus, microkernels are still a research topic, and today they look more promising than ever before. By now, this is just something we claim, but read on, and you'll find out why we do so.
-Out of our own experience, we can confirm that the first generation microkernel Mach is quite slow, but being microkernel independent is one of the goals of the Hurd and people are already working on porting the Hurd from Mach to the second generation microkernel L4. Those new second generation kernels aren't as slow as Mach and we think that one should not talk about the performance of microkernel based systems without having read at least some of the papers on L4. The L4 people did some interesting benchmarks, which indicate that one can get a lot of performance by making a microkernel really small. How is this supposed to work? Well, the microkernel provides very primitive, highly optimized operations, and applications use them to implement whichever way of interprocess communication is apropriate for them in an efficient way. By deciding this on a per-case basis, you get optimal performance for all applications.
+Out of our own experience, we can confirm that the first generation microkernel
+Mach is quite slow, but being microkernel independent is one of the goals of
+the Hurd and people are already working on porting the Hurd from Mach to the
+second generation microkernel L4. Those new second generation kernels aren't
+as slow as Mach and we think that one should not talk about the performance of
+microkernel based systems without having read at least some of the papers on
+L4. The L4 people did some interesting benchmarks, which indicate that one can
+get a lot of performance by making a microkernel really small. How is this
+supposed to work? Well, the microkernel provides very primitive, highly
+optimized operations, and applications use them to implement whichever way of
+inter-process communication is apropriate for them in an efficient way. By
+deciding this on a per-case basis, you get optimal performance for all
+applications.
But L4 takes this even further. For example, you can have schedulers in userspace. Therefore you can use a scheduler which is optimized for the specific tasks your system performs. With the Linux kernel, different schedulers are only possible by using a different source tree, thus you cannot switch at run-time and/or have different schedulers for different groups of processes.
diff --git a/microkernel/mach/concepts.mdwn b/microkernel/mach/concepts.mdwn
index 04dbb1c6..a9e8897d 100644
--- a/microkernel/mach/concepts.mdwn
+++ b/microkernel/mach/concepts.mdwn
@@ -1,6 +1,25 @@
-[[Mach]] is a first-generation [[microkernel]]. Mach's basic abstractions
-include [[address_space]]s in the form of [[task]]s, execution contexts in the
-form of [[thread]]s, [[IPC]], [[capabilities|capability]] in the form of [[port]]s, and
-[[memory_object]]s, which enable Mach's [[external_pager_mechanism]].
+[[!meta copyright="Copyright © 2002, 2003, 2007, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[Mach]] is a first-generation [[microkernel]].
+
+Mach's basic abstractions include [[virtual_address_space]]s in the form of
+[[task]]s, execution contexts in the form of [[thread]]s, [[IPC]],
+[[capabilities|capability]] in the form of [[port]]s, and [[memory_object]]s,
+which enable Mach's [[external_pager_mechanism]].
+
+Controlling [[task]]s, their [[virtual_address_space]], [[thread]]s, and other
+system objects in Mach is implemented by using [[port]]s, as opposed to other
+[[kernel]]s' [[system_call]] interface: almost all of the Mach API is
+implemented by sending [[message]]s to [[port]]s. Device drivers that reside
+in kernel space are controlled by ports, too.
Mach's [[API]] is well-[[documented|documentation]].
diff --git a/microkernel/mach/documentation.mdwn b/microkernel/mach/documentation.mdwn
index fc6e59c2..4c6702aa 100644
--- a/microkernel/mach/documentation.mdwn
+++ b/microkernel/mach/documentation.mdwn
@@ -6,8 +6,10 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+ * Mach's [[concepts]].
* [*Meet Mach* by James
Scott](http://beefchunk.com/documentation/macosx-programming/Meet_Mach.pdf),
diff --git a/microkernel/mach/external_pager_mechanism.mdwn b/microkernel/mach/external_pager_mechanism.mdwn
index 2040f4ba..e169495a 100644
--- a/microkernel/mach/external_pager_mechanism.mdwn
+++ b/microkernel/mach/external_pager_mechanism.mdwn
@@ -9,18 +9,16 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
-Mach provides a so-called external pager [[mechanism]]. This
+Mach provides a so-called *external pager [[mechanism]]*. This
mechanism serves to separate *managing memory* from *managing
-content*. Mach does the former while [[user_space]] [[task]]s do the
+content*. Mach does the former while user-space processes do the
latter.
# Introduction
-In Mach, a [[task]]'s [[address_space]] consists of references
-to [[memory_object]]s. A memory object is [[designated|designation]] using
-a [[port]] (a port is just a [[capability]]) and
-implemented by a normal [[process]].
+In Mach, a [[task]]'s [[virtual_address_space]] consists of references to
+[[memory_object]]s.
To associate a memory object with a portion of a task's
address space, `vm_map` is invoked on a capability designating
@@ -29,7 +27,7 @@ and the offset at which to install it. (The first time
a task maps an object, Mach sends an initialization message
to the server including a control capability, which it uses
to supply pages to the kernel.) This is essentially
-the same as mapping a file into an address space on [[Unix]]
+the same as mapping a file into an address space on [[UNIX]]
using `mmap`.
When a task [[faults|page_fault]], Mach checks to see if there is a memory
@@ -86,7 +84,7 @@ structures to manage the mapping and then invokes the
mappings in the client's address space and then replies to the `vm_map` RPC indicating
success.
-There is nothing stopping others from playing "the kernel." This is
+There is nothing stopping others from playing *the kernel*. This is
not a security problem: clients must [[trust]] the server from whom they
obtain memory objects and also the servers with whom they share
the object. Multiple memory managers are a reality that should be
diff --git a/microkernel/mach/ipc.mdwn b/microkernel/mach/ipc.mdwn
index aaf3ba23..1bb44b59 100644
--- a/microkernel/mach/ipc.mdwn
+++ b/microkernel/mach/ipc.mdwn
@@ -1,22 +1,21 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
-[[General_information|/ipc]] about IPC.
+Read about the [[general concept of *inter-process communication* (IPC)|/ipc]].
-An IPC is sent by invoking a [[port]].
+On Mach, an IPC is done by invoking a [[port]].
+
+The two fundamental operations, to *send* and *receive* [[message]]s, are used
+to implement a [[RPC]] system.
[[Sequence_numbering]].
[The Unofficial GNU Mach IPC beginner's guide](http://www.nongnu.org/hurdextras/ipc_guide/ipc_guide.html)
-
-# See Also
-
-* [[RPC]]
diff --git a/microkernel/mach/memory_object.mdwn b/microkernel/mach/memory_object.mdwn
new file mode 100644
index 00000000..2342145c
--- /dev/null
+++ b/microkernel/mach/memory_object.mdwn
@@ -0,0 +1,31 @@
+[[!meta copyright="Copyright © 2002, 2003, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+Mach's [[virtual_memory]] subsystem uses *memory objects* for supplying the
+content of regions of virtual memory in an [[virtual_address_space]].
+
+All of these objects are managed by *memory manager*s, that are also called
+*pager*s. These can be implemented as user-space processes.
+
+Both the memory objects, and their managers are kernel objects, and are
+accessed by [[port]]s.
+
+A system's physical memory is conceived as a *memory cache* that contains
+*memory cache objects*. So when a [[thread]] accesses a page in its task's
+address space, the memory object that includes this page is *cached* in the
+memory cache. Memory objects are [[paged out and paged
+in|external_pager_mechanism]] by the aforementioned memory managers. The
+decision when they should be paged in or paged out is left to [[Mach]]. Each
+memory object has an ordered list of memory managers that provide paging. The
+last one tried is the *default memory manager* that resides in the microkernel,
+in contrast to most of the others. The default memory manager is needed
+because the microkernel can't wait infinitely for someone else to free the
+memory cache: it just calls the next memory manager hoping it to succeed.
diff --git a/microkernel/mach/message.mdwn b/microkernel/mach/message.mdwn
new file mode 100644
index 00000000..ba47671e
--- /dev/null
+++ b/microkernel/mach/message.mdwn
@@ -0,0 +1,31 @@
+[[!meta copyright="Copyright © 2002, 2003, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+*Messages* are collections of typed data, with a defined layout.
+
+They are used for [[IPC]], and are sent to and received from [[port]]s.
+
+These messages are not only opaque data. They can also contain [[port
+rights|port]] to be passed to another [[task]]. Port rights are either
+*copied* or *moved*. Notice that port receive right must be moved but not
+copied because there can't be more than one task that holds the receive right
+to a port. The receiving task creates new local port name to the port rights
+it received.
+
+Some data in the message can be *out-of-line data*. In the message, these are
+*references* to memory regions ([[memory_object]]s) that are *virtually
+copied*. When the message is received in a task, these virtual copies become
+part of the task by mapping them into the receiver's [[virtual_address_space]].
+Another key concept that is applied is using *copy-on-write*, which means that
+data is not copied immediately, but only when it is changed. This is primarily
+used to send large blocks of data efficiently, as it is too expensive to store
+them in the kernel address space: extra copied need only be made at the moment
+that the memory regions begin to diverge, by threads modifying them.
diff --git a/microkernel/mach/mig.mdwn b/microkernel/mach/mig.mdwn
index 4275a4b4..331b3bf4 100644
--- a/microkernel/mach/mig.mdwn
+++ b/microkernel/mach/mig.mdwn
@@ -1,21 +1,34 @@
-[[!meta copyright="Copyright © 2001, 2002, 2003, 2006, 2007, 2008 Free Software
-Foundation, Inc."]]
+[[!meta copyright="Copyright © 2001, 2002, 2003, 2006, 2007, 2008, 2010 Free
+Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
-The Mach Interface Generator (MIG) is an [[IDL]] compiler. Based on an
-interface definition, it creates stubs to [[invoke]] object methods
-and to demultiplex incoming messages. These stubs conveniently hide
-the details of Mach's [[IPC]] machinery and make it easy to implement
-and use Mach [[interface]]s as [[remote_procedure_calls_(RPC)|rpc]].
+The *Mach Interface Generator* (*MIG*) is an [[IDL]] compiler. Based on an
+interface definition, it creates stub code to [[invoke]] object methods and to
+demultiplex incoming messages. These stub functions conveniently hide the
+details of Mach's [[IPC]] and [[port]] machinery and make it easy to implement
+and use Mach [[interface]]s as [[remote procedure calls (RPC)|rpc]]: by using
+the stub functions, the client programs can call remote procedures more or less
+like any other C function.
+
+These functions encode arguments into [[message]]s' format (*marshalling*),
+wait for a result on a newly created [[reply port|port]], decode return
+arguments from the reply message (*demarshalling*, or *unmarshalling*) and pass
+them to the client program. Similar actions are provided in the skeletons that
+are linked to server programs.
+
+MIG allows very precise semantics to be specified about what the arguments are
+and how to be passed.
+
+
+ * [[Documentation]]
-* [[Documentation]]
# Implementations
diff --git a/microkernel/mach/mig/documentation.mdwn b/microkernel/mach/mig/documentation.mdwn
index be762960..7d4f1eca 100644
--- a/microkernel/mach/mig/documentation.mdwn
+++ b/microkernel/mach/mig/documentation.mdwn
@@ -1,13 +1,13 @@
-[[!meta copyright="Copyright © 2002, 2003, 2005, 2007, 2008, 2009 Free Software
-Foundation, Inc."]]
+[[!meta copyright="Copyright © 2002, 2003, 2005, 2007, 2008, 2009, 2010 Free
+Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
This is a small collection of links to external documents describing the *Mach
Interface Generator* used by GNU Mach.
@@ -17,7 +17,7 @@ Interface Generator* used by GNU Mach.
A tutorial which demonstrates the use of the C Threads library primitives in
writing a multithreaded program and the use of the Mach Interface Generator
-(MIG) to generate remote procedure calls for interprocess communication. Like
+(MIG) to generate remote procedure calls for inter-process communication. Like
its companion tutorial, it is based on the Mach 2.5 system. However, the
concepts are applicable to Mach 3.0 user level programming.
@@ -41,9 +41,9 @@ Slides to Rich Drave's talk on MIG, on November 21, 1991:
Mig is an implementation of a subset of the Matchmaker **language**.
"Matchmaker is a language for specifying and automating the generation of
-multilingual interprocess communication interfaces. MIG is an interim
+multilingual inter-process communication interfaces. MIG is an interim
implementation of a subset of the Matchmaker language that generates C and C++
-remote procedure call interfaces for interprocess communication between Mach
+remote procedure call interfaces for inter-process communication between Mach
tasks."
Richard P. Draves, Michael B. Jones, Mary R. Thompson, *MIG - THE MACH
diff --git a/microkernel/mach/mig/gnu_mig.mdwn b/microkernel/mach/mig/gnu_mig.mdwn
index 1bcbd545..0de1bd67 100644
--- a/microkernel/mach/mig/gnu_mig.mdwn
+++ b/microkernel/mach/mig/gnu_mig.mdwn
@@ -1,13 +1,13 @@
-[[!meta copyright="Copyright © 2001, 2006, 2008, 2009 Free Software Foundation,
-Inc."]]
+[[!meta copyright="Copyright © 2001, 2006, 2008, 2009, 2010 Free Software
+Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
GNU MIG is the GNU distribution of the
[[Mach_3.0_interface_generator_*MIG*|mig]], as maintained by the GNU Hurd
@@ -20,5 +20,9 @@ software in the GNU system that uses Mach-based
GNU MIG is fully compatible with [[OSF_MIG|mig]].
+Like its predecessor, it can only generate C code, that has to be compiled and
+linked to client and server programs respectively ([[!taglink
+open_issue_mig]]).
+
* [[Building]] - building (and obtaining) GNU MIG
* [[Open Issues|tag/open_issue_mig]]
diff --git a/microkernel/mach/port.mdwn b/microkernel/mach/port.mdwn
index af4a0c8d..ba2e22c2 100644
--- a/microkernel/mach/port.mdwn
+++ b/microkernel/mach/port.mdwn
@@ -1,41 +1,85 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2002, 2003, 2007, 2008, 2010 Free Software
+Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
-
-Mach ports are [[capabilities|capability]].
-
-A Mach port is a kernel queue. Each port has associated with
-it a receive right and one or more send and send-once rights.
-A queue can hold a number of messages. Once the queue is full,
-the send blocks until their is space to enqueue the message
-(this is interruptible via a timeout mechanism).
-
-A receive right designates a queue and authorizes the holder to
-dequeue messages from the queue, and to create send and send-once
-rights.
-
-Send and send-once rights designate a queue and authorize the
-hold to enqueue messages (in the case of a send-once right,
-a single message). Enqueuing a message is equivalent to
-[[invoke|invoking]] a capability.
-
-Send and receive rights are named using local names. Each
-task has associated with it a port [[address_space]]. A ports
-are addressed via this table. Each task thus has its own
-private [[naming_context]] for ports.
-
-Ports can be [[delegate]]d in an [[IPC]] message. When the
-receiver dequeues the message, the right is made available
-to it.
-
-A [[thread]] can only block receiving on a single port. To work
-around this, the concept of a port set was introduced. A receive
-right can be added to (at most) one port set. When a thread
-receives from a port set, it dequeues from any of the ports that
-has a message available.
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[Mach]] *port*s are [[capabilities|capability]], and are also essentially
+similar to [[UNIX]] pipes. They are communication channels, implemented by
+kernel queues.
+
+Each port has associated with it one *receive right* and one or more *send
+right*s and *send-once right*s. That is, there is one receiver and one or more
+senders -- a unidirectional communication channel. Only with the corresponding
+port right, access to a port is possible; this is enforced by Mach.
+
+The kernel queue can hold a number of [[message]]s. Once the queue is full,
+the send blocks until there is space to enqueue the message (this is
+interruptible via a timeout mechanism).
+
+A receive right [[designates|designation]] a queue and authorizes the holder to
+dequeue messages from the queue, and to create send and send-once rights.
+
+Send and send-once rights designate a queue and authorize the hold to enqueue
+messages (in the case of a send-once right, a single message). Enqueuing a
+message is equivalent to [[invoke|invoking]] a capability.
+
+Ports are automatically destroyed when there is no associated port right to
+them.
+
+Mach knows what port rights belong to each task, but [[thread]]s that running
+in the context of a task refer to ports by means of send and receive rights
+that are named using local *port names*. These port names are plain integers,
+like [[UNIX file descriptors|unix/file_descriptor]]. Only these local names
+can be used by [[thread]]s for invoking operations on ports, threads do not
+deal with port rights directly.
+
+For that, each task has associated with it a *port address_space*, or *port
+name space*. All ports are addressed via this table. Each task thus has its
+own private [[naming_context]] for port rights.
+
+So, the picture is that after obtaining a port send right, the client uses a
+port name to send [[message]]s to the port, or exactly one message if it's a
+send-once right. These messages are (probably) queued and when the server task
+tries to receive messages by having a [[thread]] use its port receive right, it
+gets the message(s). This is called [[IPC]].
+
+Port rights themselvse can be [[delegate]]d in a [[message]], too. When the
+receiver dequeues the message, the right is made available to it.
+
+The delivery of [[message]]s is reliable and strictly ordered. When a
+[[thread]] sends messages *1* and *2*, it is guaranteed that the receiving
+[[task]] will catch them in the same order. Of course, there can be
+intermediate messages that are sent by other threads.
+
+Ports are objects that are implemented by the [[kernel]], and they are
+kernel-protected resources. There is no way for a [[task]] to do anything with
+a port unless it have corresponding port right.
+
+Due to this, ports are globally unique. This makes them ideal for constituting
+system-wide *object references*. For example, the [[RPC]] system as used by
+the GNU Hurd works by invoking *methods* on such object references. The
+available methods are defined in [[hurd/interface]] files, and are processes by
+the [[MIG]] tool.
+
+Invoking an operation on a port does not transfer the current execution control
+to the receiver, but instead is an asynchronous operation. For this, and
+especially in a [[RPC]] system, the sender may include a *reply port* using a
+send-once right, and synchronize (block) on that one.
+
+A [[thread]] can only block receiving on a single port. To work around this,
+the concept of a *port set* was introduced. A receive right can be added to
+(at most) one port set. These port sets look like port receive rights, but
+cannot be passed to other tasks, and there are additional operations for adding
+and removing port receive rights.
+
+When a server process' thread receives from a port set, it dequeues exactly one
+message from any of the ports that has a message available in its queue.
+
+This concept of port sets is also the facility that makes convenient
+implementation of [[UNIX]]'s `select` [[system_call]] possible.
diff --git a/microkernel/mach/rpc.mdwn b/microkernel/mach/rpc.mdwn
index 72acfaa0..60275a86 100644
--- a/microkernel/mach/rpc.mdwn
+++ b/microkernel/mach/rpc.mdwn
@@ -1,15 +1,21 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2002, 2003, 2007, 2008, 2010 Free Software
+Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
-[[General_information|/rpc]] about RPC.
+Read about the [[general concept of a *remote procedure call* (RPC)|/rpc]].
Uses Mach's [[IPC]] [[mechanism]].
-Stub code generated by [[MIG]].
+The [[port]] abstraction allows RPCs to be executed on another computer
+transparently. This can be implemented with user [[task]]s, but there is an
+implementation in the kernel possible, too, which is called *NORMA*, but is not
+avilable in [[GNU Mach|gnumach]].
+
+The RPC stub code generated by [[MIG]].
diff --git a/microkernel/mach/task.mdwn b/microkernel/mach/task.mdwn
new file mode 100644
index 00000000..c03c6a14
--- /dev/null
+++ b/microkernel/mach/task.mdwn
@@ -0,0 +1,23 @@
+[[!meta copyright="Copyright © 2002, 2003, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+A Mach *task* is a collection of resources, a [[virtual_address_space]], and a
+[[port name space|port]]. They depend on [[thread]]s for executing program
+code: a task alone has no means to do so.
+
+Switching from one task to another one involves doing a *context switch*, which
+is usually not a cheap operation, as it involves switching the hardware's idea
+of the memory layout ([[virtual_address_space]]), amongst others.
+
+Mach tasks are distinct from [[UNIX processes|unix/process]] in that they
+provide less facilities. In processes, there are [[unix/signal]]s, process /
+group / session IDs, [[unix/file_descriptor]]s and many other things. Tasks
+are used for resource allocation and sharing; they are *resource container*s.
diff --git a/microkernel/mach/thread.mdwn b/microkernel/mach/thread.mdwn
new file mode 100644
index 00000000..e27bb117
--- /dev/null
+++ b/microkernel/mach/thread.mdwn
@@ -0,0 +1,37 @@
+[[!meta copyright="Copyright © 2002, 2003, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+A Mach *thread* belongs to exactly one [[task]], and is the means of execution.
+The task supplies the resources.
+
+Mach threads are implemented inside the [[kernel]], as opposed to other
+systems' user-level thread packages.
+
+A thread (theoretically) runs concurrently with all the other threads of a
+system. If the system provides several processors, they can be used for
+simultaneously running either several threads of the same task, or several
+threads of different tasks. [[!tag open_issue_documentation]] (But this is currently not support in [[GNU
+Mach|gnumach]].)
+
+It is easy for the kernel to switch execution from one thread to another one
+inside the same task: essentially, it only involves exchanging a few processor
+registers' state.
+
+Threads have scheduling parameters and maintain various statistics about
+themselves.
+
+On GNU/Hurd, APIs for Mach threads and thereabouts are provided by the
+[[hurd/libthreads]] (cthreads), and [[libpthread]] (POSIX Threads) packages.
+
+A task backing a thread is the basis for a [[UNIX process|unix/process]].
diff --git a/microkernel/mach/virtual_address_space.mdwn b/microkernel/mach/virtual_address_space.mdwn
new file mode 100644
index 00000000..97bc5f6b
--- /dev/null
+++ b/microkernel/mach/virtual_address_space.mdwn
@@ -0,0 +1,36 @@
+[[!meta copyright="Copyright © 2002, 2003, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+*Virtual address space*s in Mach define the valid virtual addresses that can be
+used by [[thread]]s under execution in the [[task]] that owns that address
+space. Each task has only one address space and each address space belongs to
+only one task. So when we want to name an address space (for example, in the
+Mach API) we name it by the task it belongs to.
+
+These address spaces are divided into *pages*. Each page has individual
+properties like *access rights* (*read* / *write* / *execute*), *inheritance
+attributes* (*no inheritance* / *copy* / *share*) and some other system
+properties. Page manipulation is optimized to help moving large blocks of data
+from one address space to another, for example when one thread provides data to
+another thread -- *client / server* technology.
+
+Memory ranges of pages that can be controlled as a whole are called
+*[[memory_object]]*s.
+
+*Wired pages* are those that cannot be [[paged out|external_pager_mechanism]].
+For example, Mach itself is a task with its own address space and threads, and
+all of its pages are wired.
+
+*Precious pages* are those that must not be discarded silently when they are
+clean and memory is needed. For example, a memory manager that shares memory
+across a network could not restore a page if it is silently discarded because
+it is unmodified. This is not valid for the well-known [[pager
+managers|external_pager_mechanism]] that use disks as backing store.
--
cgit v1.2.3
From bf18940150b6cd96ff1bcab89f6c1302bdab00a7 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 15 Dec 2010 08:27:25 +0100
Subject: faq/ghamp: New.
---
faq/ghamp.mdwn | 18 ++++++++++++++++++
news/2010-08-31.mdwn | 4 ++--
2 files changed, 20 insertions(+), 2 deletions(-)
create mode 100644 faq/ghamp.mdwn
diff --git a/faq/ghamp.mdwn b/faq/ghamp.mdwn
new file mode 100644
index 00000000..16849aff
--- /dev/null
+++ b/faq/ghamp.mdwn
@@ -0,0 +1,18 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="GHAMP"]]
+
+*GHAMP* is the GNU/Hurd-based Apache, MySQL, PHP solution stack -- analoguous
+to GLAMP, which is based on GNU/Linux.
+
+Pronounce it like the *G* in
+[GNU](http://www.gnu.org/pronunciation/pronunciation.html), followed by a
+mostly silent *H*, and *AMP* as in amplifier.
diff --git a/news/2010-08-31.mdwn b/news/2010-08-31.mdwn
index 84fa69c1..f3910b15 100644
--- a/news/2010-08-31.mdwn
+++ b/news/2010-08-31.mdwn
@@ -72,8 +72,8 @@ else="[[!paste id=full_news]]"]]
> and added a [Planet Arch Hurd](http://planet.archhurd.org/) which
> aggregates the different Arch Hurd Blogs.
>
-> * The team packaged everything you need for a [GNU/Hurd-based Apache,
-> MySQL, PHP system](http://www.archhurd.org/news/18/).
+> * The team [packaged everything](http://www.archhurd.org/news/18/) you need
+> for the [[faq/GHAMP]] solution stack.
>
> * Their Diego Nieto Cid sent a patch series to [*bring console-driver-xkb
> up to
--
cgit v1.2.3
From 2926268128890ff98a85eaaacfb33ac32d476d3b Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 15 Dec 2010 12:08:44 +0100
Subject: open_issues/boehm_gc: GNU guile?
---
open_issues/boehm_gc.mdwn | 3 +++
1 file changed, 3 insertions(+)
diff --git a/open_issues/boehm_gc.mdwn b/open_issues/boehm_gc.mdwn
index c215d501..19bd1b21 100644
--- a/open_issues/boehm_gc.mdwn
+++ b/open_issues/boehm_gc.mdwn
@@ -277,4 +277,7 @@ It has last been run and compared on 2010-11-10, based on CVS HEAD sources from
* What are other applications to test Boehm GC? Also especially in
combination with [[/libpthread]] and dynamic loading of shared libraries?
+ * There's been some talking about it on GNU guile mailing lists, and two
+ Git branches (2010-12-15: last change 2009-09).
+
*
--
cgit v1.2.3
From dfb052220ba6cdf062055b46d480f674938192ab Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 15 Dec 2010 12:19:30 +0100
Subject: public_hurd_boxen: Remove note about flubber re-installation.
---
public_hurd_boxen.mdwn | 5 -----
1 file changed, 5 deletions(-)
diff --git a/public_hurd_boxen.mdwn b/public_hurd_boxen.mdwn
index fc0c1c3a..de636a80 100644
--- a/public_hurd_boxen.mdwn
+++ b/public_hurd_boxen.mdwn
@@ -23,11 +23,6 @@ Here are some Hurd boxes that users have made available to the public:
"[[bddebian]]","[[zenhost]]","Debian GNU/Linux","Celeron 2.2 GHz","Xen dom0 for several hosts"
"""]]
-[[!template id=note text="""**flubber re-installed**
-
-As of 2010-10-10, flubber has been re-installed. Please tell us if there are
-any missing packages, customizations, etc."""]]
-
To request an account on the *[[bddebian]]* machines either contact
*bddebian* or *tschwinge* (other people might also be able to help) in [[IRC]]
or send email to . Also use these contact
--
cgit v1.2.3
From efde1bd2406286b2d0cd0ee3a1292faadb62efec Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 15 Dec 2010 12:22:18 +0100
Subject: public_hurd_boxen: Remove UserKnownHostsFile and
StrictHostKeyChecking overrides.
---
public_hurd_boxen.mdwn | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/public_hurd_boxen.mdwn b/public_hurd_boxen.mdwn
index de636a80..cbe80b8f 100644
--- a/public_hurd_boxen.mdwn
+++ b/public_hurd_boxen.mdwn
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
Here are some Hurd boxes that users have made available to the public:
@@ -69,12 +69,7 @@ connecting from:
Host *.bddebian.com blubber clubber flubber gnubber goober grubber snubber zenhost
CheckHostIP no
- UserKnownHostsFile /dev/null
- StrictHostKeyChecking no
User [username]
The `CheckHostIP` statement is for not having to worry about the machines's IP
-addresses changing (due to dial-up connection), and the `UserKnownHostsFile`
-one together with the `StrictHostKeyChecking` one are for not having ot worry
-about the host keys changing (when the machines are re-installed). Of course,
-this undermines SSH's security system, so you may disagree about these.
+addresses changing (due to being behind a dial-up connection).
--
cgit v1.2.3
From 003173d1a3d194afe2c3795ecb3a350e285e996d Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 15 Dec 2010 12:46:42 +0100
Subject: public_hurd_boxen: Ask for login name and public SSH key.
---
public_hurd_boxen.mdwn | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/public_hurd_boxen.mdwn b/public_hurd_boxen.mdwn
index cbe80b8f..f81f46a6 100644
--- a/public_hurd_boxen.mdwn
+++ b/public_hurd_boxen.mdwn
@@ -25,7 +25,8 @@ Here are some Hurd boxes that users have made available to the public:
To request an account on the *[[bddebian]]* machines either contact
*bddebian* or *tschwinge* (other people might also be able to help) in [[IRC]]
-or send email to . Also use these contact
+or send email to (please include your desired user
+name and public SSH key). Also use these contact
addresses for requesting support with respect to software installations, etc.
@@ -69,7 +70,7 @@ connecting from:
Host *.bddebian.com blubber clubber flubber gnubber goober grubber snubber zenhost
CheckHostIP no
- User [username]
+ User [user name]
The `CheckHostIP` statement is for not having to worry about the machines's IP
addresses changing (due to being behind a dial-up connection).
--
cgit v1.2.3
From e08610c5572f80bb148b2155cf18c8b8bc6c7e5f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 15 Dec 2010 22:29:07 +0100
Subject: microkernel/mach/continuation: New.
---
microkernel/mach/continuation.mdwn | 24 ++++++++++++++++++++++++
open_issues/multithreading.mdwn | 3 +++
2 files changed, 27 insertions(+)
create mode 100644 microkernel/mach/continuation.mdwn
diff --git a/microkernel/mach/continuation.mdwn b/microkernel/mach/continuation.mdwn
new file mode 100644
index 00000000..7a3267f3
--- /dev/null
+++ b/microkernel/mach/continuation.mdwn
@@ -0,0 +1,24 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[Mach]] internally uses *continuation*s for kernel [[thread]] management.
+
+The advantage is that not a full kernel thread stack has to be preserved in
+case that a thread is about to enter a blocking state. This saves space. It
+is not clear this is still worthwhile given today's RAM offerings. (How many
+kernel threads are there, typically?)
+
+And, this would no longer be possible in case Mach were be made a
+[[preemptive|preemtion]] kernel. In the latter case, the kernel itself, that
+is, kernel threads can be preempted, and then their full state needs to be
+preserved.
+
+[[!tag open_issue_documentation]]
diff --git a/open_issues/multithreading.mdwn b/open_issues/multithreading.mdwn
index 170734fd..39203333 100644
--- a/open_issues/multithreading.mdwn
+++ b/open_issues/multithreading.mdwn
@@ -22,6 +22,9 @@ Alternative approaches:
* Continuation-passing style
+ * [[microkernel/Mach]] internally [[uses
+ continuations|microkernel/mach/continuation]], too.
+
* [[Erlang-style_parallelism]]
* [libtcr - Threaded Coroutine Library](http://oss.linbit.com/libtcr/)
--
cgit v1.2.3
From 3f0379f2b72c6fd270720e64eeda0a8a34fcb2a8 Mon Sep 17 00:00:00 2001
From: "http://www.barrucadu.co.uk/"
Date: Sun, 19 Dec 2010 17:38:03 +0000
Subject: Fixed Allan's name.
---
hurd/running/arch_hurd.mdwn | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hurd/running/arch_hurd.mdwn b/hurd/running/arch_hurd.mdwn
index 9786d144..0e6075bb 100644
--- a/hurd/running/arch_hurd.mdwn
+++ b/hurd/running/arch_hurd.mdwn
@@ -10,7 +10,7 @@ License|/fdl]]."]]"""]]
[[!meta title="Arch Hurd"]]
-Arch Hurd is a port of Arch Linux to the GNU Hurd, founded on 2010-01-04 by Michael Walker (Barrucadu) and, with input from a variety of people including Alan McRae (allan), Matthias Lanzinger (melpo), and Alexander Preisinger (giselher), the project has made excellent process. There is a livecd available on the Arch Hurd website, with which you can try or install Arch Hurd.
+Arch Hurd is a port of Arch Linux to the GNU Hurd, founded on 2010-01-04 by Michael Walker (Barrucadu) and, with input from a variety of people including Allan McRae (allan), Matthias Lanzinger (melpo), and Alexander Preisinger (giselher), the project has made excellent process. There is a livecd available on the Arch Hurd website, with which you can try or install Arch Hurd.
### Links
--
cgit v1.2.3
From ba498367be553fc644c865d9cc57994e9841c895 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 20 Dec 2010 10:20:06 +0100
Subject: open_issues/performance: RPC overhead.
---
glibc/fork.mdwn | 5 ++---
open_issues/performance.mdwn | 2 ++
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/glibc/fork.mdwn b/glibc/fork.mdwn
index 378fe835..496dc743 100644
--- a/glibc/fork.mdwn
+++ b/glibc/fork.mdwn
@@ -17,9 +17,8 @@ task|microkernel/mach/task]]. The address space can simply be duplicated by
standard means of the [[microkernel/Mach]], but as [[unix/file_descriptor]]s
(for example) are a concept that is implemented inside [[glibc]] (based on
[[Mach port|microkernel/mach/port]]s), these have to be duplicated from
-userspace, which requires a small number of [[RPC]] for each of them.
-
-In sum, [[this affects performance|open_issues/performance/fork]] when new
+userspace, which requires a small number of [[RPC]]s for each of them, and in
+the sum, [[this affects performance|open_issues/performance/fork]] when new
processes are continuously being spawned from the shell, for example.
Often, a `fork` call will eventually be followed by an `exec`, which [[may in
diff --git a/open_issues/performance.mdwn b/open_issues/performance.mdwn
index 3d146a72..3b4c4537 100644
--- a/open_issues/performance.mdwn
+++ b/open_issues/performance.mdwn
@@ -8,6 +8,8 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
+ * general [[RPC]] overhead
+
* [[I/O System|io_system]]
* [[fork]]
--
cgit v1.2.3
From 0a576d92c6249820cb7ebf5038888c502656e24e Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 20 Dec 2010 12:06:44 +0100
Subject: news/2010-10: New.
---
contributing/web_pages/news/skeleton.mdwn | 2 +
news/2010-10.mdwn | 65 +++++++++++++++++++++++++++++++
2 files changed, 67 insertions(+)
create mode 100644 news/2010-10.mdwn
diff --git a/contributing/web_pages/news/skeleton.mdwn b/contributing/web_pages/news/skeleton.mdwn
index 8f08fba2..c0b4647b 100644
--- a/contributing/web_pages/news/skeleton.mdwn
+++ b/contributing/web_pages/news/skeleton.mdwn
@@ -45,6 +45,8 @@ Watch these places for news:
Better use the Git log.
+ *
+
* Debian
*
diff --git a/news/2010-10.mdwn b/news/2010-10.mdwn
new file mode 100644
index 00000000..6f909005
--- /dev/null
+++ b/news/2010-10.mdwn
@@ -0,0 +1,65 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta date="2010-12-20 11:10 UTC"]]
+
+A month of the Hurd: *bug fixing* / *flubber re-installation*.
+[[!if test="included()" then="""[[!toggle id=full_news
+text="Details."]][[!toggleable id=full_news text="[[!paste id=full_news]]"]]"""
+else="
+[[!paste id=full_news]]"]]
+
+[[!cut id="full_news" text="""
+
+A bit of bug fixing has bee going on:
+
+Samuel Thibault taught [[GNU Mach|microkernel/mach/gnumach]] that Intel Pentium
+4 and Opteron-class CPUs [are not just
+i386](http://lists.gnu.org/archive/html/commit-hurd/2010-10/msg00021.html), but
+in fact a bit more advanced. Not only does this help GNU Mach to select
+optimized code paths, but this information is also propagated to the user
+space, and used for the `uname` command, for example.
+
+Pino Toscano continued [fixing bugs in the socket-related glibc code and Hurd's
+pfinet](http://lists.gnu.org/archive/html/bug-hurd/2010-10/msg00017.html).
+
+After finding out that our `pread` implementation does not conform to the POSIX
+standard in one aspect, Manuel Menal analyzed this, and [posted a
+patch](http://lists.gnu.org/archive/html/bug-hurd/2010-10/msg00056.html).
+
+Alexey Kuznetsov [privided IPv6 raw socket
+fixes](http://lists.gnu.org/archive/html/commit-hurd/2010-10/msg00028.html) for
+[[hurd/translator/pfinet]].
+
+Michael Banck [uploaded a new version of
+crosshurd](http://lists.gnu.org/archive/html/commit-hurd/2010-10/msg00006.html)
+to keep up with recent packaging and dependency changes.
+
+Samuel Thibault uploaded [[hurd/translator/gopherfs]] packages [to the Debian
+repository](http://lists.debian.org/debian-hurd/2010/10/msg00018.html). He
+also [enabled IPv6 support for Debian Installer
+installations](http://lists.gnu.org/archive/html/commit-hurd/2010-10/msg00034.html).
+
+Thomas Schwinge:
+
+> It's been a really long-long time (hooray!), but now
+> [[flubber|public_hurd_boxen]]'s root file system is totally hosed, and thus
+> needs to be
+> [re-installed](http://lists.gnu.org/archive/html/bug-hurd/2010-10/msg00003.html).
+> (I've been running `apt-get dist-upgrade` when the box apparently crashed.)
+> Running `e2fsck` on it spew out over 50.000 lines of illegal and
+> multiply-claimed block lists, before I terminated it, so no chance. I'll do
+> this over the weekend. `/home/` etc. are not affected, thanks to being on a
+> separate partition.
+
+As of two days later, the machine was
+[re-installed](http://lists.gnu.org/archive/html/bug-hurd/2010-10/msg00011.html).
+
+"""]]
--
cgit v1.2.3
From 7d75462177569c3b149b7f8da88652fdf2c6a4e0 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 20 Dec 2010 19:15:13 +0100
Subject: open_issues/binutils: Update.
---
open_issues/binutils.mdwn | 174 +++-
open_issues/binutils/log_build-diff | 622 ++++++++++++
open_issues/binutils/log_install-diff | 18 +
open_issues/binutils/sum_hurd | 1322 +++++++++++++++++++++++++
open_issues/binutils/sum_linux | 1321 ++++++++++++++++++++++++
open_issues/binutils/testsuite.mdwn | 160 ---
open_issues/binutils/testsuite/log_build-diff | 622 ------------
open_issues/binutils/testsuite/sum_hurd | 1318 ------------------------
open_issues/binutils/testsuite/sum_linux | 1316 ------------------------
open_issues/gcc.mdwn | 21 +-
10 files changed, 3468 insertions(+), 3426 deletions(-)
create mode 100644 open_issues/binutils/log_build-diff
create mode 100644 open_issues/binutils/log_install-diff
create mode 100644 open_issues/binutils/sum_hurd
create mode 100644 open_issues/binutils/sum_linux
delete mode 100644 open_issues/binutils/testsuite.mdwn
delete mode 100644 open_issues/binutils/testsuite/log_build-diff
delete mode 100644 open_issues/binutils/testsuite/sum_hurd
delete mode 100644 open_issues/binutils/testsuite/sum_linux
diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn
index 79fcc4a9..81fafaca 100644
--- a/open_issues/binutils.mdwn
+++ b/open_issues/binutils.mdwn
@@ -19,6 +19,8 @@ be) the same, there shouldn't be many differences comparing the binutils
between the GNU/Hurd and GNU/Linux ports, for example. There are a few,
though, as explained below.
+[[!toc levels=2]]
+
# [[General information|/binutils]]
@@ -28,7 +30,8 @@ though, as explained below.
# Configuration
-Last reviewed against cdb2275c9ffb41cacdcee078cf43718ab66c091e (2010-11-24).
+Last reviewed up to the [[Git mirror's e347ef3b343fc42ed312d5125047d59ae15df795
+(2010-12-20) sources|source_repositories/binutils]].
* Globally
@@ -103,4 +106,171 @@ Last reviewed against cdb2275c9ffb41cacdcee078cf43718ab66c091e (2010-11-24).
and 64 bit support.
-# [[Testsuite]]
+# Build
+
+Here's a log of a binutils build run; this is from our [[Git
+repository's 245f62b817ee31135a190793dddb340f04ac95e6 (2010-12-20)
+sources|source_repositories/binutils]], run on kepler.SCHWINGE and grubber.
+
+ $ export LC_ALL=C
+ $ ../master/configure --prefix="$PWD".install 2>&1 | tee log_build
+ [...]
+ $ make SHELL=/bin/bash 2>&1 | tee log_build_
+ [...]
+
+(kepler.SCHWINGE defaults to using /bin/sh for libtool, grubber to /bin/bash;
+thus harmonized.)
+
+On grubber, this takes roughly one hour.
+
+
+## Analysis
+
+x86 GNU/Linux and GNU/Hurd's configurations are [[slightly
+different|binutils]], thus mask out most of the differences that are due to
+GNU/Linux defining `-DTRAD_CORE`, `-DHAVE_i386linux_vec`
+(`-DSELECT_VECS='[...],&i386linux_vec[...]`), `-DHAVE_i386pei_vec`
+(`-DSELECT_VECS='[...],&i386pei_vec[...]`).
+
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd/master.build/log_build* | sed -e "s%${PWD}%[...]%g" -e s%-DTRAD_CORE%% -e s%-DHAVE_i386linux_vec%% -e s%-DHAVE_i386pei_vec%% -e s%-DSELECT_VECS=\\\('\\\''\\\?\\\)\&bfd_elf32_i386_vec,\&i386linux_vec,\&i386pei_vec,\&bfd_elf32_little_generic_vec,\&bfd_elf32_big_generic_vec'\\\''\\\?%-DSELECT_VECS=\\\1\\\&bfd_elf32_i386_vec,\\\&bfd_elf32_little_generic_vec,\\\&bfd_elf32_big_generic_vec\\\1%') <(ssh grubber 'cd tmp/binutils/ && cat hurd/master.build/log_build* | sed "s%${PWD}%[...]%g"') > open_issues/binutils/log_build-diff
+
+[[log_build-diff]].
+
+
+# Install
+
+ $ make SHELL=/bin/bash install 2>&1 | tee log_install
+ [...]
+
+(kepler.SCHWINGE defaults to using /bin/sh, grubber to /bin/bash; thus
+harmonized.)
+
+On grubber, this needs roughly 15 minutes, and takes up around 0.7 GiB.
+
+
+## Analysis
+
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-pc-linux-gnu%[ARCH]%g"') <(ssh grubber 'cd tmp/binutils/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-unknown-gnu0\.3%[ARCH]%g"') > open_issues/binutils/log_install-diff
+
+[[log_install-diff]].
+
+ * `libtool: finish`: `ldconfig` is not run for the Hurd.
+
+
+# Testsuite
+
+ $ make -k check
+ [...]
+
+On grubber, this takes roughly one hour.
+
+ $ ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd/master.build/*/*.sum hurd/master.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils/sum_linux
+ $ ssh grubber 'cd tmp/binutils/ && cat hurd/master.build/*/*.sum hurd/master.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils/sum_hurd
+
+Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
+
+ $ diff -u -F ^Running open_issues/binutils/sum_linux open_issues/binutils/sum_hurd
+ --- open_issues/binutils/sum_linux 2010-12-20 19:01:06.000000000 +0100
+ +++ open_issues/binutils/sum_hurd 2010-12-20 19:01:20.000000000 +0100
+ @@ -1,5 +1,5 @@
+ -Test Run By thomas on Mon Dec 20 11:34:53 2010
+ -Native configuration is i686-pc-linux-gnu
+ +Test Run By tschwinge on Mon Dec 20 11:35:47 2010
+ +Native configuration is i686-unknown-gnu0.3
+
+ === binutils tests ===
+
+ @@ -114,8 +114,8 @@ Running [...]/hurd/master/binutils/tests
+
+ # of expected passes 83
+ # of unsupported tests 2
+ -Test Run By thomas on Mon Dec 20 11:35:19 2010
+ -Native configuration is i686-pc-linux-gnu
+ +Test Run By tschwinge on Mon Dec 20 11:44:29 2010
+ +Native configuration is i686-unknown-gnu0.3
+
+ === ld tests ===
+
+ @@ -296,10 +296,10 @@ Running [...]/hurd/master/ld/testsuite/l
+ PASS: init array
+ PASS: fini array
+ PASS: init array mixed
+ -PASS: static preinit array
+ -PASS: static init array
+ -PASS: static fini array
+ -PASS: static init array mixed
+ +XFAIL: static preinit array
+ +XFAIL: static init array
+ +XFAIL: static fini array
+ +XPASS: static init array mixed
+ Running [...]/hurd/master/ld/testsuite/ld-elf/exclude.exp ...
+ PASS: ld link shared library
+ PASS: ld export symbols from archive
+ @@ -553,8 +553,8 @@ Running [...]/hurd/master/ld/testsuite/l
+ PASS: ELF DSO weak func last DSO
+ PASS: ELF weak func first
+ PASS: ELF weak func last
+ -PASS: ELF weak func first DSO
+ -PASS: ELF weak func last DSO
+ +XFAIL: ELF weak func first DSO
+ +XFAIL: ELF weak func last DSO
+ PASS: ELF DSO weak data first
+ PASS: ELF DSO weak data last
+ PASS: ELF DSO weak data first DSO
+ @@ -565,10 +565,10 @@ Running [...]/hurd/master/ld/testsuite/l
+ PASS: ELF weak data last
+ PASS: ELF weak data first common
+ PASS: ELF weak data last common
+ -PASS: ELF weak data first DSO
+ -PASS: ELF weak data last DSO
+ -PASS: ELF weak data first DSO common
+ -PASS: ELF weak data last DSO common
+ +XFAIL: ELF weak data first DSO
+ +XFAIL: ELF weak data last DSO
+ +XFAIL: ELF weak data first DSO common
+ +XFAIL: ELF weak data last DSO common
+ PASS: ELF DSO small bar (size)
+ PASS: ELF DSO foo with small bar (size)
+ PASS: ELF DSO big bar (size)
+ @@ -873,13 +873,14 @@ Running [...]/hurd/master/ld/testsuite/l
+
+ === ld Summary ===
+
+ -# of expected passes 618
+ -# of expected failures 8
+ +# of expected passes 608
+ +# of unexpected successes 1
+ +# of expected failures 17
+ # of untested testcases 6
+ /media/data[...]/hurd/master.build/ld/ld-new 2.21.51.20101220
+
+ -Test Run By thomas on Mon Dec 20 11:34:59 2010
+ -Native configuration is i686-pc-linux-gnu
+ +Test Run By tschwinge on Mon Dec 20 11:38:03 2010
+ +Native configuration is i686-unknown-gnu0.3
+
+ === gas tests ===
+
+
+
+## Analysis
+
+ * `FAIL: static [...]`
+
+ The testsuite isn't prepared for using `crt0.o` instead of `crt1.o`
+ depending on whether a static or dynamic executable is created. Documented
+ in `ld/configure.host`. Perhaps we should finally rewrite this messy code
+ in glibc to avoid this difference...
+
+ * `FAIL: ld-elf/64ksec`
+
+ On the idle grubber, this one takes a few minutes wall time to complete
+ successfully ([[I/O system
+ weakness|performance/io_system/binutils_ld_64ksec]]), so assuming some
+ system load variation, the testsuite's timeout may trigger.
+
+ * `FAIL: ELF weak [...]`
+
+ [[I|tschwinge]] suppose this is due to us having an override w.r.t. weak
+ symbol handling in glibc, needed for our external [[/libpthread]]. TODO:
+ document properly.
diff --git a/open_issues/binutils/log_build-diff b/open_issues/binutils/log_build-diff
new file mode 100644
index 00000000..802d510c
--- /dev/null
+++ b/open_issues/binutils/log_build-diff
@@ -0,0 +1,622 @@
+--- /dev/fd/63 2010-12-20 11:34:03.204493002 +0100
++++ /dev/fd/62 2010-12-20 11:34:03.208493002 +0100
+@@ -1,6 +1,6 @@
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
+ checking for a BSD-compatible install... /usr/bin/install -c
+ checking whether ln works... yes
+ checking whether ln -s works... yes
+@@ -99,7 +99,7 @@
+ checking for gmsgfmt... /usr/bin/msgfmt
+ checking for xgettext... /usr/bin/xgettext
+ checking for msgmerge... /usr/bin/msgmerge
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -108,9 +108,9 @@
+ checking whether we are using the GNU C compiler... yes
+ checking whether gcc accepts -g... yes
+ checking for gcc option to accept ISO C89... none needed
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking for library containing strerror... none required
+ checking how to run the C preprocessor... gcc -E
+ checking for grep that handles long lines and -e... /bin/grep
+@@ -217,11 +217,11 @@
+ checking whether to enable maintainer-specific portions of Makefiles... no
+ checking for makeinfo... makeinfo --split-size=5000000
+ checking for perl... perl
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-ranlib... ranlib
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-ranlib... ranlib
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -276,12 +276,12 @@
+ checking for sys/sysinfo.h... yes
+ checking for machine/hal_sysinfo.h... no
+ checking for sys/table.h... no
+-checking for sys/sysctl.h... yes
++checking for sys/sysctl.h... no
+ checking for sys/systemcfg.h... no
+ checking for stdint.h... (cached) yes
+ checking for stdio_ext.h... yes
+ checking for process.h... no
+-checking for sys/prctl.h... yes
++checking for sys/prctl.h... no
+ checking for sys/wait.h that is POSIX.1 compatible... yes
+ checking whether time.h and sys/time.h may both be included... yes
+ checking whether errno must be declared... no
+@@ -351,13 +351,13 @@
+ checking for working fork... yes
+ checking for working vfork... (cached) yes
+ checking for _doprnt... no
+-checking for sys_errlist... yes
+-checking for sys_nerr... yes
++checking for sys_errlist... no
++checking for sys_nerr... no
+ checking for sys_siglist... yes
+ checking for external symbol _system_configuration... no
+ checking for __fsetlocking... yes
+ checking for canonicalize_file_name... yes
+-checking for dup3... yes
++checking for dup3... no
+ checking for getrusage... yes
+ checking for getsysinfo... no
+ checking for gettimeofday... (cached) yes
+@@ -372,7 +372,7 @@
+ checking for strerror... yes
+ checking for strsignal... yes
+ checking for sysconf... yes
+-checking for sysctl... yes
++checking for sysctl... no
+ checking for sysmp... no
+ checking for table... no
+ checking for times... yes
+@@ -406,10 +406,10 @@
+ mkdir -p -- ./bfd
+ Configuring in ./bfd
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -426,9 +426,9 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-ranlib... ranlib
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-ranlib... ranlib
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -457,34 +457,34 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... (cached) ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... (cached) ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
++checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking for shl_load... no
+ checking for shl_load in -ldld... no
+ checking for dlopen... no
+ checking for dlopen in -ldl... yes
+ checking whether a program can dlopen itself... yes
+-checking whether a statically linked program can dlopen itself... no
++checking whether a statically linked program can dlopen itself... yes
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+ checking whether to build shared libraries... no
+@@ -567,22 +567,22 @@
+ checking sys/procfs.h usability... yes
+ checking sys/procfs.h presence... yes
+ checking for sys/procfs.h... yes
+-checking for prstatus_t in sys/procfs.h... yes
++checking for prstatus_t in sys/procfs.h... no
+ checking for prstatus32_t in sys/procfs.h... no
+ checking for prstatus_t.pr_who in sys/procfs.h... no
+ checking for prstatus32_t.pr_who in sys/procfs.h... no
+-checking for pstatus_t in sys/procfs.h... no
++checking for pstatus_t in sys/procfs.h... yes
+ checking for pxstatus_t in sys/procfs.h... no
+ checking for pstatus32_t in sys/procfs.h... no
+-checking for prpsinfo_t in sys/procfs.h... yes
++checking for prpsinfo_t in sys/procfs.h... no
+ checking for prpsinfo32_t in sys/procfs.h... no
+-checking for psinfo_t in sys/procfs.h... no
++checking for psinfo_t in sys/procfs.h... yes
+ checking for psinfo32_t in sys/procfs.h... no
+-checking for lwpstatus_t in sys/procfs.h... no
++checking for lwpstatus_t in sys/procfs.h... yes
+ checking for lwpxstatus_t in sys/procfs.h... no
+ checking for lwpstatus_t.pr_context in sys/procfs.h... no
+-checking for lwpstatus_t.pr_reg in sys/procfs.h... no
+-checking for lwpstatus_t.pr_fpreg in sys/procfs.h... no
++checking for lwpstatus_t.pr_reg in sys/procfs.h... yes
++checking for lwpstatus_t.pr_fpreg in sys/procfs.h... yes
+ checking for win32_pstatus_t in sys/procfs.h... no
+ checking linker --as-needed support... yes
+ checking for cos in -lm... yes
+@@ -597,7 +597,7 @@
+ checking for unistd.h... (cached) yes
+ checking for getpagesize... (cached) yes
+ checking for working mmap... yes
+-checking for madvise... yes
++checking for madvise... no
+ checking for mprotect... yes
+ configure: updating cache ./config.cache
+ configure: creating ./config.status
+@@ -1215,36 +1215,15 @@
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...]/hurd/master.build.install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../master/bfd/dwarf1.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/hurd/master.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../master/bfd/dwarf1.c -o dwarf1.o
+ mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...]/hurd/master.build.install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c -o i386linux.lo ../../master/bfd/i386linux.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/hurd/master.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c ../../master/bfd/i386linux.c -o i386linux.o
+-mv -f .deps/i386linux.Tpo .deps/i386linux.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...]/hurd/master.build.install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c -o aout32.lo ../../master/bfd/aout32.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/hurd/master.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c ../../master/bfd/aout32.c -o aout32.o
+-mv -f .deps/aout32.Tpo .deps/aout32.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...]/hurd/master.build.install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c -o pei-i386.lo ../../master/bfd/pei-i386.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/hurd/master.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c ../../master/bfd/pei-i386.c -o pei-i386.o
+-mv -f .deps/pei-i386.Tpo .deps/pei-i386.Plo
+-rm -f peigen.c
+-sed -e s/XX/pe/g < ../../master/bfd/peXXigen.c > peigen.new
+-mv -f peigen.new peigen.c
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...]/hurd/master.build.install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c -o peigen.lo peigen.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/hurd/master.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c peigen.c -o peigen.o
+-mv -f .deps/peigen.Tpo .deps/peigen.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...]/hurd/master.build.install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c -o cofflink.lo ../../master/bfd/cofflink.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/hurd/master.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c ../../master/bfd/cofflink.c -o cofflink.o
+-mv -f .deps/cofflink.Tpo .deps/cofflink.Plo
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...]/hurd/master.build.install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c -o elf32-gen.lo ../../master/bfd/elf32-gen.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/hurd/master.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c ../../master/bfd/elf32-gen.c -o elf32-gen.o
+ mv -f .deps/elf32-gen.Tpo .deps/elf32-gen.Plo
+ /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...]/hurd/master.build.install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c -o cpu-i386.lo ../../master/bfd/cpu-i386.c
+ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/hurd/master.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c ../../master/bfd/cpu-i386.c -o cpu-i386.o
+ mv -f .deps/cpu-i386.Tpo .deps/cpu-i386.Plo
+-/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...]/hurd/master.build.install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c -o trad-core.lo ../../master/bfd/trad-core.c
+-libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../master/bfd -I. -I../../master/bfd -I../../master/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/hurd/master.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c ../../master/bfd/trad-core.c -o trad-core.o
+-mv -f .deps/trad-core.Tpo .deps/trad-core.Plo
+ rm -f tofiles
+ f=""; \
+- for i in elf32-i386.lo elf-ifunc.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo i386linux.lo aout32.lo pei-i386.lo peigen.lo cofflink.lo elf32-gen.lo cpu-i386.lo trad-core.lo ; do \
++ for i in elf32-i386.lo elf-ifunc.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo elf32-gen.lo cpu-i386.lo ; do \
+ case " $f " in \
+ *" $i "*) ;; \
+ *) f="$f $i" ;; \
+@@ -1254,7 +1233,7 @@
+ /bin/bash ../../master/bfd/../move-if-change tofiles ofiles
+ touch stamp-ofiles
+ /bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -release `cat libtool-soversion` -o libbfd.la -rpath [...]/hurd/master.build.install/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles` -lz
+-libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o i386linux.o aout32.o pei-i386.o peigen.o cofflink.o elf32-gen.o cpu-i386.o trad-core.o
++libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o elf32-gen.o cpu-i386.o
+ libtool: link: ranlib .libs/libbfd.a
+ libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
+ libtooldir=`/bin/bash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
+@@ -1270,10 +1249,10 @@
+ mkdir -p -- ./opcodes
+ Configuring in ./opcodes
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -1290,7 +1269,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -1311,8 +1290,8 @@
+ checking minix/config.h presence... no
+ checking for minix/config.h... no
+ checking whether it is safe to define __EXTENSIONS__... yes
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking how to print strings... printf
+ checking for a sed that does not truncate output... /bin/sed
+ checking for fgrep... /bin/grep -F
+@@ -1321,27 +1300,27 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... (cached) ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... (cached) ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
++checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -1445,10 +1424,10 @@
+ mkdir -p -- ./binutils
+ Configuring in ./binutils
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -1465,7 +1444,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -1496,28 +1475,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -1537,7 +1516,7 @@
+ checking for xgettext... /usr/bin/xgettext
+ checking for msgmerge... /usr/bin/msgmerge
+ checking whether to enable maintainer-specific portions of Makefiles... no
+-checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
++checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
+ checking for string.h... (cached) yes
+ checking for strings.h... (cached) yes
+ checking for stdlib.h... (cached) yes
+@@ -1912,10 +1891,10 @@
+ mkdir -p -- ./gas
+ Configuring in ./gas
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -1932,7 +1911,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -1963,28 +1942,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -2164,10 +2143,10 @@
+ mkdir -p -- ./gprof
+ Configuring in ./gprof
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -2184,7 +2163,7 @@
+ checking whether make sets $(MAKE)... yes
+ checking for style of include used by make... GNU
+ checking dependency style of gcc... gcc3
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -2215,28 +2194,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -2397,10 +2376,10 @@
+ mkdir -p -- ./ld
+ Configuring in ./ld
+ configure: creating cache ./config.cache
+-checking build system type... i686-pc-linux-gnu
+-checking host system type... i686-pc-linux-gnu
+-checking target system type... i686-pc-linux-gnu
+-checking for i686-pc-linux-gnu-gcc... gcc
++checking build system type... i686-unknown-gnu0.3
++checking host system type... i686-unknown-gnu0.3
++checking target system type... i686-unknown-gnu0.3
++checking for i686-unknown-gnu0.3-gcc... gcc
+ checking for C compiler default output file name... a.out
+ checking whether the C compiler works... yes
+ checking whether we are cross compiling... no
+@@ -2422,7 +2401,7 @@
+ checking for grep that handles long lines and -e... /bin/grep
+ checking for egrep... /bin/grep -E
+ Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
+-checking for i686-pc-linux-gnu-gcc... (cached) gcc
++checking for i686-unknown-gnu0.3-gcc... (cached) gcc
+ checking whether we are using the GNU C compiler... (cached) yes
+ checking whether gcc accepts -g... (cached) yes
+ checking for gcc option to accept ISO C89... (cached) none needed
+@@ -2450,28 +2429,28 @@
+ checking for BSD- or MS-compatible name lister (nm)... nm
+ checking the name lister (nm) interface... BSD nm
+ checking whether ln -s works... yes
+-checking the maximum length of command line arguments... 805306365
++checking the maximum length of command line arguments... -1
+ checking whether the shell understands some XSI constructs... yes
+ checking whether the shell understands "+="... yes
+ checking for ld option to reload object files... -r
+-checking for i686-pc-linux-gnu-objdump... objdump
++checking for i686-unknown-gnu0.3-objdump... objdump
+ checking how to recognize dependent libraries... pass_all
+-checking for i686-pc-linux-gnu-ar... ar
+-checking for i686-pc-linux-gnu-strip... no
++checking for i686-unknown-gnu0.3-ar... ar
++checking for i686-unknown-gnu0.3-strip... no
+ checking for strip... strip
+-checking for i686-pc-linux-gnu-ranlib... ranlib
++checking for i686-unknown-gnu0.3-ranlib... ranlib
+ checking command to parse nm output from gcc object... ok
+ checking for dlfcn.h... yes
+ checking for objdir... .libs
+ checking if gcc supports -fno-rtti -fno-exceptions... no
+ checking for gcc option to produce PIC... -fPIC -DPIC
+ checking if gcc PIC flag -fPIC -DPIC works... yes
+-checking if gcc static flag -static works... yes
++checking if gcc static flag -static works... no
+ checking if gcc supports -c -o file.o... yes
+ checking if gcc supports -c -o file.o... (cached) yes
+ checking whether the gcc linker (ld) supports shared libraries... yes
+ checking whether -lc should be explicitly linked in... no
+-checking dynamic linker characteristics... GNU/Linux ld.so
++checking dynamic linker characteristics... gnu0.3 ld.so
+ checking how to hardcode library paths into programs... immediate
+ checking whether stripping libraries is possible... yes
+ checking if libtool supports shared libraries... yes
+@@ -2555,13 +2534,13 @@
+ /bin/bash ../../master/ld/../ylwrap ../../master/ld/ldgram.y y.tab.c ldgram.c y.tab.h ldgram.h y.output ldgram.output -- bison -y -d
+ updating ldgram.h
+ (echo "/* This file is automatically generated. DO NOT EDIT! */";\
+- for f in `echo " " eelf_i386.o ei386linux.o "" \
++ for f in `echo " " eelf_i386.o "" \
+ | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
+ echo "extern ld_emulation_xfer_type ld_${f}_emulation;"; \
+ done;\
+ echo "";\
+ echo "#define EMULATION_LIST \\";\
+- for f in `echo " " eelf_i386.o ei386linux.o "" \
++ for f in `echo " " eelf_i386.o "" \
+ | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
+ echo " &ld_${f}_emulation, \\"; \
+ done;\
+@@ -2650,8 +2629,8 @@
+ mv -f .deps/ldctor.Tpo .deps/ldctor.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../master/ld -I. -I../../master/ld -I../bfd -I../../master/ld/../bfd -I../../master/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/hurd/master.build.install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
+ -DDEFAULT_EMULATION='"elf_i386"' \
+- -DBINDIR='"[...]/hurd/master.build.install/bin"' -DTOOLBINDIR='"[...]/hurd/master.build.install/i686-pc-linux-gnu/bin"' \
+- -DTARGET='"i686-pc-linux-gnu"' -DTARGET_SYSTEM_ROOT=\"\" \
++ -DBINDIR='"[...]/hurd/master.build.install/bin"' -DTOOLBINDIR='"[...]/hurd/master.build.install/i686-unknown-gnu0.3/bin"' \
++ -DTARGET='"i686-unknown-gnu0.3"' -DTARGET_SYSTEM_ROOT=\"\" \
+ ../../master/ld/ldmain.c
+ mv -f .deps/ldmain.Tpo .deps/ldmain.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../master/ld -I. -I../../master/ld -I../bfd -I../../master/ld/../bfd -I../../master/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/hurd/master.build.install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldwrite.o -MD -MP -MF .deps/ldwrite.Tpo -c -o ldwrite.o ../../master/ld/ldwrite.c
+@@ -2665,7 +2644,7 @@
+ gcc -DHAVE_CONFIG_H -I. -I../../master/ld -I. -I../../master/ld -I../bfd -I../../master/ld/../bfd -I../../master/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/hurd/master.build.install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmisc.o -MD -MP -MF .deps/ldmisc.Tpo -c -o ldmisc.o ../../master/ld/ldmisc.c
+ mv -f .deps/ldmisc.Tpo .deps/ldmisc.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../master/ld -I. -I../../master/ld -I../bfd -I../../master/ld/../bfd -I../../master/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/hurd/master.build.install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
+- -DSCRIPTDIR='"[...]/hurd/master.build.install/i686-pc-linux-gnu/lib"' -DBINDIR='"[...]/hurd/master.build.install/bin"' -DTOOLBINDIR='"[...]/hurd/master.build.install/i686-pc-linux-gnu/bin"' \
++ -DSCRIPTDIR='"[...]/hurd/master.build.install/i686-unknown-gnu0.3/lib"' -DBINDIR='"[...]/hurd/master.build.install/bin"' -DTOOLBINDIR='"[...]/hurd/master.build.install/i686-unknown-gnu0.3/bin"' \
+ ../../master/ld/ldfile.c
+ mv -f .deps/ldfile.Tpo .deps/ldfile.Po
+ gcc -DHAVE_CONFIG_H -I. -I../../master/ld -I. -I../../master/ld -I../bfd -I../../master/ld/../bfd -I../../master/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/hurd/master.build.install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldcref.o -MD -MP -MF .deps/ldcref.Tpo -c -o ldcref.o ../../master/ld/ldcref.c
+@@ -2673,14 +2652,11 @@
+ gcc -DHAVE_CONFIG_H -I. -I../../master/ld -I. -I../../master/ld -I../bfd -I../../master/ld/../bfd -I../../master/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/hurd/master.build.install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../master/ld/plugin.c
+ mv -f .deps/plugin.Tpo .deps/plugin.Po
+ cp ../../master/ld/emultempl/astring.sed stringify.sed
+-LIB_PATH='' /bin/bash ../../master/ld/genscripts.sh "../../master/ld" "[...]/hurd/master.build.install/lib" "[...]/hurd/master.build.install" "[...]/hurd/master.build.install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no yes elf_i386 "i686-pc-linux-gnu"
++LIB_PATH='' /bin/bash ../../master/ld/genscripts.sh "../../master/ld" "[...]/hurd/master.build.install/lib" "[...]/hurd/master.build.install" "[...]/hurd/master.build.install" i686-unknown-gnu0.3 i686-unknown-gnu0.3 i686-unknown-gnu0.3 "elf_i386" "/usr/local/lib /lib /usr/lib" no yes elf_i386 "i686-unknown-gnu0.3"
+ gcc -DHAVE_CONFIG_H -I. -I../../master/ld -I. -I../../master/ld -I../bfd -I../../master/ld/../bfd -I../../master/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/hurd/master.build.install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT eelf_i386.o -MD -MP -MF .deps/eelf_i386.Tpo -c -o eelf_i386.o eelf_i386.c
+ mv -f .deps/eelf_i386.Tpo .deps/eelf_i386.Po
+-LIB_PATH='' /bin/bash ../../master/ld/genscripts.sh "../../master/ld" "[...]/hurd/master.build.install/lib" "[...]/hurd/master.build.install" "[...]/hurd/master.build.install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no yes i386linux "i686-pc-linux-gnuaout"
+-gcc -DHAVE_CONFIG_H -I. -I../../master/ld -I. -I../../master/ld -I../bfd -I../../master/ld/../bfd -I../../master/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/hurd/master.build.install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ei386linux.o -MD -MP -MF .deps/ei386linux.Tpo -c -o ei386linux.o ei386linux.c
+-mv -f .deps/ei386linux.Tpo .deps/ei386linux.Po
+-/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
+-libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
++/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
++libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
+ touch ld.1
+ perl ../../master/ld/../etc/texi2pod.pl -I ../../master/ld -I ../../master/ld/../bfd/doc -I ../bfd/doc -I ../../master/ld/../libiberty -Dman < ../../master/ld/ld.texinfo > ld.pod
+ (pod2man --center="GNU Development Tools" --release="binutils-2.21.51" --section=1 ld.pod | \
diff --git a/open_issues/binutils/log_install-diff b/open_issues/binutils/log_install-diff
new file mode 100644
index 00000000..83c8d7b6
--- /dev/null
+++ b/open_issues/binutils/log_install-diff
@@ -0,0 +1,18 @@
+--- /dev/fd/63 2010-12-20 19:00:16.368493004 +0100
++++ /dev/fd/62 2010-12-20 19:00:16.368493004 +0100
+@@ -68,7 +68,6 @@
+ libtool: install: /usr/bin/install -c .libs/libbfd.a [...]/hurd/master.build.install/lib/libbfd.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libbfd.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libbfd.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
+@@ -104,7 +103,6 @@
+ libtool: install: /usr/bin/install -c .libs/libopcodes.a [...]/hurd/master.build.install/lib/libopcodes.a
+ libtool: install: chmod 644 [...]/hurd/master.build.install/lib/libopcodes.a
+ libtool: install: ranlib [...]/hurd/master.build.install/lib/libopcodes.a
+-libtool: finish: PATH="/home/thomas/command-i686:/home/thomas/command:/home/thomas/shared/command:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/sbin" ldconfig -n [...]/hurd/master.build.install/lib
+ ----------------------------------------------------------------------
+ Libraries have been installed in:
+ [...]/hurd/master.build.install/lib
diff --git a/open_issues/binutils/sum_hurd b/open_issues/binutils/sum_hurd
new file mode 100644
index 00000000..96dd0cb2
--- /dev/null
+++ b/open_issues/binutils/sum_hurd
@@ -0,0 +1,1322 @@
+Test Run By tschwinge on Mon Dec 20 11:35:47 2010
+Native configuration is i686-unknown-gnu0.3
+
+ === binutils tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/master/binutils/testsuite/binutils-all/ar.exp ...
+PASS: ar long file names
+PASS: ar symbol table
+PASS: ar thin archive
+PASS: ar thin archive with nested archive
+PASS: ar argument parsing
+PASS: ar deterministic archive
+PASS: ar unique symbol in archive
+Running [...]/hurd/master/binutils/testsuite/binutils-all/arm/objdump.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/bfin/objdump.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/compress.exp ...
+PASS: objcopy (objcopy compress debug sections)
+PASS: objcopy (objcopy decompress compressed debug sections)
+PASS: objcopy decompress debug sections in archive
+PASS: objcopy compress debug sections in archive
+Running [...]/hurd/master/binutils/testsuite/binutils-all/dlltool.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/elfedit.exp ...
+UNSUPPORTED: Update ELF header 1
+PASS: Update ELF header 2
+PASS: Update ELF header 3
+Running [...]/hurd/master/binutils/testsuite/binutils-all/hppa/objdump.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/i386/i386.exp ...
+PASS: objcopy on compressed debug sections
+PASS: strip on uncompressed debug sections
+PASS: strip on compressed debug sections
+Running [...]/hurd/master/binutils/testsuite/binutils-all/m68k/objdump.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/nm.exp ...
+PASS: nm (no arguments)
+PASS: nm -g
+PASS: nm -P
+Running [...]/hurd/master/binutils/testsuite/binutils-all/objcopy.exp ...
+PASS: objcopy (simple copy)
+PASS: objcopy --reverse-bytes
+PASS: objcopy -i --interleave-width
+PASS: objcopy -O srec
+PASS: objcopy --set-start
+PASS: objcopy --adjust-start
+PASS: objcopy --adjust-vma
+PASS: objcopy --adjust-section-vma +
+PASS: objcopy --adjust-section-vma =
+PASS: strip
+PASS: strip with saving a symbol
+PASS: simple objcopy of executable
+PASS: run objcopy of executable
+PASS: run stripped executable
+PASS: run stripped executable with saving a symbol
+PASS: keep only debug data
+PASS: simple objcopy of debug data
+PASS: objcopy (ELF unknown section type)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: copy removing group member
+PASS: copy with setting section flags 1
+PASS: add notes section
+PASS: copy with setting section flags 2
+PASS: copy with setting section flags 3
+PASS: strip --strip-unneeded on common symbol
+PASS: strip with section group 1
+PASS: strip with section group 2
+PASS: strip empty file
+PASS: strip with section group 4
+PASS: strip with section group 5
+PASS: strip with section group 6
+PASS: strip with section group 7
+PASS: strip with section group 8
+PASS: strip with section group 9
+PASS: strip on STB_GNU_UNIQUE
+PASS: objcopy keeps symbols needed by relocs
+PASS: --localize-hidden test 1
+PASS: unordered .debug_info references to .debug_ranges
+UNSUPPORTED: unordered .debug_info references to .debug_ranges
+PASS: objcopy add-section
+PASS: objcopy add-empty-section
+PASS: objcopy on sections with SHF_EXCLUDE
+PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
+PASS: --localize-hidden test 2
+Running [...]/hurd/master/binutils/testsuite/binutils-all/objdump.exp ...
+PASS: objdump -i
+PASS: objdump -f
+PASS: objdump -h
+PASS: objdump -t
+PASS: objdump -r
+PASS: objdump -s
+PASS: objdump -s -j .zdebug_abbrev
+PASS: objdump -W
+Running [...]/hurd/master/binutils/testsuite/binutils-all/readelf.exp ...
+PASS: finding out ELF size with readelf -h
+PASS: readelf -h
+PASS: readelf -S
+PASS: readelf -s
+PASS: readelf -r
+PASS: readelf -wi
+PASS: readelf -wa (compressed)
+PASS: readelf -p
+Running [...]/hurd/master/binutils/testsuite/binutils-all/size.exp ...
+PASS: size (no arguments)
+PASS: size -A
+Running [...]/hurd/master/binutils/testsuite/binutils-all/vax/objdump.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/windres/windres.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
+
+ === binutils Summary ===
+
+# of expected passes 83
+# of unsupported tests 2
+Test Run By tschwinge on Mon Dec 20 11:44:29 2010
+Native configuration is i686-unknown-gnu0.3
+
+ === ld tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/master/ld/testsuite/ld-alpha/alpha.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-arm/arm-elf.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-auto-import/auto-import.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-bootstrap/bootstrap.exp ...
+UNTESTED: bootstrap
+UNTESTED: bootstrap with strip
+UNTESTED: bootstrap with --static
+UNTESTED: bootstrap with --traditional-format
+UNTESTED: bootstrap with --no-keep-memory
+UNTESTED: bootstrap with --relax
+Running [...]/hurd/master/ld/testsuite/ld-cdtest/cdtest.exp ...
+PASS: cdtest
+PASS: cdtest with -Ur
+Running [...]/hurd/master/ld/testsuite/ld-checks/checks.exp ...
+PASS: check sections 1
+PASS: check sections 2
+Running [...]/hurd/master/ld/testsuite/ld-cris/cris.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-crx/crx.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-cygwin/exe-export.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-d10v/d10v.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-discard/discard.exp ...
+PASS: ld-discard/extern
+PASS: ld-discard/start
+PASS: ld-discard/static
+PASS: ld-discard/zero-range
+PASS: ld-discard/zero-rel
+Running [...]/hurd/master/ld/testsuite/ld-elf/audit.exp ...
+PASS: Run with -paudit.so
+PASS: Run with -Paudit.so
+PASS: Run with --depaudit=audit.so
+PASS: Run with shared with --audit
+PASS: Run with shared with --audit
+PASS: Run with -lusesaudit
+PASS: Run with -lusesaudit -lusesaudit2
+Running [...]/hurd/master/ld/testsuite/ld-elf/binutils.exp ...
+PASS: strip -z max-page-size=0x200000 (maxpage1)
+PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
+PASS: strip -z max-page-size=0x100000 (maxpage1)
+PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
+PASS: strip (maxpage1)
+PASS: strip -shared (maxpage1)
+PASS: objcopy (maxpage1)
+PASS: objcopy -shared (maxpage1)
+PASS: strip -z relro (relro1)
+PASS: strip -z relro -shared (relro1)
+PASS: objcopy -z relro (relro1)
+PASS: objcopy -z relro -shared (relro1)
+PASS: strip -z relro -shared (relro2)
+PASS: objcopy -z relro -shared (relro2)
+PASS: strip -T [...]/hurd/master/ld/testsuite/ld-elf/lma.lnk (lma)
+PASS: objcopy (tbss1)
+PASS: objcopy -z relro (tbss1)
+PASS: objcopy -shared (tbss1)
+PASS: objcopy -shared -z relro (tbss1)
+PASS: objcopy -z max-page-size=0x100000 (tbss1)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
+PASS: objcopy (tdata1)
+PASS: objcopy -z relro (tdata1)
+PASS: objcopy -shared (tdata1)
+PASS: objcopy -shared -z relro (tdata1)
+PASS: objcopy -z max-page-size=0x100000 (tdata1)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
+PASS: objcopy (tbss2)
+PASS: objcopy -z relro (tbss2)
+PASS: objcopy -shared (tbss2)
+PASS: objcopy -shared -z relro (tbss2)
+PASS: objcopy -z max-page-size=0x100000 (tbss2)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
+PASS: objcopy (tdata2)
+PASS: objcopy -z relro (tdata2)
+PASS: objcopy -shared (tdata2)
+PASS: objcopy -shared -z relro (tdata2)
+PASS: objcopy -z max-page-size=0x100000 (tdata2)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
+Running [...]/hurd/master/ld/testsuite/ld-elf/compress.exp ...
+PASS: Build libfoo.so with compressed debug sections
+PASS: Build libbar.so with compressed debug sections
+PASS: Run normal with libfoo.so with compressed debug sections
+Running [...]/hurd/master/ld/testsuite/ld-elf/dwarf.exp ...
+PASS: Build libdwarf1.so
+PASS: Run with libdwarf1.so first
+PASS: Run with libdwarf1.so last
+PASS: Strip -s libdwarf1c.so
+Running [...]/hurd/master/ld/testsuite/ld-elf/eh-group.exp ...
+PASS: Guess the target size from eh-group1size.o
+PASS: Build eh-group1.o
+PASS: Link eh-group.o to eh-group
+Running [...]/hurd/master/ld/testsuite/ld-elf/elf.exp ...
+PASS: ld-elf/commonpage1
+PASS: ld-elf/compress1a
+PASS: ld-elf/compress1b
+PASS: ld-elf/compress1c
+PASS: ld-elf/discard1
+PASS: ld-elf/discard2
+PASS: ld-elf/discard3
+PASS: ld-elf/dynsym1
+PASS: ld-elf/eh-frame-hdr
+PASS: ld-elf/eh5
+PASS: ld-elf/eh6
+PASS: ld-elf/empty
+PASS: ld-elf/empty2
+PASS: ld-elf/exclude3a
+PASS: ld-elf/exclude3b
+PASS: ld-elf/exclude3c
+PASS: ld-elf/expr1
+PASS: --extract-symbol test 1 (sections)
+PASS: --extract-symbol test 1 (symbols)
+PASS: --set-section-flags test 1 (sections)
+PASS: ld-elf/group1
+PASS: ld-elf/group10
+PASS: ld-elf/group2
+PASS: ld-elf/group3a
+PASS: ld-elf/group3b
+PASS: ld-elf/group4
+PASS: ld-elf/group5
+PASS: ld-elf/group6
+PASS: ld-elf/group7
+PASS: ld-elf/group8a
+PASS: ld-elf/group8b
+PASS: ld-elf/group9a
+PASS: ld-elf/group9b
+PASS: ld-elf/hash
+PASS: ld-elf/header
+PASS: ld-elf/init-fini-arrays
+PASS: ld-elf/linkonce1
+PASS: ld-elf/linkonce2
+PASS: ld-elf/linkoncerdiff
+PASS: ld-elf/loadaddr1
+PASS: ld-elf/loadaddr2
+PASS: ld-elf/loadaddr3a
+PASS: ld-elf/loadaddr3b
+PASS: ld-elf/local1
+PASS: ld-elf/maxpage1
+PASS: ld-elf/maxpage2
+PASS: ld-elf/maxpage3a
+PASS: ld-elf/merge
+PASS: ld-elf/merge2
+PASS: ld-elf/multibss1
+PASS: ld-elf/nobits-1
+PASS: ld-elf/noload-1
+PASS: ld-elf/noload-2
+PASS: ld-elf/noload-3
+PASS: ld-elf/note-1
+PASS: ld-elf/note-2
+PASS: ld-elf/orphan-region
+PASS: ld-elf/orphan
+PASS: ld-elf/orphan2
+PASS: ld-elf/orphan3
+PASS: ld-elf/orphan4
+PASS: ld-elf/overlay
+PASS: ld-elf/pr11304
+PASS: ld-elf/pr349
+PASS: relocatable with script
+PASS: ld-elf/seg
+PASS: ld-elf/stab
+PASS: ld-elf/textaddr1
+PASS: ld-elf/textaddr2
+PASS: ld-elf/textaddr3
+PASS: ld-elf/textaddr4
+PASS: ld-elf/textaddr5
+PASS: ld-elf/textaddr6
+PASS: ld-elf/textaddr7
+PASS: ld-elf/unknown
+PASS: ld-elf/unknown2
+PASS: ld-elf/warn1
+PASS: ld-elf/warn2
+PASS: Weak symbols in dynamic objects 1 (support)
+PASS: Weak symbols in dynamic objects 1 (main test)
+PASS: --gc-sections on tls variable
+PASS: preinit array
+PASS: init array
+PASS: fini array
+PASS: init array mixed
+XFAIL: static preinit array
+XFAIL: static init array
+XFAIL: static fini array
+XPASS: static init array mixed
+Running [...]/hurd/master/ld/testsuite/ld-elf/exclude.exp ...
+PASS: ld link shared library
+PASS: ld export symbols from archive
+PASS: ld link shared library with --exclude-libs
+PASS: ld exclude symbols from archive - --exclude-libs libexclude
+PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
+PASS: ld exclude symbols from archive - --exclude-libs ALL
+PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
+PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
+PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
+Running [...]/hurd/master/ld/testsuite/ld-elf/frame.exp ...
+PASS: read-only .eh_frame section
+PASS: read-only .gcc_except_table section
+Running [...]/hurd/master/ld/testsuite/ld-elf/sec-to-seg.exp ...
+PASS: assignment of ELF sections to segments (same page)
+PASS: assignment of ELF sections to segments (adjacent pages)
+PASS: assignment of ELF sections to segments (disjoint pages)
+Running [...]/hurd/master/ld/testsuite/ld-elf/sec64k.exp ...
+PASS: ld-elf/64ksec-r
+PASS: ld-elf/64ksec
+Running [...]/hurd/master/ld/testsuite/ld-elf/shared.exp ...
+PASS: Build libfoo.so
+PASS: Build versioned libfoo.so
+PASS: Build libbar.so
+PASS: Build warn libbar.so
+PASS: Build hidden libbar.so
+PASS: Build protected libbar.so
+PASS: Build libbar.so with libfoo.so
+PASS: Build libar.so with versioned libfoo.so
+PASS: Build hidden libbar.so with libfoo.so
+PASS: Build hidden libar.so with versioned libfoo.so
+PASS: Build protected libbar.so with libfoo.so
+PASS: Build protected libbar.so with versioned libfoo.so
+PASS: Build libdl1.so
+PASS: Build libdl2a.so with --dynamic-list=dl2.list
+PASS: Build libdl2a.so with --dynamic-list=dl2a.list
+PASS: Build libdl2a.so with --dynamic-list-data
+PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
+PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
+PASS: Build libdl4a.so with --dynamic-list=dl4.list
+PASS: Build libdl4b.so with --dynamic-list-data
+PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
+PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
+PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
+PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
+PASS: Build libdl6a.so
+PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
+PASS: Build libdl6c.so with -Bsymbolic
+PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
+PASS: Build libdata1.so
+PASS: Build libcomm1.o
+PASS: Build libfunc1.so
+PASS: Build libpr9676-1.a
+PASS: Build libpr9676-2.a
+PASS: Build libpr9676-3.so
+PASS: Build libpr9676-4.so
+PASS: Build libpr9676-4a.so
+PASS: Build libpr9679.so
+PASS: Build libpr11138-1.so
+PASS: Build libpr11138-2.o
+PASS: Run normal with libfoo.so
+PASS: Run protected with libfoo.so
+PASS: Run hidden with libfoo.so
+PASS: Run normal with versioned libfoo.so
+PASS: Run warn with versioned libfoo.so
+PASS: Run protected with versioned libfoo.so
+PASS: Run hidden with versioned libfoo.so
+PASS: Run normal libbar.so with libfoo.so
+PASS: Run protected libbar.so with libfoo.so
+PASS: Run hidden libbar.so with libfoo.so
+PASS: Run normal libbar.so with versioned libfoo.so
+PASS: Run protected libbar.so with versioned libfoo.so
+PASS: Run hidden libbar.so with versioned libfoo.so
+PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
+PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
+PASS: Run with libdl2a.so
+PASS: Run with libdl2b.so
+PASS: Run with libdl2c.so
+PASS: Run with libdl4a.so
+PASS: Run with libdl4b.so
+PASS: Run with libdl4c.so
+PASS: Run with libdl4d.so
+PASS: Run with libdl4e.so
+PASS: Run with libdl4f.so
+PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
+PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
+PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
+PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
+PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
+PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
+PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
+PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
+PASS: Run dl6b2 with dlopen on libdl6b.so
+PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
+PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
+PASS: Run with libdata1.so
+PASS: Run with libfunc1.so comm1.o
+PASS: Run with comm1.o libfunc1.so
+PASS: Run with pr11138-2.c libpr11138-1.so
+PASS: Run with libpr11138-1.so pr11138-2.c
+PASS: Build libdl3a.so with --dynamic-list=dl3.list
+PASS: Build libdl3b.so with -Bsymbolic
+PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
+PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
+PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
+PASS: Run with libdl3a.so
+PASS: Run with libdl3c.so
+PASS: Run with libnew1a.so
+PASS: Run with libnew1b.so
+Running [...]/hurd/master/ld/testsuite/ld-elf/tls_common.exp ...
+PASS: tls_common
+Running [...]/hurd/master/ld/testsuite/ld-elf/wrap.exp ...
+PASS: Build libwrap1a.so
+PASS: Build libwrap1b.so
+PASS: Run with libwrap1a.so and libwrap1b.so
+PASS: Run with libwrap1b.so and libwrap1a.so
+Running [...]/hurd/master/ld/testsuite/ld-elfcomm/elfcomm.exp ...
+PASS: --sort-common (descending)
+PASS: --sort-common (ascending)
+PASS: size/aligment change of common symbols (warning 1)
+PASS: size/aligment change of common symbols (change 1)
+PASS: size/aligment change of common symbols (warning 2)
+PASS: size/aligment change of common symbols (change 2)
+Running [...]/hurd/master/ld/testsuite/ld-elfvers/vers.exp ...
+PASS: vers1
+PASS: vers2
+PASS: vers3
+PASS: vers4
+PASS: vers4a
+PASS: vers4b
+PASS: vers5
+PASS: vers6
+PASS: vers7a
+PASS: vers7
+PASS: vers8
+PASS: vers9
+PASS: vers10
+PASS: vers11
+PASS: vers12
+PASS: ar with versioned solib
+PASS: vers14
+PASS: vers15
+PASS: vers16a
+PASS: vers16
+PASS: vers17
+PASS: vers18
+PASS: vers19
+PASS: vers20a
+PASS: vers20
+PASS: vers21
+PASS: vers22a
+PASS: vers22b
+PASS: vers22
+PASS: vers23a
+PASS: vers23b
+PASS: vers23c
+PASS: vers23d
+PASS: vers23
+PASS: vers24a
+PASS: vers24b
+PASS: vers24c
+PASS: vers25a
+PASS: vers25b1
+PASS: vers25b2
+PASS: vers26a
+PASS: vers26b1
+PASS: vers26b2
+PASS: vers26b3
+PASS: vers27a
+PASS: vers27b
+PASS: vers27c1
+PASS: vers27c2
+PASS: vers27d1
+PASS: vers27d2
+PASS: vers27d3
+PASS: vers27d4
+PASS: vers27d5
+PASS: vers28a
+PASS: vers28b
+PASS: vers28c
+PASS: vers29
+PASS: vers30
+PASS: vers31
+PASS: vers32a
+PASS: vers32b
+Running [...]/hurd/master/ld/testsuite/ld-elfvsb/elfvsb.exp ...
+PASS: ld-elfvsb/hidden0
+PASS: ld-elfvsb/hidden1
+PASS: ld-elfvsb/hidden2
+PASS: ld-elfvsb/internal0
+PASS: ld-elfvsb/internal1
+PASS: ld-elfvsb/protected0
+PASS: ld-elfvsb/protected1
+PASS: visibility (hidden) (non PIC)
+PASS: visibility (hidden) (non PIC, load offset)
+PASS: visibility (hidden)
+PASS: visibility (hidden) (PIC main, non PIC so)
+PASS: visibility (hidden) (PIC main)
+PASS: visibility (hidden_normal) (non PIC)
+PASS: visibility (hidden_normal) (non PIC, load offset)
+PASS: visibility (hidden_normal)
+PASS: visibility (hidden_normal) (PIC main, non PIC so)
+PASS: visibility (hidden_normal) (PIC main)
+PASS: visibility (hidden_undef) (non PIC)
+PASS: visibility (hidden_undef) (non PIC, load offset)
+PASS: visibility (hidden_undef)
+PASS: visibility (hidden_undef) (PIC main, non PIC so)
+PASS: visibility (hidden_undef) (PIC main)
+PASS: visibility (hidden_undef_def) (non PIC)
+PASS: visibility (hidden_undef_def) (non PIC, load offset)
+PASS: visibility (hidden_undef_def)
+PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
+PASS: visibility (hidden_undef_def) (PIC main)
+PASS: visibility (hidden_weak) (non PIC)
+PASS: visibility (hidden_weak) (non PIC, load offset)
+PASS: visibility (hidden_weak)
+PASS: visibility (hidden_weak) (PIC main, non PIC so)
+PASS: visibility (hidden_weak) (PIC main)
+PASS: visibility (protected) (non PIC)
+PASS: visibility (protected) (non PIC, load offset)
+PASS: visibility (protected)
+PASS: visibility (protected) (PIC main, non PIC so)
+PASS: visibility (protected) (PIC main)
+PASS: visibility (protected_undef) (non PIC)
+PASS: visibility (protected_undef) (non PIC, load offset)
+PASS: visibility (protected_undef)
+PASS: visibility (protected_undef) (PIC main, non PIC so)
+PASS: visibility (protected_undef) (PIC main)
+PASS: visibility (protected_undef_def) (non PIC)
+PASS: visibility (protected_undef_def) (non PIC, load offset)
+PASS: visibility (protected_undef_def)
+PASS: visibility (protected_undef_def) (PIC main, non PIC so)
+PASS: visibility (protected_undef_def) (PIC main)
+PASS: visibility (protected_weak) (non PIC)
+PASS: visibility (protected_weak) (non PIC, load offset)
+PASS: visibility (protected_weak)
+PASS: visibility (protected_weak) (PIC main, non PIC so)
+PASS: visibility (protected_weak) (PIC main)
+PASS: visibility (normal) (non PIC)
+PASS: visibility (normal) (non PIC, load offset)
+PASS: visibility (normal)
+PASS: visibility (normal) (PIC main, non PIC so)
+PASS: visibility (normal) (PIC main)
+PASS: common hidden symbol
+PASS: weak hidden symbol DSO last
+PASS: weak hidden symbol DSO first
+Running [...]/hurd/master/ld/testsuite/ld-elfweak/elfweak.exp ...
+PASS: ELF DSO weak func first
+PASS: ELF DSO weak func last
+PASS: ELF DSO weak func first DSO
+PASS: ELF DSO weak func last DSO
+PASS: ELF weak func first
+PASS: ELF weak func last
+XFAIL: ELF weak func first DSO
+XFAIL: ELF weak func last DSO
+PASS: ELF DSO weak data first
+PASS: ELF DSO weak data last
+PASS: ELF DSO weak data first DSO
+PASS: ELF DSO weak data last DSO
+PASS: ELF DSO weak data first DSO common
+PASS: ELF DSO weak data last DSO common
+PASS: ELF weak data first
+PASS: ELF weak data last
+PASS: ELF weak data first common
+PASS: ELF weak data last common
+XFAIL: ELF weak data first DSO
+XFAIL: ELF weak data last DSO
+XFAIL: ELF weak data first DSO common
+XFAIL: ELF weak data last DSO common
+PASS: ELF DSO small bar (size)
+PASS: ELF DSO foo with small bar (size)
+PASS: ELF DSO big bar (size)
+PASS: ELF weak size
+PASS: ld-elfweak/size2
+Running [...]/hurd/master/ld/testsuite/ld-fastcall/fastcall.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-frv/fdpic.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-frv/frv-elf.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-frv/tls.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-gc/gc.exp ...
+PASS: Check --gc-section
+PASS: Check --gc-section/-q
+PASS: Check --gc-section/-r/-e
+PASS: Check --gc-section/-r/-u
+PASS: --gc-sections -r without -e
+PASS: --gc-sections with note section
+PASS: --gc-sections with __start_
+PASS: --gc-sections with shared library
+Running [...]/hurd/master/ld/testsuite/ld-h8300/h8300.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-i386/i386.exp ...
+PASS: TLS -fpic -shared transitions
+PASS: TLS descriptor -fpic -shared transitions
+PASS: Helper shared library
+PASS: TLS -fpic and -fno-pic exec transitions
+PASS: TLS descriptor -fpic and -fno-pic exec transitions
+PASS: TLS -fno-pic -shared
+PASS: TLS with global dynamic and descriptors
+PASS: TLS in debug sections
+PASS: TLS @indntpoff with %eax
+PASS: Reloc section order
+PASS: Basic --emit-relocs support
+PASS: -z combreloc relocation sections
+PASS: TLS GD->LE transition
+PASS: TLS LD->LE transition
+PASS: TLS IE->LE transition
+PASS: Absolute non-overflowing relocs
+PASS: PCREL8 overflow
+PASS: PCREL16 overflow
+PASS: PCREL16 absolute reloc
+PASS: Invalid allocated section
+PASS: --warn-shared-textrel --fatal-warnings
+PASS: TLS GD->LE transition check
+PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
+PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
+PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
+PASS: TLS IE->LE transition check (R_386_TLS_IE)
+PASS: ld-i386/hidden1
+PASS: ld-i386/hidden2
+PASS: ld-i386/hidden3
+PASS: ld-i386/protected1
+PASS: ld-i386/protected2
+PASS: ld-i386/protected3
+PASS: TLS with PIE
+PASS: ld-i386/nogot1
+PASS: ld-i386/nogot2
+PASS: ld-i386/discarded1
+PASS: undefined symbol with compressed debug sections
+Running [...]/hurd/master/ld/testsuite/ld-ia64/ia64.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-ia64/line.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-ifunc/binutils.exp ...
+PASS: strip (ifunc-4-x86)
+PASS: objcopy (ifunc-4-x86)
+PASS: strip (ifunc-4-local-x86)
+PASS: objcopy (ifunc-4-local-x86)
+Running [...]/hurd/master/ld/testsuite/ld-ifunc/ifunc.exp ...
+PASS: Building ifunc binaries
+PASS: Checking ifunc binaries
+PASS: ld-ifunc/ifunc-1-local-x86
+PASS: ld-ifunc/ifunc-1-x86
+PASS: ld-ifunc/ifunc-10-i386
+PASS: ld-ifunc/ifunc-11-i386
+PASS: ld-ifunc/ifunc-2-i386
+PASS: ld-ifunc/ifunc-2-local-i386
+PASS: ld-ifunc/ifunc-3a-x86
+PASS: ld-ifunc/ifunc-3b-x86
+PASS: ld-ifunc/ifunc-4-local-x86
+PASS: ld-ifunc/ifunc-4-x86
+PASS: ld-ifunc/ifunc-4a-x86
+PASS: ld-ifunc/ifunc-5a-i386
+PASS: ld-ifunc/ifunc-5a-local-i386
+PASS: ld-ifunc/ifunc-5b-i386
+PASS: ld-ifunc/ifunc-5b-local-i386
+PASS: ld-ifunc/ifunc-5r-local-i386
+PASS: ld-ifunc/ifunc-6a-i386
+PASS: ld-ifunc/ifunc-6b-i386
+PASS: ld-ifunc/ifunc-7a-i386
+PASS: ld-ifunc/ifunc-7b-i386
+PASS: ld-ifunc/ifunc-8-i386
+PASS: ld-ifunc/ifunc-9-x86
+Running [...]/hurd/master/ld/testsuite/ld-libs/libs.exp ...
+PASS: -l: test (preparation)
+PASS: -l: test
+Running [...]/hurd/master/ld/testsuite/ld-linkonce/linkonce.exp ...
+PASS: ld-linkonce/zeroehl32
+Running [...]/hurd/master/ld/testsuite/ld-m68hc11/m68hc11.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-m68k/m68k-got.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-m68k/m68k.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-mep/mep.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-mips-elf/mips-elf.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-mmix/mmix.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-mn10300/mn10300.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-pe/pe-compile.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-pe/pe-run.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-pe/pe-run2.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-pe/pe.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-pie/pie.exp ...
+PASS: weak undefined
+PASS: weak undefined data
+PASS: missing entry symbol
+Running [...]/hurd/master/ld/testsuite/ld-plugin/plugin.exp ...
+PASS: plugin API enabled
+PASS: load plugin
+PASS: fail plugin onload
+PASS: fail plugin allsymbolsread
+PASS: fail plugin cleanup
+PASS: plugin all hooks
+PASS: plugin claimfile lost symbol
+PASS: plugin claimfile replace symbol
+PASS: plugin claimfile resolve symbol
+PASS: plugin claimfile replace file
+PASS: plugin set symbol visibility
+PASS: plugin ignore lib
+PASS: plugin claimfile replace lib
+Running [...]/hurd/master/ld/testsuite/ld-powerpc/aix52.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-powerpc/powerpc.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-s390/s390.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-scripts/align.exp ...
+PASS: align1
+PASS: ld-scripts/align2a
+PASS: ld-scripts/align2b
+PASS: ld-scripts/align2c
+Running [...]/hurd/master/ld/testsuite/ld-scripts/alignof.exp ...
+PASS: ALIGNOF
+Running [...]/hurd/master/ld/testsuite/ld-scripts/assert.exp ...
+PASS: ASSERT
+Running [...]/hurd/master/ld/testsuite/ld-scripts/crossref.exp ...
+PASS: NOCROSSREFS 1
+PASS: NOCROSSREFS 2
+PASS: NOCROSSREFS 3
+Running [...]/hurd/master/ld/testsuite/ld-scripts/data.exp ...
+PASS: ld-scripts/data
+Running [...]/hurd/master/ld/testsuite/ld-scripts/default-script.exp ...
+PASS: ld-scripts/default-script1
+PASS: ld-scripts/default-script2
+PASS: ld-scripts/default-script3
+PASS: ld-scripts/default-script4
+Running [...]/hurd/master/ld/testsuite/ld-scripts/defined.exp ...
+PASS: DEFINED (PRMS 5699)
+PASS: ld-scripts/defined2
+PASS: ld-scripts/defined3
+Running [...]/hurd/master/ld/testsuite/ld-scripts/dynamic-sections.exp ...
+PASS: dynamic sections
+Running [...]/hurd/master/ld/testsuite/ld-scripts/empty-address.exp ...
+PASS: ld-scripts/empty-address-1
+PASS: ld-scripts/empty-address-2a
+PASS: ld-scripts/empty-address-2b
+PASS: ld-scripts/empty-address-3a
+PASS: ld-scripts/empty-address-3b
+PASS: ld-scripts/empty-address-3c
+Running [...]/hurd/master/ld/testsuite/ld-scripts/empty-aligned.exp ...
+PASS: ld-scripts/empty-aligned
+Running [...]/hurd/master/ld/testsuite/ld-scripts/empty-orphan.exp ...
+PASS: ld-scripts/empty-orphan
+Running [...]/hurd/master/ld/testsuite/ld-scripts/expr.exp ...
+PASS: ld-scripts/expr1
+Running [...]/hurd/master/ld/testsuite/ld-scripts/extern.exp ...
+PASS: EXTERN
+Running [...]/hurd/master/ld/testsuite/ld-scripts/include.exp ...
+PASS: include-1
+Running [...]/hurd/master/ld/testsuite/ld-scripts/map-address.exp ...
+PASS: map addresses
+Running [...]/hurd/master/ld/testsuite/ld-scripts/overlay-size.exp ...
+PASS: overlay size
+PASS: overlay size (map check)
+Running [...]/hurd/master/ld/testsuite/ld-scripts/phdrs.exp ...
+PASS: PHDRS
+Running [...]/hurd/master/ld/testsuite/ld-scripts/phdrs2.exp ...
+PASS: PHDRS2
+Running [...]/hurd/master/ld/testsuite/ld-scripts/phdrs3.exp ...
+PASS: PHDRS headers
+PASS: PHDRS headers 3a
+Running [...]/hurd/master/ld/testsuite/ld-scripts/provide.exp ...
+PASS: ld-scripts/provide-1
+PASS: ld-scripts/provide-2
+XFAIL: ld-scripts/provide-3
+Running [...]/hurd/master/ld/testsuite/ld-scripts/rgn-at.exp ...
+PASS: rgn-at1
+PASS: rgn-at2
+PASS: rgn-at3
+PASS: rgn-at4
+PASS: rgn-at5
+Running [...]/hurd/master/ld/testsuite/ld-scripts/rgn-over.exp ...
+PASS: rgn-over1
+PASS: rgn-over1 (map check)
+PASS: rgn-over2
+PASS: rgn-over2 (map check)
+PASS: rgn-over3
+PASS: rgn-over3 (map check)
+PASS: rgn-over4
+PASS: rgn-over4 (map check)
+PASS: rgn-over5
+PASS: rgn-over5 (map check)
+PASS: rgn-over6
+PASS: rgn-over6 (map check)
+PASS: rgn-over7
+PASS: rgn-over7 (map check)
+PASS: rgn-over8
+Running [...]/hurd/master/ld/testsuite/ld-scripts/script.exp ...
+PASS: script
+PASS: MRI script
+PASS: MEMORY
+XFAIL: REGION_ALIAS: region-alias-1.t
+XFAIL: REGION_ALIAS: region-alias-2.t
+XFAIL: REGION_ALIAS: region-alias-3.t
+XFAIL: REGION_ALIAS: region-alias-4.t
+Running [...]/hurd/master/ld/testsuite/ld-scripts/section-match.exp ...
+PASS: ld-scripts/section-match-1
+Running [...]/hurd/master/ld/testsuite/ld-scripts/size.exp ...
+PASS: ld-scripts/size-1
+PASS: ld-scripts/size-2
+Running [...]/hurd/master/ld/testsuite/ld-scripts/sizeof.exp ...
+PASS: SIZEOF
+Running [...]/hurd/master/ld/testsuite/ld-scripts/sort.exp ...
+PASS: --sort-section alignment
+PASS: SORT_BY_ALIGNMENT
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
+PASS: --sort-section name
+PASS: SORT_BY_NAME
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_NAME(SORT_BY_NAME())
+PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
+PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
+PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
+PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
+Running [...]/hurd/master/ld/testsuite/ld-scripts/weak.exp ...
+PASS: weak symbols
+Running [...]/hurd/master/ld/testsuite/ld-selective/sel-dump.exp ...
+PASS: Preserve default . = 0
+PASS: Preserve explicit . = 0
+Running [...]/hurd/master/ld/testsuite/ld-selective/selective.exp ...
+PASS: selective1
+PASS: selective2
+PASS: selective3
+XFAIL: selective4
+XFAIL: selective5
+XFAIL: selective6
+Running [...]/hurd/master/ld/testsuite/ld-sh/arch/arch.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/rd-sh.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh-vxworks.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh64/relax.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh64/relfail.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh64/sh64.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-shared/shared.exp ...
+PASS: shared (non PIC)
+PASS: shared (non PIC, load offset)
+PASS: shared
+PASS: shared -Bsymbolic
+PASS: shared (PIC main, non PIC so)
+PASS: shared (PIC main)
+Running [...]/hurd/master/ld/testsuite/ld-sparc/sparc.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-spu/spu.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-srec/srec.exp ...
+PASS: S-records
+PASS: S-records with constructors
+Running [...]/hurd/master/ld/testsuite/ld-tic6x/tic6x.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-undefined/entry.exp ...
+PASS: Build libentry.a
+PASS: --entry foo archive
+PASS: --entry foo -u foo archive
+PASS: -shared --entry foo archive
+PASS: -shared --entry foo -u foo archive
+PASS: --entry foo
+PASS: --entry foo -u foo
+PASS: --entry 0x0
+Running [...]/hurd/master/ld/testsuite/ld-undefined/undefined.exp ...
+PASS: undefined
+PASS: undefined function
+PASS: undefined line
+Running [...]/hurd/master/ld/testsuite/ld-undefined/weak-undef.exp ...
+PASS: weak undefined symbols
+Running [...]/hurd/master/ld/testsuite/ld-v850/v850.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-versados/versados.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-vxworks/vxworks.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-x86-64/line.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-x86-64/x86-64.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-xc16x/xc16x.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-xstormy16/xstormy16.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-xtensa/coalesce.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-xtensa/lcall.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-xtensa/xtensa.exp ...
+
+ === ld Summary ===
+
+# of expected passes 608
+# of unexpected successes 1
+# of expected failures 17
+# of untested testcases 6
+/media/data[...]/hurd/master.build/ld/ld-new 2.21.51.20101220
+
+Test Run By tschwinge on Mon Dec 20 11:38:03 2010
+Native configuration is i686-unknown-gnu0.3
+
+ === gas tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/master/gas/testsuite/gas/all/gas.exp ...
+PASS: pcrel values in assignment
+PASS: simplifiable double subtraction
+PASS: simplifiable double subtraction (-a)
+PASS: simple FP constants
+PASS: difference of two undefined symbols
+PASS: .equiv for symbol already set to another one
+PASS: .equiv for symbol already set to an expression
+PASS: .equ for symbol already set
+PASS: .equ for symbol already set through .eqv
+PASS: .eqv support
+PASS: .eqv for symbol already set
+PASS: == assignment support
+PASS: == assignment for symbol already set
+PASS: forward references
+PASS: forward expression
+PASS: .equ redefinitions
+PASS: .equ redefinitions (2)
+PASS: .equ redefinitions (3)
+PASS: .set for symbol already used as label
+PASS: .set for symbol already defined through .comm
+PASS: comment.s: comments in listings
+PASS: general info section in listings
+PASS: difference between forward references
+PASS: struct
+PASS: align
+PASS: align2
+PASS: alternate macro syntax
+PASS: alternate macro syntax (escape)
+PASS: evaluation of simple expressions
+PASS: conditional listings
+PASS: incbin
+PASS: assignment tests
+PASS: .sleb128 tests
+PASS: relax .uleb128
+PASS: bad byte directive
+PASS: .quad tests
+PASS: octa bignum
+PASS: weakref tests, relocations
+PASS: weakref tests, global syms
+PASS: weakref tests, local syms
+PASS: weakref tests, strong undefined syms
+PASS: weakref tests, weak undefined syms
+PASS: e: would close weakref loop: e => a => b => c => d => e
+PASS: a: would close weakref loop: a => b => c => d => e => a
+PASS: is already defined
+PASS: .strings tests
+PASS: gas/all/err-1.s (test for errors, line 3)
+PASS: gas/all/err-1.s (test for errors, line 4)
+PASS: gas/all/err-1.s (test for errors, line 5)
+PASS: gas/all/err-1.s (test for errors, line 6)
+PASS: gas/all/err-1.s (test for errors, line 7)
+PASS: gas/all/err-1.s (test for excess errors)
+PASS: gas/all/warn-1.s (test for warnings, line 3)
+PASS: gas/all/warn-1.s (test for errors, line 4)
+PASS: gas/all/warn-1.s (test for warnings, line 5)
+PASS: gas/all/warn-1.s (test for warnings, line 6)
+PASS: gas/all/warn-1.s (test for warnings, line 7)
+PASS: gas/all/warn-1.s (test for excess errors)
+Running [...]/hurd/master/gas/testsuite/gas/alpha/alpha.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/arc/arc.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/arc/warn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/arm/arm.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/bfin/bfin.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/bfin/error.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/cfi/cfi.exp ...
+PASS: CFI on i386
+PASS: cfi cfi-diag-1
+PASS: CFI common 1
+PASS: CFI common 2
+PASS: CFI common 3
+PASS: CFI common 4
+PASS: CFI common 5
+PASS: CFI common 7
+PASS: CFI common 6
+Running [...]/hurd/master/gas/testsuite/gas/cr16/cr16.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/cr16/pic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/cris/cris.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/crx/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/d10v/d10v.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/d30v/d30.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/dlx/alltests.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/elf/elf.exp ...
+PASS: elf ehopt0
+PASS: .file file names
+PASS: group section
+PASS: group section
+PASS: group section name
+PASS: group section with multiple sections of same name
+PASS: group section with multiple sections of same name
+PASS: automatic section group a
+PASS: automatic section group b
+PASS: .equ redefinitions (ELF)
+PASS: elf equate relocs
+PASS: Ill-formed directives
+PASS: elf section0
+PASS: elf section1
+PASS: elf section2 list
+PASS: note section
+PASS: label arithmetic with multiple same-name sections
+PASS: elf section5 list
+PASS: ELF struct
+PASS: .set with expression
+PASS: ELF symbol versioning
+PASS: .set with IFUNC
+PASS: elf type list
+PASS: elf section6
+PASS: elf section7
+PASS: section flags
+PASS: section flags
+PASS: DWARF2 1
+PASS: DWARF2 2
+PASS: DWARF2 3
+PASS: Check bad section flag
+Running [...]/hurd/master/gas/testsuite/gas/fr30/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/fr30/fr30.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/frv/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/h8300-coff.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/h8300-elf.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/h8300.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t01_mov.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t02_mova.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t03_add.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t04_sub.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t05_cmp.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t06_ari2.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t07_ari3.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t08_or.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t09_xor.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t10_and.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t11_logs.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t12_bit.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t13_otr.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/hppa/basic/basic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/hppa/parse/parse.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/hppa/reloc/reloc.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/i386/i386.exp ...
+PASS: i386 float
+PASS: i386 general
+PASS: i386 inval
+PASS: i386 segment
+PASS: i386 inval-seg
+PASS: i386 inval-reg
+PASS: i386 modrm
+PASS: i386 naked reg
+PASS: i386 opcodes
+PASS: i386 opcodes (Intel disassembly)
+PASS: i386 opcodes (w/ suffix)
+PASS: i386 intel
+PASS: i386 intel16
+PASS: i386 intelbad
+PASS: i386 intel-ok
+PASS: i386 prefix
+PASS: i386 amd
+PASS: i386 katmai
+PASS: i386 jump
+PASS: i386 relax 1
+PASS: i386 relax 2
+PASS: i386 ssemmx2
+PASS: i386 sse2
+PASS: i386 sub
+PASS: i386 SSE3
+PASS: i386 SIB
+PASS: i386 SIB (Intel mode)
+PASS: i386 displacement
+PASS: i386 displacement (Intel mode)
+PASS: i386 32bit displacement
+PASS: i386 VMX
+PASS: i386 SMX
+PASS: i386 suffix
+PASS: i386 immed
+PASS: i386 equates
+PASS: i386 divide
+PASS: i386 padlock
+PASS: i386 cr8+
+PASS: i386 cr-err
+PASS: 32-bit SVME
+PASS: i386 amdfam10
+PASS: i386 SSSE3
+PASS: i386 rep prefix
+PASS: i386 rep prefix (with suffixes)
+PASS: i386 lockable insns
+PASS: i386 lockable insns (Intel disassembly)
+PASS: i386 lockbad-1
+PASS: i386 long insns
+PASS: i386 long insns (Intel disassembly)
+PASS: i386 fp
+PASS: i386 nops
+PASS: i386 nops 16bit 1
+PASS: i386 nops 1
+PASS: i386 -mtune=i386 nops 1
+PASS: i386 nops -march=i386 -mtune=i686 1
+PASS: i386 -mtune=i686 nops 1
+PASS: i386 -mtune=k8 nops 1
+PASS: i386 -mtune=core2 nops 1
+PASS: i386 -mtune=bdver1 nops 1
+PASS: i386 nops 2
+PASS: i386 nops -mtune=i386 2
+PASS: i386 -march=i386 -mtune=core2 nops 2
+PASS: i386 nops 3
+PASS: i386 nops -mtune=i386 3
+PASS: i386 -mtune=i686 nops 3
+PASS: i386 nops 4
+PASS: i386 nops -mtune=i386 4
+PASS: i386 -mtune=i686 nops 4
+PASS: i386 nops 5
+PASS: i386 -march=i686 nops 5
+PASS: i386 16-bit addressing in 32-bit mode.
+PASS: i386 32-bit addressing in 16-bit mode.
+PASS: i386 SSE4.1
+PASS: i386 SSE4.1 (Intel disassembly)
+PASS: i386 SSE4.2
+PASS: i386 SSE4.2 (Intel disassembly)
+PASS: i386 crc32
+PASS: i386 crc32 (Intel disassembly)
+PASS: i386 inval-crc32
+PASS: i386 SIMD
+PASS: i386 SIMD (Intel mode)
+PASS: i386 SIMD (with suffixes)
+PASS: i386 mem
+PASS: i386 mem (Intel mode)
+PASS: i386 reg
+PASS: i386 reg (Intel mode)
+PASS: i386
+PASS: i386 float AT&T mnemonic
+PASS: i386 float Intel mnemonic
+PASS: i386 arch 1
+PASS: i386 arch 2
+PASS: i386 arch 3
+PASS: i386 arch 4
+PASS: i386 arch 5
+PASS: i386 arch 6
+PASS: i386 arch 7
+PASS: i386 arch 9
+PASS: i386 arch 10
+PASS: i386 arch-10-1
+PASS: i386 arch-10-2
+PASS: i386 arch-10-3
+PASS: i386 arch-10-4
+PASS: i386 arch 11
+PASS: i386 arch 12
+PASS: i386 8087
+PASS: i386 287
+PASS: i386 387 (cmdline)
+PASS: i386 no87
+PASS: i386 no87-2
+PASS: i386 xsave
+PASS: i386 xsave (Intel mode)
+PASS: i386 AES
+PASS: i386 AES (Intel mode)
+PASS: i386 PCLMUL
+PASS: i386 PCLMUL (Intel mode)
+PASS: i386 AVX
+PASS: i386 AVX (Intel disassembly)
+PASS: i386 AVX scalar insns
+PASS: i386 AVX scalar insns (Intel disassembly)
+PASS: i386 SSE with AVX encoding
+PASS: i386 inval-avx
+PASS: i386 SSE check (none)
+PASS: i386 SSE check (.sse_check none)
+PASS: i386 SSE check (warning)
+PASS: i386 sse-check-error
+PASS: i386 SSE without AVX equivalent
+PASS: i386 movbe
+PASS: i386 movbe (Intel disassembly)
+PASS: i386 inval-movbe
+PASS: i386 EPT
+PASS: i386 EPT (Intel disassembly)
+PASS: i386 inval-ept
+PASS: i386 arch avx 1
+PASS: i386 arch-avx-1-1
+PASS: i386 arch-avx-1-2
+PASS: i386 arch-avx-1-3
+PASS: i386 arch-avx-1-4
+PASS: i386 arch-avx-1-5
+PASS: i386 arch-avx-1-6
+PASS: encoding option
+PASS: encoding option (Intel mode)
+PASS: encoding option with -msse2avx
+PASS: encoding option with -msse2avx (Intel mode)
+PASS: i386 FMA
+PASS: i386 FMA (Intel disassembly)
+PASS: i386 FMA scalar insns
+PASS: i386 FMA scalar insns (Intel disassembly)
+PASS: i386 FMA4
+PASS: i386 LWP
+PASS: i386 XOP
+PASS: i386 F16C
+PASS: i386 F16C (Intel disassembly)
+PASS: i386 FSGSBase
+PASS: i386 FSGSBase (Intel disassembly)
+PASS: i386 RdRnd
+PASS: i386 RdRnd (Intel disassembly)
+PASS: i386 reloc
+PASS: i386 jump16
+PASS: i386 white
+PASS: i386 pcrel reloc
+PASS: i386 abs reloc
+PASS: i386 intelpic
+PASS: i386 relax
+PASS: i386 gotpc
+PASS: i386 dynamic tls
+PASS: i386 pic tls
+PASS: i386 non-pic tls
+PASS: i386 .bss
+PASS: i386 relocs
+PASS: i386 reloc32
+PASS: x86 mixed mode relocs (32-bit object)
+PASS: i386 AT&T register names
+PASS: i386 intel-got
+PASS: i386 Intel register names
+PASS: i386 inval-equ-1
+PASS: i386 inval-equ-2
+PASS: i386 ifunc
+PASS: i386 ifunc-2
+PASS: i386 ifunc 3
+PASS: i386 l1om-inval
+PASS: i386 local PIC
+PASS: DWARF2 debugging information 1
+PASS: DWARF2 debugging information 2
+PASS: x86 Intel expressions
+PASS: string insn operands
+PASS: i386 string-bad
+PASS: i386 space1
+PASS: i386 list-1
+PASS: i386 list-2
+PASS: i386 list-3
+PASS: DWARF2 debugging information 1
+Running [...]/hurd/master/gas/testsuite/gas/i860/i860.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/ia64/ia64.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/ieee-fp/x930509a.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/iq2000/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/iq2000/load-hazards.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/iq2000/odd-ldw.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/iq2000/odd-sdw.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/iq2000/yield.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/lm32/all.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/lns/lns.exp ...
+PASS: lns lns-diag-1
+PASS: lns-duplicate
+PASS: lns-common-1
+Running [...]/hurd/master/gas/testsuite/gas/m32r/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/error.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/m32r.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/m32r2.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/m32rx.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/pic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/rel32.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m68hc11/m68hc11.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m68k-coff/gas.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m68k/all.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/macros/macros.exp ...
+PASS: macro test 1
+PASS: macro test 2
+PASS: macro test 3
+PASS: macro irp
+PASS: macro rept
+PASS: nested irp/irpc/rept
+PASS: macro vararg
+PASS: macro infinite recursion
+PASS: logical and in macro definition
+PASS: semi
+PASS: strings
+PASS: APP with macro without NO_APP
+PASS: APP with macro then NO_APP
+PASS: APP with macro then NO_APP then more code
+PASS: included file with .if 0 wrapped in APP/NO_APP, no final NO_APP, macro in main file
+PASS: macros badarg
+PASS: macros dot
+PASS: macros end
+PASS: macros purge
+PASS: macros redef
+PASS: gas/macros/paren
+PASS: .exitm outside of a macro
+Running [...]/hurd/master/gas/testsuite/gas/mcore/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mep/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mep/complex-relocs.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mips/mips.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mmix/mmix-err.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mmix/mmix-list.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mmix/mmix.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mn10200/basic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mn10300/basic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mri/mri.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/msp430/msp430.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mt/errors.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mt/mt.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mt/relocs.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/openrisc/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/pdp11/pdp11.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/pe/pe.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/pj/pj.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/ppc/aix.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/ppc/ppc.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/rx/rx.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/s390/s390.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/score/relax.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/score/relax_32.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sh/arch/arch.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sh/basic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sh/err.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sh/sh64/err.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sh/sh64/sh64.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sparc-solaris/addend.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sparc-solaris/gas.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sparc/mismatch.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sparc/sparc.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sun4/addend.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/symver/symver.exp ...
+PASS: symver symver0
+PASS: symver symver1
+PASS: symver symver2
+PASS: symver symver3
+PASS: symver symver6
+Running [...]/hurd/master/gas/testsuite/gas/tic4x/tic4x.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/tic54x/tic54x.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/tic6x/tic6x.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/v850/basic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/vax/vax.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/xc16x/xc16x.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/xstormy16/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/xtensa/all.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/xtensa/xtensa-err.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/z80/z80.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/z8k/z8k.exp ...
+
+ === gas Summary ===
+
+# of expected passes 319
+../as-new 2.21.51.20101220
+
diff --git a/open_issues/binutils/sum_linux b/open_issues/binutils/sum_linux
new file mode 100644
index 00000000..c2dae925
--- /dev/null
+++ b/open_issues/binutils/sum_linux
@@ -0,0 +1,1321 @@
+Test Run By thomas on Mon Dec 20 11:34:53 2010
+Native configuration is i686-pc-linux-gnu
+
+ === binutils tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/master/binutils/testsuite/binutils-all/ar.exp ...
+PASS: ar long file names
+PASS: ar symbol table
+PASS: ar thin archive
+PASS: ar thin archive with nested archive
+PASS: ar argument parsing
+PASS: ar deterministic archive
+PASS: ar unique symbol in archive
+Running [...]/hurd/master/binutils/testsuite/binutils-all/arm/objdump.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/bfin/objdump.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/compress.exp ...
+PASS: objcopy (objcopy compress debug sections)
+PASS: objcopy (objcopy decompress compressed debug sections)
+PASS: objcopy decompress debug sections in archive
+PASS: objcopy compress debug sections in archive
+Running [...]/hurd/master/binutils/testsuite/binutils-all/dlltool.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/elfedit.exp ...
+UNSUPPORTED: Update ELF header 1
+PASS: Update ELF header 2
+PASS: Update ELF header 3
+Running [...]/hurd/master/binutils/testsuite/binutils-all/hppa/objdump.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/i386/i386.exp ...
+PASS: objcopy on compressed debug sections
+PASS: strip on uncompressed debug sections
+PASS: strip on compressed debug sections
+Running [...]/hurd/master/binutils/testsuite/binutils-all/m68k/objdump.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/nm.exp ...
+PASS: nm (no arguments)
+PASS: nm -g
+PASS: nm -P
+Running [...]/hurd/master/binutils/testsuite/binutils-all/objcopy.exp ...
+PASS: objcopy (simple copy)
+PASS: objcopy --reverse-bytes
+PASS: objcopy -i --interleave-width
+PASS: objcopy -O srec
+PASS: objcopy --set-start
+PASS: objcopy --adjust-start
+PASS: objcopy --adjust-vma
+PASS: objcopy --adjust-section-vma +
+PASS: objcopy --adjust-section-vma =
+PASS: strip
+PASS: strip with saving a symbol
+PASS: simple objcopy of executable
+PASS: run objcopy of executable
+PASS: run stripped executable
+PASS: run stripped executable with saving a symbol
+PASS: keep only debug data
+PASS: simple objcopy of debug data
+PASS: objcopy (ELF unknown section type)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: objcopy (ELF group)
+PASS: copy removing group member
+PASS: copy with setting section flags 1
+PASS: add notes section
+PASS: copy with setting section flags 2
+PASS: copy with setting section flags 3
+PASS: strip --strip-unneeded on common symbol
+PASS: strip with section group 1
+PASS: strip with section group 2
+PASS: strip empty file
+PASS: strip with section group 4
+PASS: strip with section group 5
+PASS: strip with section group 6
+PASS: strip with section group 7
+PASS: strip with section group 8
+PASS: strip with section group 9
+PASS: strip on STB_GNU_UNIQUE
+PASS: objcopy keeps symbols needed by relocs
+PASS: --localize-hidden test 1
+PASS: unordered .debug_info references to .debug_ranges
+UNSUPPORTED: unordered .debug_info references to .debug_ranges
+PASS: objcopy add-section
+PASS: objcopy add-empty-section
+PASS: objcopy on sections with SHF_EXCLUDE
+PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
+PASS: --localize-hidden test 2
+Running [...]/hurd/master/binutils/testsuite/binutils-all/objdump.exp ...
+PASS: objdump -i
+PASS: objdump -f
+PASS: objdump -h
+PASS: objdump -t
+PASS: objdump -r
+PASS: objdump -s
+PASS: objdump -s -j .zdebug_abbrev
+PASS: objdump -W
+Running [...]/hurd/master/binutils/testsuite/binutils-all/readelf.exp ...
+PASS: finding out ELF size with readelf -h
+PASS: readelf -h
+PASS: readelf -S
+PASS: readelf -s
+PASS: readelf -r
+PASS: readelf -wi
+PASS: readelf -wa (compressed)
+PASS: readelf -p
+Running [...]/hurd/master/binutils/testsuite/binutils-all/size.exp ...
+PASS: size (no arguments)
+PASS: size -A
+Running [...]/hurd/master/binutils/testsuite/binutils-all/vax/objdump.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/windres/windres.exp ...
+Running [...]/hurd/master/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
+
+ === binutils Summary ===
+
+# of expected passes 83
+# of unsupported tests 2
+Test Run By thomas on Mon Dec 20 11:35:19 2010
+Native configuration is i686-pc-linux-gnu
+
+ === ld tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/master/ld/testsuite/ld-alpha/alpha.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-arm/arm-elf.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-auto-import/auto-import.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-bootstrap/bootstrap.exp ...
+UNTESTED: bootstrap
+UNTESTED: bootstrap with strip
+UNTESTED: bootstrap with --static
+UNTESTED: bootstrap with --traditional-format
+UNTESTED: bootstrap with --no-keep-memory
+UNTESTED: bootstrap with --relax
+Running [...]/hurd/master/ld/testsuite/ld-cdtest/cdtest.exp ...
+PASS: cdtest
+PASS: cdtest with -Ur
+Running [...]/hurd/master/ld/testsuite/ld-checks/checks.exp ...
+PASS: check sections 1
+PASS: check sections 2
+Running [...]/hurd/master/ld/testsuite/ld-cris/cris.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-crx/crx.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-cygwin/exe-export.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-d10v/d10v.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-discard/discard.exp ...
+PASS: ld-discard/extern
+PASS: ld-discard/start
+PASS: ld-discard/static
+PASS: ld-discard/zero-range
+PASS: ld-discard/zero-rel
+Running [...]/hurd/master/ld/testsuite/ld-elf/audit.exp ...
+PASS: Run with -paudit.so
+PASS: Run with -Paudit.so
+PASS: Run with --depaudit=audit.so
+PASS: Run with shared with --audit
+PASS: Run with shared with --audit
+PASS: Run with -lusesaudit
+PASS: Run with -lusesaudit -lusesaudit2
+Running [...]/hurd/master/ld/testsuite/ld-elf/binutils.exp ...
+PASS: strip -z max-page-size=0x200000 (maxpage1)
+PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
+PASS: strip -z max-page-size=0x100000 (maxpage1)
+PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
+PASS: strip (maxpage1)
+PASS: strip -shared (maxpage1)
+PASS: objcopy (maxpage1)
+PASS: objcopy -shared (maxpage1)
+PASS: strip -z relro (relro1)
+PASS: strip -z relro -shared (relro1)
+PASS: objcopy -z relro (relro1)
+PASS: objcopy -z relro -shared (relro1)
+PASS: strip -z relro -shared (relro2)
+PASS: objcopy -z relro -shared (relro2)
+PASS: strip -T [...]/hurd/master/ld/testsuite/ld-elf/lma.lnk (lma)
+PASS: objcopy (tbss1)
+PASS: objcopy -z relro (tbss1)
+PASS: objcopy -shared (tbss1)
+PASS: objcopy -shared -z relro (tbss1)
+PASS: objcopy -z max-page-size=0x100000 (tbss1)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
+PASS: objcopy (tdata1)
+PASS: objcopy -z relro (tdata1)
+PASS: objcopy -shared (tdata1)
+PASS: objcopy -shared -z relro (tdata1)
+PASS: objcopy -z max-page-size=0x100000 (tdata1)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
+PASS: objcopy (tbss2)
+PASS: objcopy -z relro (tbss2)
+PASS: objcopy -shared (tbss2)
+PASS: objcopy -shared -z relro (tbss2)
+PASS: objcopy -z max-page-size=0x100000 (tbss2)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
+PASS: objcopy (tdata2)
+PASS: objcopy -z relro (tdata2)
+PASS: objcopy -shared (tdata2)
+PASS: objcopy -shared -z relro (tdata2)
+PASS: objcopy -z max-page-size=0x100000 (tdata2)
+PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
+Running [...]/hurd/master/ld/testsuite/ld-elf/compress.exp ...
+PASS: Build libfoo.so with compressed debug sections
+PASS: Build libbar.so with compressed debug sections
+PASS: Run normal with libfoo.so with compressed debug sections
+Running [...]/hurd/master/ld/testsuite/ld-elf/dwarf.exp ...
+PASS: Build libdwarf1.so
+PASS: Run with libdwarf1.so first
+PASS: Run with libdwarf1.so last
+PASS: Strip -s libdwarf1c.so
+Running [...]/hurd/master/ld/testsuite/ld-elf/eh-group.exp ...
+PASS: Guess the target size from eh-group1size.o
+PASS: Build eh-group1.o
+PASS: Link eh-group.o to eh-group
+Running [...]/hurd/master/ld/testsuite/ld-elf/elf.exp ...
+PASS: ld-elf/commonpage1
+PASS: ld-elf/compress1a
+PASS: ld-elf/compress1b
+PASS: ld-elf/compress1c
+PASS: ld-elf/discard1
+PASS: ld-elf/discard2
+PASS: ld-elf/discard3
+PASS: ld-elf/dynsym1
+PASS: ld-elf/eh-frame-hdr
+PASS: ld-elf/eh5
+PASS: ld-elf/eh6
+PASS: ld-elf/empty
+PASS: ld-elf/empty2
+PASS: ld-elf/exclude3a
+PASS: ld-elf/exclude3b
+PASS: ld-elf/exclude3c
+PASS: ld-elf/expr1
+PASS: --extract-symbol test 1 (sections)
+PASS: --extract-symbol test 1 (symbols)
+PASS: --set-section-flags test 1 (sections)
+PASS: ld-elf/group1
+PASS: ld-elf/group10
+PASS: ld-elf/group2
+PASS: ld-elf/group3a
+PASS: ld-elf/group3b
+PASS: ld-elf/group4
+PASS: ld-elf/group5
+PASS: ld-elf/group6
+PASS: ld-elf/group7
+PASS: ld-elf/group8a
+PASS: ld-elf/group8b
+PASS: ld-elf/group9a
+PASS: ld-elf/group9b
+PASS: ld-elf/hash
+PASS: ld-elf/header
+PASS: ld-elf/init-fini-arrays
+PASS: ld-elf/linkonce1
+PASS: ld-elf/linkonce2
+PASS: ld-elf/linkoncerdiff
+PASS: ld-elf/loadaddr1
+PASS: ld-elf/loadaddr2
+PASS: ld-elf/loadaddr3a
+PASS: ld-elf/loadaddr3b
+PASS: ld-elf/local1
+PASS: ld-elf/maxpage1
+PASS: ld-elf/maxpage2
+PASS: ld-elf/maxpage3a
+PASS: ld-elf/merge
+PASS: ld-elf/merge2
+PASS: ld-elf/multibss1
+PASS: ld-elf/nobits-1
+PASS: ld-elf/noload-1
+PASS: ld-elf/noload-2
+PASS: ld-elf/noload-3
+PASS: ld-elf/note-1
+PASS: ld-elf/note-2
+PASS: ld-elf/orphan-region
+PASS: ld-elf/orphan
+PASS: ld-elf/orphan2
+PASS: ld-elf/orphan3
+PASS: ld-elf/orphan4
+PASS: ld-elf/overlay
+PASS: ld-elf/pr11304
+PASS: ld-elf/pr349
+PASS: relocatable with script
+PASS: ld-elf/seg
+PASS: ld-elf/stab
+PASS: ld-elf/textaddr1
+PASS: ld-elf/textaddr2
+PASS: ld-elf/textaddr3
+PASS: ld-elf/textaddr4
+PASS: ld-elf/textaddr5
+PASS: ld-elf/textaddr6
+PASS: ld-elf/textaddr7
+PASS: ld-elf/unknown
+PASS: ld-elf/unknown2
+PASS: ld-elf/warn1
+PASS: ld-elf/warn2
+PASS: Weak symbols in dynamic objects 1 (support)
+PASS: Weak symbols in dynamic objects 1 (main test)
+PASS: --gc-sections on tls variable
+PASS: preinit array
+PASS: init array
+PASS: fini array
+PASS: init array mixed
+PASS: static preinit array
+PASS: static init array
+PASS: static fini array
+PASS: static init array mixed
+Running [...]/hurd/master/ld/testsuite/ld-elf/exclude.exp ...
+PASS: ld link shared library
+PASS: ld export symbols from archive
+PASS: ld link shared library with --exclude-libs
+PASS: ld exclude symbols from archive - --exclude-libs libexclude
+PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
+PASS: ld exclude symbols from archive - --exclude-libs ALL
+PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
+PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
+PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
+Running [...]/hurd/master/ld/testsuite/ld-elf/frame.exp ...
+PASS: read-only .eh_frame section
+PASS: read-only .gcc_except_table section
+Running [...]/hurd/master/ld/testsuite/ld-elf/sec-to-seg.exp ...
+PASS: assignment of ELF sections to segments (same page)
+PASS: assignment of ELF sections to segments (adjacent pages)
+PASS: assignment of ELF sections to segments (disjoint pages)
+Running [...]/hurd/master/ld/testsuite/ld-elf/sec64k.exp ...
+PASS: ld-elf/64ksec-r
+PASS: ld-elf/64ksec
+Running [...]/hurd/master/ld/testsuite/ld-elf/shared.exp ...
+PASS: Build libfoo.so
+PASS: Build versioned libfoo.so
+PASS: Build libbar.so
+PASS: Build warn libbar.so
+PASS: Build hidden libbar.so
+PASS: Build protected libbar.so
+PASS: Build libbar.so with libfoo.so
+PASS: Build libar.so with versioned libfoo.so
+PASS: Build hidden libbar.so with libfoo.so
+PASS: Build hidden libar.so with versioned libfoo.so
+PASS: Build protected libbar.so with libfoo.so
+PASS: Build protected libbar.so with versioned libfoo.so
+PASS: Build libdl1.so
+PASS: Build libdl2a.so with --dynamic-list=dl2.list
+PASS: Build libdl2a.so with --dynamic-list=dl2a.list
+PASS: Build libdl2a.so with --dynamic-list-data
+PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
+PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
+PASS: Build libdl4a.so with --dynamic-list=dl4.list
+PASS: Build libdl4b.so with --dynamic-list-data
+PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
+PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
+PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
+PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
+PASS: Build libdl6a.so
+PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
+PASS: Build libdl6c.so with -Bsymbolic
+PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
+PASS: Build libdata1.so
+PASS: Build libcomm1.o
+PASS: Build libfunc1.so
+PASS: Build libpr9676-1.a
+PASS: Build libpr9676-2.a
+PASS: Build libpr9676-3.so
+PASS: Build libpr9676-4.so
+PASS: Build libpr9676-4a.so
+PASS: Build libpr9679.so
+PASS: Build libpr11138-1.so
+PASS: Build libpr11138-2.o
+PASS: Run normal with libfoo.so
+PASS: Run protected with libfoo.so
+PASS: Run hidden with libfoo.so
+PASS: Run normal with versioned libfoo.so
+PASS: Run warn with versioned libfoo.so
+PASS: Run protected with versioned libfoo.so
+PASS: Run hidden with versioned libfoo.so
+PASS: Run normal libbar.so with libfoo.so
+PASS: Run protected libbar.so with libfoo.so
+PASS: Run hidden libbar.so with libfoo.so
+PASS: Run normal libbar.so with versioned libfoo.so
+PASS: Run protected libbar.so with versioned libfoo.so
+PASS: Run hidden libbar.so with versioned libfoo.so
+PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
+PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
+PASS: Run with libdl2a.so
+PASS: Run with libdl2b.so
+PASS: Run with libdl2c.so
+PASS: Run with libdl4a.so
+PASS: Run with libdl4b.so
+PASS: Run with libdl4c.so
+PASS: Run with libdl4d.so
+PASS: Run with libdl4e.so
+PASS: Run with libdl4f.so
+PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
+PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
+PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
+PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
+PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
+PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
+PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
+PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
+PASS: Run dl6b2 with dlopen on libdl6b.so
+PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
+PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
+PASS: Run with libdata1.so
+PASS: Run with libfunc1.so comm1.o
+PASS: Run with comm1.o libfunc1.so
+PASS: Run with pr11138-2.c libpr11138-1.so
+PASS: Run with libpr11138-1.so pr11138-2.c
+PASS: Build libdl3a.so with --dynamic-list=dl3.list
+PASS: Build libdl3b.so with -Bsymbolic
+PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
+PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
+PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
+PASS: Run with libdl3a.so
+PASS: Run with libdl3c.so
+PASS: Run with libnew1a.so
+PASS: Run with libnew1b.so
+Running [...]/hurd/master/ld/testsuite/ld-elf/tls_common.exp ...
+PASS: tls_common
+Running [...]/hurd/master/ld/testsuite/ld-elf/wrap.exp ...
+PASS: Build libwrap1a.so
+PASS: Build libwrap1b.so
+PASS: Run with libwrap1a.so and libwrap1b.so
+PASS: Run with libwrap1b.so and libwrap1a.so
+Running [...]/hurd/master/ld/testsuite/ld-elfcomm/elfcomm.exp ...
+PASS: --sort-common (descending)
+PASS: --sort-common (ascending)
+PASS: size/aligment change of common symbols (warning 1)
+PASS: size/aligment change of common symbols (change 1)
+PASS: size/aligment change of common symbols (warning 2)
+PASS: size/aligment change of common symbols (change 2)
+Running [...]/hurd/master/ld/testsuite/ld-elfvers/vers.exp ...
+PASS: vers1
+PASS: vers2
+PASS: vers3
+PASS: vers4
+PASS: vers4a
+PASS: vers4b
+PASS: vers5
+PASS: vers6
+PASS: vers7a
+PASS: vers7
+PASS: vers8
+PASS: vers9
+PASS: vers10
+PASS: vers11
+PASS: vers12
+PASS: ar with versioned solib
+PASS: vers14
+PASS: vers15
+PASS: vers16a
+PASS: vers16
+PASS: vers17
+PASS: vers18
+PASS: vers19
+PASS: vers20a
+PASS: vers20
+PASS: vers21
+PASS: vers22a
+PASS: vers22b
+PASS: vers22
+PASS: vers23a
+PASS: vers23b
+PASS: vers23c
+PASS: vers23d
+PASS: vers23
+PASS: vers24a
+PASS: vers24b
+PASS: vers24c
+PASS: vers25a
+PASS: vers25b1
+PASS: vers25b2
+PASS: vers26a
+PASS: vers26b1
+PASS: vers26b2
+PASS: vers26b3
+PASS: vers27a
+PASS: vers27b
+PASS: vers27c1
+PASS: vers27c2
+PASS: vers27d1
+PASS: vers27d2
+PASS: vers27d3
+PASS: vers27d4
+PASS: vers27d5
+PASS: vers28a
+PASS: vers28b
+PASS: vers28c
+PASS: vers29
+PASS: vers30
+PASS: vers31
+PASS: vers32a
+PASS: vers32b
+Running [...]/hurd/master/ld/testsuite/ld-elfvsb/elfvsb.exp ...
+PASS: ld-elfvsb/hidden0
+PASS: ld-elfvsb/hidden1
+PASS: ld-elfvsb/hidden2
+PASS: ld-elfvsb/internal0
+PASS: ld-elfvsb/internal1
+PASS: ld-elfvsb/protected0
+PASS: ld-elfvsb/protected1
+PASS: visibility (hidden) (non PIC)
+PASS: visibility (hidden) (non PIC, load offset)
+PASS: visibility (hidden)
+PASS: visibility (hidden) (PIC main, non PIC so)
+PASS: visibility (hidden) (PIC main)
+PASS: visibility (hidden_normal) (non PIC)
+PASS: visibility (hidden_normal) (non PIC, load offset)
+PASS: visibility (hidden_normal)
+PASS: visibility (hidden_normal) (PIC main, non PIC so)
+PASS: visibility (hidden_normal) (PIC main)
+PASS: visibility (hidden_undef) (non PIC)
+PASS: visibility (hidden_undef) (non PIC, load offset)
+PASS: visibility (hidden_undef)
+PASS: visibility (hidden_undef) (PIC main, non PIC so)
+PASS: visibility (hidden_undef) (PIC main)
+PASS: visibility (hidden_undef_def) (non PIC)
+PASS: visibility (hidden_undef_def) (non PIC, load offset)
+PASS: visibility (hidden_undef_def)
+PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
+PASS: visibility (hidden_undef_def) (PIC main)
+PASS: visibility (hidden_weak) (non PIC)
+PASS: visibility (hidden_weak) (non PIC, load offset)
+PASS: visibility (hidden_weak)
+PASS: visibility (hidden_weak) (PIC main, non PIC so)
+PASS: visibility (hidden_weak) (PIC main)
+PASS: visibility (protected) (non PIC)
+PASS: visibility (protected) (non PIC, load offset)
+PASS: visibility (protected)
+PASS: visibility (protected) (PIC main, non PIC so)
+PASS: visibility (protected) (PIC main)
+PASS: visibility (protected_undef) (non PIC)
+PASS: visibility (protected_undef) (non PIC, load offset)
+PASS: visibility (protected_undef)
+PASS: visibility (protected_undef) (PIC main, non PIC so)
+PASS: visibility (protected_undef) (PIC main)
+PASS: visibility (protected_undef_def) (non PIC)
+PASS: visibility (protected_undef_def) (non PIC, load offset)
+PASS: visibility (protected_undef_def)
+PASS: visibility (protected_undef_def) (PIC main, non PIC so)
+PASS: visibility (protected_undef_def) (PIC main)
+PASS: visibility (protected_weak) (non PIC)
+PASS: visibility (protected_weak) (non PIC, load offset)
+PASS: visibility (protected_weak)
+PASS: visibility (protected_weak) (PIC main, non PIC so)
+PASS: visibility (protected_weak) (PIC main)
+PASS: visibility (normal) (non PIC)
+PASS: visibility (normal) (non PIC, load offset)
+PASS: visibility (normal)
+PASS: visibility (normal) (PIC main, non PIC so)
+PASS: visibility (normal) (PIC main)
+PASS: common hidden symbol
+PASS: weak hidden symbol DSO last
+PASS: weak hidden symbol DSO first
+Running [...]/hurd/master/ld/testsuite/ld-elfweak/elfweak.exp ...
+PASS: ELF DSO weak func first
+PASS: ELF DSO weak func last
+PASS: ELF DSO weak func first DSO
+PASS: ELF DSO weak func last DSO
+PASS: ELF weak func first
+PASS: ELF weak func last
+PASS: ELF weak func first DSO
+PASS: ELF weak func last DSO
+PASS: ELF DSO weak data first
+PASS: ELF DSO weak data last
+PASS: ELF DSO weak data first DSO
+PASS: ELF DSO weak data last DSO
+PASS: ELF DSO weak data first DSO common
+PASS: ELF DSO weak data last DSO common
+PASS: ELF weak data first
+PASS: ELF weak data last
+PASS: ELF weak data first common
+PASS: ELF weak data last common
+PASS: ELF weak data first DSO
+PASS: ELF weak data last DSO
+PASS: ELF weak data first DSO common
+PASS: ELF weak data last DSO common
+PASS: ELF DSO small bar (size)
+PASS: ELF DSO foo with small bar (size)
+PASS: ELF DSO big bar (size)
+PASS: ELF weak size
+PASS: ld-elfweak/size2
+Running [...]/hurd/master/ld/testsuite/ld-fastcall/fastcall.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-frv/fdpic.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-frv/frv-elf.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-frv/tls.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-gc/gc.exp ...
+PASS: Check --gc-section
+PASS: Check --gc-section/-q
+PASS: Check --gc-section/-r/-e
+PASS: Check --gc-section/-r/-u
+PASS: --gc-sections -r without -e
+PASS: --gc-sections with note section
+PASS: --gc-sections with __start_
+PASS: --gc-sections with shared library
+Running [...]/hurd/master/ld/testsuite/ld-h8300/h8300.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-i386/i386.exp ...
+PASS: TLS -fpic -shared transitions
+PASS: TLS descriptor -fpic -shared transitions
+PASS: Helper shared library
+PASS: TLS -fpic and -fno-pic exec transitions
+PASS: TLS descriptor -fpic and -fno-pic exec transitions
+PASS: TLS -fno-pic -shared
+PASS: TLS with global dynamic and descriptors
+PASS: TLS in debug sections
+PASS: TLS @indntpoff with %eax
+PASS: Reloc section order
+PASS: Basic --emit-relocs support
+PASS: -z combreloc relocation sections
+PASS: TLS GD->LE transition
+PASS: TLS LD->LE transition
+PASS: TLS IE->LE transition
+PASS: Absolute non-overflowing relocs
+PASS: PCREL8 overflow
+PASS: PCREL16 overflow
+PASS: PCREL16 absolute reloc
+PASS: Invalid allocated section
+PASS: --warn-shared-textrel --fatal-warnings
+PASS: TLS GD->LE transition check
+PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
+PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
+PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
+PASS: TLS IE->LE transition check (R_386_TLS_IE)
+PASS: ld-i386/hidden1
+PASS: ld-i386/hidden2
+PASS: ld-i386/hidden3
+PASS: ld-i386/protected1
+PASS: ld-i386/protected2
+PASS: ld-i386/protected3
+PASS: TLS with PIE
+PASS: ld-i386/nogot1
+PASS: ld-i386/nogot2
+PASS: ld-i386/discarded1
+PASS: undefined symbol with compressed debug sections
+Running [...]/hurd/master/ld/testsuite/ld-ia64/ia64.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-ia64/line.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-ifunc/binutils.exp ...
+PASS: strip (ifunc-4-x86)
+PASS: objcopy (ifunc-4-x86)
+PASS: strip (ifunc-4-local-x86)
+PASS: objcopy (ifunc-4-local-x86)
+Running [...]/hurd/master/ld/testsuite/ld-ifunc/ifunc.exp ...
+PASS: Building ifunc binaries
+PASS: Checking ifunc binaries
+PASS: ld-ifunc/ifunc-1-local-x86
+PASS: ld-ifunc/ifunc-1-x86
+PASS: ld-ifunc/ifunc-10-i386
+PASS: ld-ifunc/ifunc-11-i386
+PASS: ld-ifunc/ifunc-2-i386
+PASS: ld-ifunc/ifunc-2-local-i386
+PASS: ld-ifunc/ifunc-3a-x86
+PASS: ld-ifunc/ifunc-3b-x86
+PASS: ld-ifunc/ifunc-4-local-x86
+PASS: ld-ifunc/ifunc-4-x86
+PASS: ld-ifunc/ifunc-4a-x86
+PASS: ld-ifunc/ifunc-5a-i386
+PASS: ld-ifunc/ifunc-5a-local-i386
+PASS: ld-ifunc/ifunc-5b-i386
+PASS: ld-ifunc/ifunc-5b-local-i386
+PASS: ld-ifunc/ifunc-5r-local-i386
+PASS: ld-ifunc/ifunc-6a-i386
+PASS: ld-ifunc/ifunc-6b-i386
+PASS: ld-ifunc/ifunc-7a-i386
+PASS: ld-ifunc/ifunc-7b-i386
+PASS: ld-ifunc/ifunc-8-i386
+PASS: ld-ifunc/ifunc-9-x86
+Running [...]/hurd/master/ld/testsuite/ld-libs/libs.exp ...
+PASS: -l: test (preparation)
+PASS: -l: test
+Running [...]/hurd/master/ld/testsuite/ld-linkonce/linkonce.exp ...
+PASS: ld-linkonce/zeroehl32
+Running [...]/hurd/master/ld/testsuite/ld-m68hc11/m68hc11.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-m68k/m68k-got.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-m68k/m68k.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-mep/mep.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-mips-elf/mips-elf.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-mmix/mmix.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-mn10300/mn10300.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-pe/pe-compile.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-pe/pe-run.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-pe/pe-run2.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-pe/pe.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-pie/pie.exp ...
+PASS: weak undefined
+PASS: weak undefined data
+PASS: missing entry symbol
+Running [...]/hurd/master/ld/testsuite/ld-plugin/plugin.exp ...
+PASS: plugin API enabled
+PASS: load plugin
+PASS: fail plugin onload
+PASS: fail plugin allsymbolsread
+PASS: fail plugin cleanup
+PASS: plugin all hooks
+PASS: plugin claimfile lost symbol
+PASS: plugin claimfile replace symbol
+PASS: plugin claimfile resolve symbol
+PASS: plugin claimfile replace file
+PASS: plugin set symbol visibility
+PASS: plugin ignore lib
+PASS: plugin claimfile replace lib
+Running [...]/hurd/master/ld/testsuite/ld-powerpc/aix52.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-powerpc/powerpc.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-s390/s390.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-scripts/align.exp ...
+PASS: align1
+PASS: ld-scripts/align2a
+PASS: ld-scripts/align2b
+PASS: ld-scripts/align2c
+Running [...]/hurd/master/ld/testsuite/ld-scripts/alignof.exp ...
+PASS: ALIGNOF
+Running [...]/hurd/master/ld/testsuite/ld-scripts/assert.exp ...
+PASS: ASSERT
+Running [...]/hurd/master/ld/testsuite/ld-scripts/crossref.exp ...
+PASS: NOCROSSREFS 1
+PASS: NOCROSSREFS 2
+PASS: NOCROSSREFS 3
+Running [...]/hurd/master/ld/testsuite/ld-scripts/data.exp ...
+PASS: ld-scripts/data
+Running [...]/hurd/master/ld/testsuite/ld-scripts/default-script.exp ...
+PASS: ld-scripts/default-script1
+PASS: ld-scripts/default-script2
+PASS: ld-scripts/default-script3
+PASS: ld-scripts/default-script4
+Running [...]/hurd/master/ld/testsuite/ld-scripts/defined.exp ...
+PASS: DEFINED (PRMS 5699)
+PASS: ld-scripts/defined2
+PASS: ld-scripts/defined3
+Running [...]/hurd/master/ld/testsuite/ld-scripts/dynamic-sections.exp ...
+PASS: dynamic sections
+Running [...]/hurd/master/ld/testsuite/ld-scripts/empty-address.exp ...
+PASS: ld-scripts/empty-address-1
+PASS: ld-scripts/empty-address-2a
+PASS: ld-scripts/empty-address-2b
+PASS: ld-scripts/empty-address-3a
+PASS: ld-scripts/empty-address-3b
+PASS: ld-scripts/empty-address-3c
+Running [...]/hurd/master/ld/testsuite/ld-scripts/empty-aligned.exp ...
+PASS: ld-scripts/empty-aligned
+Running [...]/hurd/master/ld/testsuite/ld-scripts/empty-orphan.exp ...
+PASS: ld-scripts/empty-orphan
+Running [...]/hurd/master/ld/testsuite/ld-scripts/expr.exp ...
+PASS: ld-scripts/expr1
+Running [...]/hurd/master/ld/testsuite/ld-scripts/extern.exp ...
+PASS: EXTERN
+Running [...]/hurd/master/ld/testsuite/ld-scripts/include.exp ...
+PASS: include-1
+Running [...]/hurd/master/ld/testsuite/ld-scripts/map-address.exp ...
+PASS: map addresses
+Running [...]/hurd/master/ld/testsuite/ld-scripts/overlay-size.exp ...
+PASS: overlay size
+PASS: overlay size (map check)
+Running [...]/hurd/master/ld/testsuite/ld-scripts/phdrs.exp ...
+PASS: PHDRS
+Running [...]/hurd/master/ld/testsuite/ld-scripts/phdrs2.exp ...
+PASS: PHDRS2
+Running [...]/hurd/master/ld/testsuite/ld-scripts/phdrs3.exp ...
+PASS: PHDRS headers
+PASS: PHDRS headers 3a
+Running [...]/hurd/master/ld/testsuite/ld-scripts/provide.exp ...
+PASS: ld-scripts/provide-1
+PASS: ld-scripts/provide-2
+XFAIL: ld-scripts/provide-3
+Running [...]/hurd/master/ld/testsuite/ld-scripts/rgn-at.exp ...
+PASS: rgn-at1
+PASS: rgn-at2
+PASS: rgn-at3
+PASS: rgn-at4
+PASS: rgn-at5
+Running [...]/hurd/master/ld/testsuite/ld-scripts/rgn-over.exp ...
+PASS: rgn-over1
+PASS: rgn-over1 (map check)
+PASS: rgn-over2
+PASS: rgn-over2 (map check)
+PASS: rgn-over3
+PASS: rgn-over3 (map check)
+PASS: rgn-over4
+PASS: rgn-over4 (map check)
+PASS: rgn-over5
+PASS: rgn-over5 (map check)
+PASS: rgn-over6
+PASS: rgn-over6 (map check)
+PASS: rgn-over7
+PASS: rgn-over7 (map check)
+PASS: rgn-over8
+Running [...]/hurd/master/ld/testsuite/ld-scripts/script.exp ...
+PASS: script
+PASS: MRI script
+PASS: MEMORY
+XFAIL: REGION_ALIAS: region-alias-1.t
+XFAIL: REGION_ALIAS: region-alias-2.t
+XFAIL: REGION_ALIAS: region-alias-3.t
+XFAIL: REGION_ALIAS: region-alias-4.t
+Running [...]/hurd/master/ld/testsuite/ld-scripts/section-match.exp ...
+PASS: ld-scripts/section-match-1
+Running [...]/hurd/master/ld/testsuite/ld-scripts/size.exp ...
+PASS: ld-scripts/size-1
+PASS: ld-scripts/size-2
+Running [...]/hurd/master/ld/testsuite/ld-scripts/sizeof.exp ...
+PASS: SIZEOF
+Running [...]/hurd/master/ld/testsuite/ld-scripts/sort.exp ...
+PASS: --sort-section alignment
+PASS: SORT_BY_ALIGNMENT
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
+PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
+PASS: --sort-section name
+PASS: SORT_BY_NAME
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
+PASS: SORT_BY_NAME(SORT_BY_NAME())
+PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
+PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
+PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
+PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
+Running [...]/hurd/master/ld/testsuite/ld-scripts/weak.exp ...
+PASS: weak symbols
+Running [...]/hurd/master/ld/testsuite/ld-selective/sel-dump.exp ...
+PASS: Preserve default . = 0
+PASS: Preserve explicit . = 0
+Running [...]/hurd/master/ld/testsuite/ld-selective/selective.exp ...
+PASS: selective1
+PASS: selective2
+PASS: selective3
+XFAIL: selective4
+XFAIL: selective5
+XFAIL: selective6
+Running [...]/hurd/master/ld/testsuite/ld-sh/arch/arch.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/rd-sh.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh-vxworks.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh64/relax.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh64/relfail.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-sh/sh64/sh64.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-shared/shared.exp ...
+PASS: shared (non PIC)
+PASS: shared (non PIC, load offset)
+PASS: shared
+PASS: shared -Bsymbolic
+PASS: shared (PIC main, non PIC so)
+PASS: shared (PIC main)
+Running [...]/hurd/master/ld/testsuite/ld-sparc/sparc.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-spu/spu.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-srec/srec.exp ...
+PASS: S-records
+PASS: S-records with constructors
+Running [...]/hurd/master/ld/testsuite/ld-tic6x/tic6x.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-undefined/entry.exp ...
+PASS: Build libentry.a
+PASS: --entry foo archive
+PASS: --entry foo -u foo archive
+PASS: -shared --entry foo archive
+PASS: -shared --entry foo -u foo archive
+PASS: --entry foo
+PASS: --entry foo -u foo
+PASS: --entry 0x0
+Running [...]/hurd/master/ld/testsuite/ld-undefined/undefined.exp ...
+PASS: undefined
+PASS: undefined function
+PASS: undefined line
+Running [...]/hurd/master/ld/testsuite/ld-undefined/weak-undef.exp ...
+PASS: weak undefined symbols
+Running [...]/hurd/master/ld/testsuite/ld-v850/v850.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-versados/versados.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-vxworks/vxworks.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-x86-64/line.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-x86-64/x86-64.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-xc16x/xc16x.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-xstormy16/xstormy16.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-xtensa/coalesce.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-xtensa/lcall.exp ...
+Running [...]/hurd/master/ld/testsuite/ld-xtensa/xtensa.exp ...
+
+ === ld Summary ===
+
+# of expected passes 618
+# of expected failures 8
+# of untested testcases 6
+/media/data[...]/hurd/master.build/ld/ld-new 2.21.51.20101220
+
+Test Run By thomas on Mon Dec 20 11:34:59 2010
+Native configuration is i686-pc-linux-gnu
+
+ === gas tests ===
+
+Schedule of variations:
+ unix
+
+Running target unix
+Running [...]/hurd/master/gas/testsuite/gas/all/gas.exp ...
+PASS: pcrel values in assignment
+PASS: simplifiable double subtraction
+PASS: simplifiable double subtraction (-a)
+PASS: simple FP constants
+PASS: difference of two undefined symbols
+PASS: .equiv for symbol already set to another one
+PASS: .equiv for symbol already set to an expression
+PASS: .equ for symbol already set
+PASS: .equ for symbol already set through .eqv
+PASS: .eqv support
+PASS: .eqv for symbol already set
+PASS: == assignment support
+PASS: == assignment for symbol already set
+PASS: forward references
+PASS: forward expression
+PASS: .equ redefinitions
+PASS: .equ redefinitions (2)
+PASS: .equ redefinitions (3)
+PASS: .set for symbol already used as label
+PASS: .set for symbol already defined through .comm
+PASS: comment.s: comments in listings
+PASS: general info section in listings
+PASS: difference between forward references
+PASS: struct
+PASS: align
+PASS: align2
+PASS: alternate macro syntax
+PASS: alternate macro syntax (escape)
+PASS: evaluation of simple expressions
+PASS: conditional listings
+PASS: incbin
+PASS: assignment tests
+PASS: .sleb128 tests
+PASS: relax .uleb128
+PASS: bad byte directive
+PASS: .quad tests
+PASS: octa bignum
+PASS: weakref tests, relocations
+PASS: weakref tests, global syms
+PASS: weakref tests, local syms
+PASS: weakref tests, strong undefined syms
+PASS: weakref tests, weak undefined syms
+PASS: e: would close weakref loop: e => a => b => c => d => e
+PASS: a: would close weakref loop: a => b => c => d => e => a
+PASS: is already defined
+PASS: .strings tests
+PASS: gas/all/err-1.s (test for errors, line 3)
+PASS: gas/all/err-1.s (test for errors, line 4)
+PASS: gas/all/err-1.s (test for errors, line 5)
+PASS: gas/all/err-1.s (test for errors, line 6)
+PASS: gas/all/err-1.s (test for errors, line 7)
+PASS: gas/all/err-1.s (test for excess errors)
+PASS: gas/all/warn-1.s (test for warnings, line 3)
+PASS: gas/all/warn-1.s (test for errors, line 4)
+PASS: gas/all/warn-1.s (test for warnings, line 5)
+PASS: gas/all/warn-1.s (test for warnings, line 6)
+PASS: gas/all/warn-1.s (test for warnings, line 7)
+PASS: gas/all/warn-1.s (test for excess errors)
+Running [...]/hurd/master/gas/testsuite/gas/alpha/alpha.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/arc/arc.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/arc/warn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/arm/arm.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/bfin/bfin.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/bfin/error.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/cfi/cfi.exp ...
+PASS: CFI on i386
+PASS: cfi cfi-diag-1
+PASS: CFI common 1
+PASS: CFI common 2
+PASS: CFI common 3
+PASS: CFI common 4
+PASS: CFI common 5
+PASS: CFI common 7
+PASS: CFI common 6
+Running [...]/hurd/master/gas/testsuite/gas/cr16/cr16.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/cr16/pic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/cris/cris.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/crx/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/d10v/d10v.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/d30v/d30.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/dlx/alltests.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/elf/elf.exp ...
+PASS: elf ehopt0
+PASS: .file file names
+PASS: group section
+PASS: group section
+PASS: group section name
+PASS: group section with multiple sections of same name
+PASS: group section with multiple sections of same name
+PASS: automatic section group a
+PASS: automatic section group b
+PASS: .equ redefinitions (ELF)
+PASS: elf equate relocs
+PASS: Ill-formed directives
+PASS: elf section0
+PASS: elf section1
+PASS: elf section2 list
+PASS: note section
+PASS: label arithmetic with multiple same-name sections
+PASS: elf section5 list
+PASS: ELF struct
+PASS: .set with expression
+PASS: ELF symbol versioning
+PASS: .set with IFUNC
+PASS: elf type list
+PASS: elf section6
+PASS: elf section7
+PASS: section flags
+PASS: section flags
+PASS: DWARF2 1
+PASS: DWARF2 2
+PASS: DWARF2 3
+PASS: Check bad section flag
+Running [...]/hurd/master/gas/testsuite/gas/fr30/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/fr30/fr30.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/frv/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/h8300-coff.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/h8300-elf.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/h8300.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t01_mov.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t02_mova.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t03_add.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t04_sub.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t05_cmp.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t06_ari2.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t07_ari3.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t08_or.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t09_xor.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t10_and.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t11_logs.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t12_bit.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/h8300/t13_otr.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/hppa/basic/basic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/hppa/parse/parse.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/hppa/reloc/reloc.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/i386/i386.exp ...
+PASS: i386 float
+PASS: i386 general
+PASS: i386 inval
+PASS: i386 segment
+PASS: i386 inval-seg
+PASS: i386 inval-reg
+PASS: i386 modrm
+PASS: i386 naked reg
+PASS: i386 opcodes
+PASS: i386 opcodes (Intel disassembly)
+PASS: i386 opcodes (w/ suffix)
+PASS: i386 intel
+PASS: i386 intel16
+PASS: i386 intelbad
+PASS: i386 intel-ok
+PASS: i386 prefix
+PASS: i386 amd
+PASS: i386 katmai
+PASS: i386 jump
+PASS: i386 relax 1
+PASS: i386 relax 2
+PASS: i386 ssemmx2
+PASS: i386 sse2
+PASS: i386 sub
+PASS: i386 SSE3
+PASS: i386 SIB
+PASS: i386 SIB (Intel mode)
+PASS: i386 displacement
+PASS: i386 displacement (Intel mode)
+PASS: i386 32bit displacement
+PASS: i386 VMX
+PASS: i386 SMX
+PASS: i386 suffix
+PASS: i386 immed
+PASS: i386 equates
+PASS: i386 divide
+PASS: i386 padlock
+PASS: i386 cr8+
+PASS: i386 cr-err
+PASS: 32-bit SVME
+PASS: i386 amdfam10
+PASS: i386 SSSE3
+PASS: i386 rep prefix
+PASS: i386 rep prefix (with suffixes)
+PASS: i386 lockable insns
+PASS: i386 lockable insns (Intel disassembly)
+PASS: i386 lockbad-1
+PASS: i386 long insns
+PASS: i386 long insns (Intel disassembly)
+PASS: i386 fp
+PASS: i386 nops
+PASS: i386 nops 16bit 1
+PASS: i386 nops 1
+PASS: i386 -mtune=i386 nops 1
+PASS: i386 nops -march=i386 -mtune=i686 1
+PASS: i386 -mtune=i686 nops 1
+PASS: i386 -mtune=k8 nops 1
+PASS: i386 -mtune=core2 nops 1
+PASS: i386 -mtune=bdver1 nops 1
+PASS: i386 nops 2
+PASS: i386 nops -mtune=i386 2
+PASS: i386 -march=i386 -mtune=core2 nops 2
+PASS: i386 nops 3
+PASS: i386 nops -mtune=i386 3
+PASS: i386 -mtune=i686 nops 3
+PASS: i386 nops 4
+PASS: i386 nops -mtune=i386 4
+PASS: i386 -mtune=i686 nops 4
+PASS: i386 nops 5
+PASS: i386 -march=i686 nops 5
+PASS: i386 16-bit addressing in 32-bit mode.
+PASS: i386 32-bit addressing in 16-bit mode.
+PASS: i386 SSE4.1
+PASS: i386 SSE4.1 (Intel disassembly)
+PASS: i386 SSE4.2
+PASS: i386 SSE4.2 (Intel disassembly)
+PASS: i386 crc32
+PASS: i386 crc32 (Intel disassembly)
+PASS: i386 inval-crc32
+PASS: i386 SIMD
+PASS: i386 SIMD (Intel mode)
+PASS: i386 SIMD (with suffixes)
+PASS: i386 mem
+PASS: i386 mem (Intel mode)
+PASS: i386 reg
+PASS: i386 reg (Intel mode)
+PASS: i386
+PASS: i386 float AT&T mnemonic
+PASS: i386 float Intel mnemonic
+PASS: i386 arch 1
+PASS: i386 arch 2
+PASS: i386 arch 3
+PASS: i386 arch 4
+PASS: i386 arch 5
+PASS: i386 arch 6
+PASS: i386 arch 7
+PASS: i386 arch 9
+PASS: i386 arch 10
+PASS: i386 arch-10-1
+PASS: i386 arch-10-2
+PASS: i386 arch-10-3
+PASS: i386 arch-10-4
+PASS: i386 arch 11
+PASS: i386 arch 12
+PASS: i386 8087
+PASS: i386 287
+PASS: i386 387 (cmdline)
+PASS: i386 no87
+PASS: i386 no87-2
+PASS: i386 xsave
+PASS: i386 xsave (Intel mode)
+PASS: i386 AES
+PASS: i386 AES (Intel mode)
+PASS: i386 PCLMUL
+PASS: i386 PCLMUL (Intel mode)
+PASS: i386 AVX
+PASS: i386 AVX (Intel disassembly)
+PASS: i386 AVX scalar insns
+PASS: i386 AVX scalar insns (Intel disassembly)
+PASS: i386 SSE with AVX encoding
+PASS: i386 inval-avx
+PASS: i386 SSE check (none)
+PASS: i386 SSE check (.sse_check none)
+PASS: i386 SSE check (warning)
+PASS: i386 sse-check-error
+PASS: i386 SSE without AVX equivalent
+PASS: i386 movbe
+PASS: i386 movbe (Intel disassembly)
+PASS: i386 inval-movbe
+PASS: i386 EPT
+PASS: i386 EPT (Intel disassembly)
+PASS: i386 inval-ept
+PASS: i386 arch avx 1
+PASS: i386 arch-avx-1-1
+PASS: i386 arch-avx-1-2
+PASS: i386 arch-avx-1-3
+PASS: i386 arch-avx-1-4
+PASS: i386 arch-avx-1-5
+PASS: i386 arch-avx-1-6
+PASS: encoding option
+PASS: encoding option (Intel mode)
+PASS: encoding option with -msse2avx
+PASS: encoding option with -msse2avx (Intel mode)
+PASS: i386 FMA
+PASS: i386 FMA (Intel disassembly)
+PASS: i386 FMA scalar insns
+PASS: i386 FMA scalar insns (Intel disassembly)
+PASS: i386 FMA4
+PASS: i386 LWP
+PASS: i386 XOP
+PASS: i386 F16C
+PASS: i386 F16C (Intel disassembly)
+PASS: i386 FSGSBase
+PASS: i386 FSGSBase (Intel disassembly)
+PASS: i386 RdRnd
+PASS: i386 RdRnd (Intel disassembly)
+PASS: i386 reloc
+PASS: i386 jump16
+PASS: i386 white
+PASS: i386 pcrel reloc
+PASS: i386 abs reloc
+PASS: i386 intelpic
+PASS: i386 relax
+PASS: i386 gotpc
+PASS: i386 dynamic tls
+PASS: i386 pic tls
+PASS: i386 non-pic tls
+PASS: i386 .bss
+PASS: i386 relocs
+PASS: i386 reloc32
+PASS: x86 mixed mode relocs (32-bit object)
+PASS: i386 AT&T register names
+PASS: i386 intel-got
+PASS: i386 Intel register names
+PASS: i386 inval-equ-1
+PASS: i386 inval-equ-2
+PASS: i386 ifunc
+PASS: i386 ifunc-2
+PASS: i386 ifunc 3
+PASS: i386 l1om-inval
+PASS: i386 local PIC
+PASS: DWARF2 debugging information 1
+PASS: DWARF2 debugging information 2
+PASS: x86 Intel expressions
+PASS: string insn operands
+PASS: i386 string-bad
+PASS: i386 space1
+PASS: i386 list-1
+PASS: i386 list-2
+PASS: i386 list-3
+PASS: DWARF2 debugging information 1
+Running [...]/hurd/master/gas/testsuite/gas/i860/i860.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/ia64/ia64.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/ieee-fp/x930509a.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/iq2000/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/iq2000/load-hazards.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/iq2000/odd-ldw.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/iq2000/odd-sdw.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/iq2000/yield.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/lm32/all.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/lns/lns.exp ...
+PASS: lns lns-diag-1
+PASS: lns-duplicate
+PASS: lns-common-1
+Running [...]/hurd/master/gas/testsuite/gas/m32r/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/error.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/m32r.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/m32r2.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/m32rx.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/pic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m32r/rel32.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m68hc11/m68hc11.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m68k-coff/gas.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/m68k/all.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/macros/macros.exp ...
+PASS: macro test 1
+PASS: macro test 2
+PASS: macro test 3
+PASS: macro irp
+PASS: macro rept
+PASS: nested irp/irpc/rept
+PASS: macro vararg
+PASS: macro infinite recursion
+PASS: logical and in macro definition
+PASS: semi
+PASS: strings
+PASS: APP with macro without NO_APP
+PASS: APP with macro then NO_APP
+PASS: APP with macro then NO_APP then more code
+PASS: included file with .if 0 wrapped in APP/NO_APP, no final NO_APP, macro in main file
+PASS: macros badarg
+PASS: macros dot
+PASS: macros end
+PASS: macros purge
+PASS: macros redef
+PASS: gas/macros/paren
+PASS: .exitm outside of a macro
+Running [...]/hurd/master/gas/testsuite/gas/mcore/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mep/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mep/complex-relocs.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mips/mips.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mmix/mmix-err.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mmix/mmix-list.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mmix/mmix.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mn10200/basic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mn10300/basic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mri/mri.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/msp430/msp430.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mt/errors.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mt/mt.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/mt/relocs.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/openrisc/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/pdp11/pdp11.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/pe/pe.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/pj/pj.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/ppc/aix.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/ppc/ppc.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/rx/rx.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/s390/s390.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/score/relax.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/score/relax_32.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sh/arch/arch.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sh/basic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sh/err.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sh/sh64/err.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sh/sh64/sh64.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sparc-solaris/addend.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sparc-solaris/gas.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sparc/mismatch.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sparc/sparc.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/sun4/addend.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/symver/symver.exp ...
+PASS: symver symver0
+PASS: symver symver1
+PASS: symver symver2
+PASS: symver symver3
+PASS: symver symver6
+Running [...]/hurd/master/gas/testsuite/gas/tic4x/tic4x.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/tic54x/tic54x.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/tic6x/tic6x.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/v850/basic.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/vax/vax.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/xc16x/xc16x.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/xstormy16/allinsn.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/xtensa/all.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/xtensa/xtensa-err.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/z80/z80.exp ...
+Running [...]/hurd/master/gas/testsuite/gas/z8k/z8k.exp ...
+
+ === gas Summary ===
+
+# of expected passes 319
+../as-new 2.21.51.20101220
+
diff --git a/open_issues/binutils/testsuite.mdwn b/open_issues/binutils/testsuite.mdwn
deleted file mode 100644
index 4a13868f..00000000
--- a/open_issues/binutils/testsuite.mdwn
+++ /dev/null
@@ -1,160 +0,0 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
-
-[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
-id="license" text="Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License, Version 1.2 or
-any later version published by the Free Software Foundation; with no Invariant
-Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled [[GNU Free Documentation
-License|/fdl]]."]]"""]]
-
-[[!tag open_issue_binutils]]
-
-Here's a log of a binutils build and testsuite run; this is from
-fb02b34127764596bd182e258400a59356f6cdce (2010-11-24)
-[[sources|source_repositories/binutils]], run on kepler.SCHWINGE and grubber.
-
- $ export LC_ALL=C
- $ ../hurd/configure --prefix="$PWD".install 2>&1 | tee log_build
- [...]
- $ make SHELL=/bin/bash 2>&1 | tee log_build_
- [...]
-
-(kepler.SCHWINGE defaults to using /bin/sh for libtool, grubber to /bin/bash;
-thus harmonized.)
-
-On grubber, this takes roughly one hour.
-
-x86 GNU/Linux and GNU/Hurd's configurations are [[slightly
-different|binutils]], thus mask out most of the differences that are due to
-GNU/Linux defining `-DTRAD_CORE`, `-DHAVE_i386linux_vec`
-(`-DSELECT_VECS='[...],&i386linux_vec[...]`), `-DHAVE_i386pei_vec`
-(`-DSELECT_VECS='[...],&i386pei_vec[...]`).
-
- $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/binutils/hurd.build/ && cat log_build* | sed -e "s%${PWD}%[...]%g" -e s%-DTRAD_CORE%% -e s%-DHAVE_i386linux_vec%% -e s%-DHAVE_i386pei_vec%% -e s%-DSELECT_VECS=\\\('\\\''\\\?\\\)\&bfd_elf32_i386_vec,\&i386linux_vec,\&i386pei_vec,\&bfd_elf32_little_generic_vec,\&bfd_elf32_big_generic_vec'\\\''\\\?%-DSELECT_VECS=\\\1\\\&bfd_elf32_i386_vec,\\\&bfd_elf32_little_generic_vec,\\\&bfd_elf32_big_generic_vec\\\1%') <(ssh grubber 'cd tmp/binutils/hurd.build/ && cat log_build* | sed "s%${PWD}%[...]%g"') > open_issues/binutils/testsuite/log_build-diff
-
-[[log_build-diff]].
-
- $ make -k check
- [...]
-
-On grubber, this takes roughly one hour.
-
- $ ssh kepler.SCHWINGE 'cd tmp/source/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils/testsuite/sum_linux
- $ ssh grubber 'cd tmp/binutils/ && cat hurd.build/*/*.sum hurd.build/*/*/*.sum | sed "s%${PWD}%[...]%g"' > open_issues/binutils/testsuite/sum_hurd
-
-Comparing the results files, [[sum_linux]] to [[sum_hurd]]:
-
- $ diff -u -F ^Running open_issues/binutils/testsuite/sum_linux open_issues/binutils/testsuite/sum_hurd
- --- open_issues/binutils/testsuite/sum_linux 2010-11-24 13:01:43.000000000 +0100
- +++ open_issues/binutils/testsuite/sum_hurd 2010-11-25 08:51:52.000000000 +0100
- @@ -1,5 +1,5 @@
- -Test Run By thomas on Wed Nov 24 12:32:00 2010
- -Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Wed Nov 24 12:33:09 2010
- +Native configuration is i686-unknown-gnu0.3
-
- === binutils tests ===
-
- @@ -114,8 +114,8 @@ Running [...]/hurd/binutils/testsuite/bi
-
- # of expected passes 83
- # of unsupported tests 2
- -Test Run By thomas on Wed Nov 24 12:32:23 2010
- -Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Wed Nov 24 12:43:48 2010
- +Native configuration is i686-unknown-gnu0.3
-
- === ld tests ===
-
- @@ -295,9 +295,9 @@ Running [...]/hurd/ld/testsuite/ld-elf/e
- PASS: preinit array
- PASS: init array
- PASS: fini array
- -PASS: static preinit array
- -PASS: static init array
- -PASS: static fini array
- +XFAIL: static preinit array
- +XFAIL: static init array
- +XFAIL: static fini array
- Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
- PASS: ld link shared library
- PASS: ld export symbols from archive
- @@ -317,7 +317,8 @@ Running [...]/hurd/ld/testsuite/ld-elf/s
- PASS: assignment of ELF sections to segments (disjoint pages)
- Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
- PASS: ld-elf/64ksec-r
- -PASS: ld-elf/64ksec
- +WARNING: program timed out.
- +FAIL: ld-elf/64ksec
- Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
- PASS: Build libfoo.so
- PASS: Build versioned libfoo.so
- @@ -551,8 +552,8 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
- PASS: ELF DSO weak func last DSO
- PASS: ELF weak func first
- PASS: ELF weak func last
- -PASS: ELF weak func first DSO
- -PASS: ELF weak func last DSO
- +XFAIL: ELF weak func first DSO
- +XFAIL: ELF weak func last DSO
- PASS: ELF DSO weak data first
- PASS: ELF DSO weak data last
- PASS: ELF DSO weak data first DSO
- @@ -563,10 +564,10 @@ Running [...]/hurd/ld/testsuite/ld-elfwe
- PASS: ELF weak data last
- PASS: ELF weak data first common
- PASS: ELF weak data last common
- -PASS: ELF weak data first DSO
- -PASS: ELF weak data last DSO
- -PASS: ELF weak data first DSO common
- -PASS: ELF weak data last DSO common
- +XFAIL: ELF weak data first DSO
- +XFAIL: ELF weak data last DSO
- +XFAIL: ELF weak data first DSO common
- +XFAIL: ELF weak data last DSO common
- PASS: ELF DSO small bar (size)
- PASS: ELF DSO foo with small bar (size)
- PASS: ELF DSO big bar (size)
- @@ -871,13 +872,14 @@ Running [...]/hurd/ld/testsuite/ld-xtens
-
- === ld Summary ===
-
- -# of expected passes 616
- -# of expected failures 8
- +# of expected passes 606
- +# of unexpected failures 1
- +# of expected failures 17
- # of untested testcases 6
- /media/data[...]/hurd.build/ld/ld-new 2.21.51.20101124
-
- -Test Run By thomas on Wed Nov 24 12:32:05 2010
- -Native configuration is i686-pc-linux-gnu
- +Test Run By tschwinge on Wed Nov 24 12:36:10 2010
- +Native configuration is i686-unknown-gnu0.3
-
- === gas tests ===
-
-
-
-# Analysis
-
-## `FAIL: static [...]`
-
-The testsuite isn't prepared for using `crt0.o` instead of `crt1.o` depending
-on whether a static or dynamic executable is created. Documented in
-`ld/configure.host`. Perhaps we should finally rewrite this messy code in
-glibc to avoid this difference...
-
-## `FAIL: ld-elf/64ksec`
-
-On the idle grubber, this one takes a few minutes wall time to complete
-successfully ([[I/O system weakness|performance/io_system/binutils_ld_64ksec]],
-so assuming
-some system load variation, the testsuite's timeout may trigger.
-
-## `FAIL: ELF weak [...]`
-
-[[I|tschwinge]] suppose this is due to us having an override w.r.t. weak symbol
-handling in glibc, needed for our external [[libpthread]]. TODO: document
-properly.
diff --git a/open_issues/binutils/testsuite/log_build-diff b/open_issues/binutils/testsuite/log_build-diff
deleted file mode 100644
index b71f5576..00000000
--- a/open_issues/binutils/testsuite/log_build-diff
+++ /dev/null
@@ -1,622 +0,0 @@
---- /dev/fd/63 2010-11-24 12:31:28.065577000 +0100
-+++ /dev/fd/62 2010-11-24 12:31:28.065577000 +0100
-@@ -1,6 +1,6 @@
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether ln works... yes
- checking whether ln -s works... yes
-@@ -99,7 +99,7 @@
- checking for gmsgfmt... /usr/bin/msgfmt
- checking for xgettext... /usr/bin/xgettext
- checking for msgmerge... /usr/bin/msgmerge
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -108,9 +108,9 @@
- checking whether we are using the GNU C compiler... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to accept ISO C89... none needed
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking for library containing strerror... none required
- checking how to run the C preprocessor... gcc -E
- checking for grep that handles long lines and -e... /bin/grep
-@@ -217,11 +217,11 @@
- checking whether to enable maintainer-specific portions of Makefiles... no
- checking for makeinfo... makeinfo --split-size=5000000
- checking for perl... perl
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-ranlib... ranlib
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -276,12 +276,12 @@
- checking for sys/sysinfo.h... yes
- checking for machine/hal_sysinfo.h... no
- checking for sys/table.h... no
--checking for sys/sysctl.h... yes
-+checking for sys/sysctl.h... no
- checking for sys/systemcfg.h... no
- checking for stdint.h... (cached) yes
- checking for stdio_ext.h... yes
- checking for process.h... no
--checking for sys/prctl.h... yes
-+checking for sys/prctl.h... no
- checking for sys/wait.h that is POSIX.1 compatible... yes
- checking whether time.h and sys/time.h may both be included... yes
- checking whether errno must be declared... no
-@@ -351,13 +351,13 @@
- checking for working fork... yes
- checking for working vfork... (cached) yes
- checking for _doprnt... no
--checking for sys_errlist... yes
--checking for sys_nerr... yes
-+checking for sys_errlist... no
-+checking for sys_nerr... no
- checking for sys_siglist... yes
- checking for external symbol _system_configuration... no
- checking for __fsetlocking... yes
- checking for canonicalize_file_name... yes
--checking for dup3... yes
-+checking for dup3... no
- checking for getrusage... yes
- checking for getsysinfo... no
- checking for gettimeofday... (cached) yes
-@@ -372,7 +372,7 @@
- checking for strerror... yes
- checking for strsignal... yes
- checking for sysconf... yes
--checking for sysctl... yes
-+checking for sysctl... no
- checking for sysmp... no
- checking for table... no
- checking for times... yes
-@@ -406,10 +406,10 @@
- mkdir -p -- ./bfd
- Configuring in ./bfd
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -426,9 +426,9 @@
- checking whether make sets $(MAKE)... yes
- checking for style of include used by make... GNU
- checking dependency style of gcc... gcc3
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-ranlib... ranlib
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -457,34 +457,34 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... (cached) ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... (cached) ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
-+checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking for shl_load... no
- checking for shl_load in -ldld... no
- checking for dlopen... no
- checking for dlopen in -ldl... yes
- checking whether a program can dlopen itself... yes
--checking whether a statically linked program can dlopen itself... no
-+checking whether a statically linked program can dlopen itself... yes
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... no
-@@ -567,22 +567,22 @@
- checking sys/procfs.h usability... yes
- checking sys/procfs.h presence... yes
- checking for sys/procfs.h... yes
--checking for prstatus_t in sys/procfs.h... yes
-+checking for prstatus_t in sys/procfs.h... no
- checking for prstatus32_t in sys/procfs.h... no
- checking for prstatus_t.pr_who in sys/procfs.h... no
- checking for prstatus32_t.pr_who in sys/procfs.h... no
--checking for pstatus_t in sys/procfs.h... no
-+checking for pstatus_t in sys/procfs.h... yes
- checking for pxstatus_t in sys/procfs.h... no
- checking for pstatus32_t in sys/procfs.h... no
--checking for prpsinfo_t in sys/procfs.h... yes
-+checking for prpsinfo_t in sys/procfs.h... no
- checking for prpsinfo32_t in sys/procfs.h... no
--checking for psinfo_t in sys/procfs.h... no
-+checking for psinfo_t in sys/procfs.h... yes
- checking for psinfo32_t in sys/procfs.h... no
--checking for lwpstatus_t in sys/procfs.h... no
-+checking for lwpstatus_t in sys/procfs.h... yes
- checking for lwpxstatus_t in sys/procfs.h... no
- checking for lwpstatus_t.pr_context in sys/procfs.h... no
--checking for lwpstatus_t.pr_reg in sys/procfs.h... no
--checking for lwpstatus_t.pr_fpreg in sys/procfs.h... no
-+checking for lwpstatus_t.pr_reg in sys/procfs.h... yes
-+checking for lwpstatus_t.pr_fpreg in sys/procfs.h... yes
- checking for win32_pstatus_t in sys/procfs.h... no
- checking linker --as-needed support... yes
- checking for cos in -lm... yes
-@@ -597,7 +597,7 @@
- checking for unistd.h... (cached) yes
- checking for getpagesize... (cached) yes
- checking for working mmap... yes
--checking for madvise... yes
-+checking for madvise... no
- checking for mprotect... yes
- configure: updating cache ./config.cache
- configure: creating ./config.status
-@@ -1215,36 +1215,15 @@
- /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../hurd/bfd/dwarf1.c
- libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../hurd/bfd/dwarf1.c -o dwarf1.o
- mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c -o i386linux.lo ../../hurd/bfd/i386linux.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c ../../hurd/bfd/i386linux.c -o i386linux.o
--mv -f .deps/i386linux.Tpo .deps/i386linux.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c -o aout32.lo ../../hurd/bfd/aout32.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c ../../hurd/bfd/aout32.c -o aout32.o
--mv -f .deps/aout32.Tpo .deps/aout32.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c -o pei-i386.lo ../../hurd/bfd/pei-i386.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c ../../hurd/bfd/pei-i386.c -o pei-i386.o
--mv -f .deps/pei-i386.Tpo .deps/pei-i386.Plo
--rm -f peigen.c
--sed -e s/XX/pe/g < ../../hurd/bfd/peXXigen.c > peigen.new
--mv -f peigen.new peigen.c
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c -o peigen.lo peigen.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c peigen.c -o peigen.o
--mv -f .deps/peigen.Tpo .deps/peigen.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c -o cofflink.lo ../../hurd/bfd/cofflink.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c ../../hurd/bfd/cofflink.c -o cofflink.o
--mv -f .deps/cofflink.Tpo .deps/cofflink.Plo
- /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c -o elf32-gen.lo ../../hurd/bfd/elf32-gen.c
- libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c ../../hurd/bfd/elf32-gen.c -o elf32-gen.o
- mv -f .deps/elf32-gen.Tpo .deps/elf32-gen.Plo
- /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c -o cpu-i386.lo ../../hurd/bfd/cpu-i386.c
- libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c ../../hurd/bfd/cpu-i386.c -o cpu-i386.o
- mv -f .deps/cpu-i386.Tpo .deps/cpu-i386.Plo
--/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR='"[...].install/bin"' -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c -o trad-core.lo ../../hurd/bfd/trad-core.c
--libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../hurd/bfd -I. -I../../hurd/bfd -I../../hurd/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...].install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c ../../hurd/bfd/trad-core.c -o trad-core.o
--mv -f .deps/trad-core.Tpo .deps/trad-core.Plo
- rm -f tofiles
- f=""; \
-- for i in elf32-i386.lo elf-ifunc.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo i386linux.lo aout32.lo pei-i386.lo peigen.lo cofflink.lo elf32-gen.lo cpu-i386.lo trad-core.lo ; do \
-+ for i in elf32-i386.lo elf-ifunc.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo elf32-gen.lo cpu-i386.lo ; do \
- case " $f " in \
- *" $i "*) ;; \
- *) f="$f $i" ;; \
-@@ -1254,7 +1233,7 @@
- /bin/bash ../../hurd/bfd/../move-if-change tofiles ofiles
- touch stamp-ofiles
- /bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -release `cat libtool-soversion` -o libbfd.la -rpath [...].install/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles` -lz
--libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o i386linux.o aout32.o pei-i386.o peigen.o cofflink.o elf32-gen.o cpu-i386.o trad-core.o
-+libtool: link: ar rc .libs/libbfd.a archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o elf32-gen.o cpu-i386.o
- libtool: link: ranlib .libs/libbfd.a
- libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
- libtooldir=`/bin/bash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
-@@ -1270,10 +1249,10 @@
- mkdir -p -- ./opcodes
- Configuring in ./opcodes
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -1290,7 +1269,7 @@
- checking whether make sets $(MAKE)... yes
- checking for style of include used by make... GNU
- checking dependency style of gcc... gcc3
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1311,8 +1290,8 @@
- checking minix/config.h presence... no
- checking for minix/config.h... no
- checking whether it is safe to define __EXTENSIONS__... yes
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking how to print strings... printf
- checking for a sed that does not truncate output... /bin/sed
- checking for fgrep... /bin/grep -F
-@@ -1321,27 +1300,27 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... (cached) ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... (cached) ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
-+checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -1445,10 +1424,10 @@
- mkdir -p -- ./binutils
- Configuring in ./binutils
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -1465,7 +1444,7 @@
- checking whether make sets $(MAKE)... yes
- checking for style of include used by make... GNU
- checking dependency style of gcc... gcc3
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1496,28 +1475,28 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -1537,7 +1516,7 @@
- checking for xgettext... /usr/bin/xgettext
- checking for msgmerge... /usr/bin/msgmerge
- checking whether to enable maintainer-specific portions of Makefiles... no
--checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
-+checking for i686-unknown-gnu0.3-ranlib... (cached) ranlib
- checking for string.h... (cached) yes
- checking for strings.h... (cached) yes
- checking for stdlib.h... (cached) yes
-@@ -1912,10 +1891,10 @@
- mkdir -p -- ./gas
- Configuring in ./gas
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -1932,7 +1911,7 @@
- checking whether make sets $(MAKE)... yes
- checking for style of include used by make... GNU
- checking dependency style of gcc... gcc3
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -1963,28 +1942,28 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -2164,10 +2143,10 @@
- mkdir -p -- ./gprof
- Configuring in ./gprof
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -2184,7 +2163,7 @@
- checking whether make sets $(MAKE)... yes
- checking for style of include used by make... GNU
- checking dependency style of gcc... gcc3
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -2215,28 +2194,28 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -2397,10 +2376,10 @@
- mkdir -p -- ./ld
- Configuring in ./ld
- configure: creating cache ./config.cache
--checking build system type... i686-pc-linux-gnu
--checking host system type... i686-pc-linux-gnu
--checking target system type... i686-pc-linux-gnu
--checking for i686-pc-linux-gnu-gcc... gcc
-+checking build system type... i686-unknown-gnu0.3
-+checking host system type... i686-unknown-gnu0.3
-+checking target system type... i686-unknown-gnu0.3
-+checking for i686-unknown-gnu0.3-gcc... gcc
- checking for C compiler default output file name... a.out
- checking whether the C compiler works... yes
- checking whether we are cross compiling... no
-@@ -2422,7 +2401,7 @@
- checking for grep that handles long lines and -e... /bin/grep
- checking for egrep... /bin/grep -E
- Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
--checking for i686-pc-linux-gnu-gcc... (cached) gcc
-+checking for i686-unknown-gnu0.3-gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
-@@ -2450,28 +2429,28 @@
- checking for BSD- or MS-compatible name lister (nm)... nm
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
--checking the maximum length of command line arguments... 805306365
-+checking the maximum length of command line arguments... -1
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for ld option to reload object files... -r
--checking for i686-pc-linux-gnu-objdump... objdump
-+checking for i686-unknown-gnu0.3-objdump... objdump
- checking how to recognize dependent libraries... pass_all
--checking for i686-pc-linux-gnu-ar... ar
--checking for i686-pc-linux-gnu-strip... no
-+checking for i686-unknown-gnu0.3-ar... ar
-+checking for i686-unknown-gnu0.3-strip... no
- checking for strip... strip
--checking for i686-pc-linux-gnu-ranlib... ranlib
-+checking for i686-unknown-gnu0.3-ranlib... ranlib
- checking command to parse nm output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
--checking if gcc static flag -static works... yes
-+checking if gcc static flag -static works... no
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (ld) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
--checking dynamic linker characteristics... GNU/Linux ld.so
-+checking dynamic linker characteristics... gnu0.3 ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
-@@ -2554,13 +2533,13 @@
- /bin/bash ../../hurd/ld/../ylwrap ../../hurd/ld/ldgram.y y.tab.c ldgram.c y.tab.h ldgram.h y.output ldgram.output -- bison -y -d
- updating ldgram.h
- (echo "/* This file is automatically generated. DO NOT EDIT! */";\
-- for f in `echo " " eelf_i386.o ei386linux.o "" \
-+ for f in `echo " " eelf_i386.o "" \
- | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
- echo "extern ld_emulation_xfer_type ld_${f}_emulation;"; \
- done;\
- echo "";\
- echo "#define EMULATION_LIST \\";\
-- for f in `echo " " eelf_i386.o ei386linux.o "" \
-+ for f in `echo " " eelf_i386.o "" \
- | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
- echo " &ld_${f}_emulation, \\"; \
- done;\
-@@ -2647,8 +2626,8 @@
- mv -f .deps/ldctor.Tpo .deps/ldctor.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
- -DDEFAULT_EMULATION='"elf_i386"' \
-- -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-pc-linux-gnu/bin"' \
-- -DTARGET='"i686-pc-linux-gnu"' -DTARGET_SYSTEM_ROOT=\"\" \
-+ -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-unknown-gnu0.3/bin"' \
-+ -DTARGET='"i686-unknown-gnu0.3"' -DTARGET_SYSTEM_ROOT=\"\" \
- ../../hurd/ld/ldmain.c
- mv -f .deps/ldmain.Tpo .deps/ldmain.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldwrite.o -MD -MP -MF .deps/ldwrite.Tpo -c -o ldwrite.o ../../hurd/ld/ldwrite.c
-@@ -2662,7 +2641,7 @@
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmisc.o -MD -MP -MF .deps/ldmisc.Tpo -c -o ldmisc.o ../../hurd/ld/ldmisc.c
- mv -f .deps/ldmisc.Tpo .deps/ldmisc.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
-- -DSCRIPTDIR='"[...].install/i686-pc-linux-gnu/lib"' -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-pc-linux-gnu/bin"' \
-+ -DSCRIPTDIR='"[...].install/i686-unknown-gnu0.3/lib"' -DBINDIR='"[...].install/bin"' -DTOOLBINDIR='"[...].install/i686-unknown-gnu0.3/bin"' \
- ../../hurd/ld/ldfile.c
- mv -f .deps/ldfile.Tpo .deps/ldfile.Po
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldcref.o -MD -MP -MF .deps/ldcref.Tpo -c -o ldcref.o ../../hurd/ld/ldcref.c
-@@ -2670,14 +2649,11 @@
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../hurd/ld/plugin.c
- mv -f .deps/plugin.Tpo .deps/plugin.Po
- cp ../../hurd/ld/emultempl/astring.sed stringify.sed
--LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-pc-linux-gnu"
-+LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-unknown-gnu0.3 i686-unknown-gnu0.3 i686-unknown-gnu0.3 "elf_i386" "/usr/local/lib /lib /usr/lib" no elf_i386 "i686-unknown-gnu0.3"
- gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT eelf_i386.o -MD -MP -MF .deps/eelf_i386.Tpo -c -o eelf_i386.o eelf_i386.c
- mv -f .deps/eelf_i386.Tpo .deps/eelf_i386.Po
--LIB_PATH='' /bin/bash ../../hurd/ld/genscripts.sh "../../hurd/ld" "[...].install/lib" "[...].install" "[...].install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386" "/usr/local/lib /lib /usr/lib" no i386linux "i686-pc-linux-gnuaout"
--gcc -DHAVE_CONFIG_H -I. -I../../hurd/ld -I. -I../../hurd/ld -I../bfd -I../../hurd/ld/../bfd -I../../hurd/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...].install/share/locale\"" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ei386linux.o -MD -MP -MF .deps/ei386linux.Tpo -c -o ei386linux.o ei386linux.c
--mv -f .deps/ei386linux.Tpo .deps/ei386linux.Po
--/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
--libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
-+/bin/bash ./libtool --tag=CC --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/libbfd.la ../libiberty/libiberty.a -lz -ldl
-+libtool: link: gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
- touch ld.1
- perl ../../hurd/ld/../etc/texi2pod.pl -I ../../hurd/ld -I ../../hurd/ld/../bfd/doc -I ../bfd/doc -I ../../hurd/ld/../libiberty -Dman < ../../hurd/ld/ld.texinfo > ld.pod
- (pod2man --center="GNU Development Tools" --release="binutils-2.21.51" --section=1 ld.pod | \
diff --git a/open_issues/binutils/testsuite/sum_hurd b/open_issues/binutils/testsuite/sum_hurd
deleted file mode 100644
index cf673575..00000000
--- a/open_issues/binutils/testsuite/sum_hurd
+++ /dev/null
@@ -1,1318 +0,0 @@
-Test Run By tschwinge on Wed Nov 24 12:33:09 2010
-Native configuration is i686-unknown-gnu0.3
-
- === binutils tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/binutils/testsuite/binutils-all/ar.exp ...
-PASS: ar long file names
-PASS: ar symbol table
-PASS: ar thin archive
-PASS: ar thin archive with nested archive
-PASS: ar argument parsing
-PASS: ar deterministic archive
-PASS: ar unique symbol in archive
-Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/compress.exp ...
-PASS: objcopy (objcopy compress debug sections)
-PASS: objcopy (objcopy decompress compressed debug sections)
-PASS: objcopy decompress debug sections in archive
-PASS: objcopy compress debug sections in archive
-Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
-UNSUPPORTED: Update ELF header 1
-PASS: Update ELF header 2
-PASS: Update ELF header 3
-Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
-PASS: objcopy on compressed debug sections
-PASS: strip on uncompressed debug sections
-PASS: strip on compressed debug sections
-Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
-PASS: nm (no arguments)
-PASS: nm -g
-PASS: nm -P
-Running [...]/hurd/binutils/testsuite/binutils-all/objcopy.exp ...
-PASS: objcopy (simple copy)
-PASS: objcopy --reverse-bytes
-PASS: objcopy -i --interleave-width
-PASS: objcopy -O srec
-PASS: objcopy --set-start
-PASS: objcopy --adjust-start
-PASS: objcopy --adjust-vma
-PASS: objcopy --adjust-section-vma +
-PASS: objcopy --adjust-section-vma =
-PASS: strip
-PASS: strip with saving a symbol
-PASS: simple objcopy of executable
-PASS: run objcopy of executable
-PASS: run stripped executable
-PASS: run stripped executable with saving a symbol
-PASS: keep only debug data
-PASS: simple objcopy of debug data
-PASS: objcopy (ELF unknown section type)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: copy removing group member
-PASS: copy with setting section flags 1
-PASS: add notes section
-PASS: copy with setting section flags 2
-PASS: copy with setting section flags 3
-PASS: strip --strip-unneeded on common symbol
-PASS: strip with section group 1
-PASS: strip with section group 2
-PASS: strip empty file
-PASS: strip with section group 4
-PASS: strip with section group 5
-PASS: strip with section group 6
-PASS: strip with section group 7
-PASS: strip with section group 8
-PASS: strip with section group 9
-PASS: strip on STB_GNU_UNIQUE
-PASS: objcopy keeps symbols needed by relocs
-PASS: --localize-hidden test 1
-PASS: unordered .debug_info references to .debug_ranges
-UNSUPPORTED: unordered .debug_info references to .debug_ranges
-PASS: objcopy add-section
-PASS: objcopy add-empty-section
-PASS: objcopy on sections with SHF_EXCLUDE
-PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
-PASS: --localize-hidden test 2
-Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
-PASS: objdump -i
-PASS: objdump -f
-PASS: objdump -h
-PASS: objdump -t
-PASS: objdump -r
-PASS: objdump -s
-PASS: objdump -s -j .zdebug_abbrev
-PASS: objdump -W
-Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
-PASS: finding out ELF size with readelf -h
-PASS: readelf -h
-PASS: readelf -S
-PASS: readelf -s
-PASS: readelf -r
-PASS: readelf -wi
-PASS: readelf -wa (compressed)
-PASS: readelf -p
-Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
-PASS: size (no arguments)
-PASS: size -A
-Running [...]/hurd/binutils/testsuite/binutils-all/vax/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/windres/windres.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
-
- === binutils Summary ===
-
-# of expected passes 83
-# of unsupported tests 2
-Test Run By tschwinge on Wed Nov 24 12:43:48 2010
-Native configuration is i686-unknown-gnu0.3
-
- === ld tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/ld/testsuite/ld-alpha/alpha.exp ...
-Running [...]/hurd/ld/testsuite/ld-arm/arm-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-auto-import/auto-import.exp ...
-Running [...]/hurd/ld/testsuite/ld-bootstrap/bootstrap.exp ...
-UNTESTED: bootstrap
-UNTESTED: bootstrap with strip
-UNTESTED: bootstrap with --static
-UNTESTED: bootstrap with --traditional-format
-UNTESTED: bootstrap with --no-keep-memory
-UNTESTED: bootstrap with --relax
-Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
-PASS: cdtest
-PASS: cdtest with -Ur
-Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
-PASS: check sections 1
-PASS: check sections 2
-Running [...]/hurd/ld/testsuite/ld-cris/cris.exp ...
-Running [...]/hurd/ld/testsuite/ld-crx/crx.exp ...
-Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
-Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
-Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
-PASS: ld-discard/extern
-PASS: ld-discard/start
-PASS: ld-discard/static
-PASS: ld-discard/zero-range
-PASS: ld-discard/zero-rel
-Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
-PASS: Run with -paudit.so
-PASS: Run with -Paudit.so
-PASS: Run with --depaudit=audit.so
-PASS: Run with shared with --audit
-PASS: Run with shared with --audit
-PASS: Run with -lusesaudit
-PASS: Run with -lusesaudit -lusesaudit2
-Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
-PASS: strip -z max-page-size=0x200000 (maxpage1)
-PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
-PASS: strip -z max-page-size=0x100000 (maxpage1)
-PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
-PASS: strip (maxpage1)
-PASS: strip -shared (maxpage1)
-PASS: objcopy (maxpage1)
-PASS: objcopy -shared (maxpage1)
-PASS: strip -z relro (relro1)
-PASS: strip -z relro -shared (relro1)
-PASS: objcopy -z relro (relro1)
-PASS: objcopy -z relro -shared (relro1)
-PASS: strip -z relro -shared (relro2)
-PASS: objcopy -z relro -shared (relro2)
-PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
-PASS: objcopy (tbss1)
-PASS: objcopy -z relro (tbss1)
-PASS: objcopy -shared (tbss1)
-PASS: objcopy -shared -z relro (tbss1)
-PASS: objcopy -z max-page-size=0x100000 (tbss1)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
-PASS: objcopy (tdata1)
-PASS: objcopy -z relro (tdata1)
-PASS: objcopy -shared (tdata1)
-PASS: objcopy -shared -z relro (tdata1)
-PASS: objcopy -z max-page-size=0x100000 (tdata1)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
-PASS: objcopy (tbss2)
-PASS: objcopy -z relro (tbss2)
-PASS: objcopy -shared (tbss2)
-PASS: objcopy -shared -z relro (tbss2)
-PASS: objcopy -z max-page-size=0x100000 (tbss2)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
-PASS: objcopy (tdata2)
-PASS: objcopy -z relro (tdata2)
-PASS: objcopy -shared (tdata2)
-PASS: objcopy -shared -z relro (tdata2)
-PASS: objcopy -z max-page-size=0x100000 (tdata2)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
-Running [...]/hurd/ld/testsuite/ld-elf/compress.exp ...
-PASS: Build libfoo.so with compressed debug sections
-PASS: Build libbar.so with compressed debug sections
-PASS: Run normal with libfoo.so with compressed debug sections
-Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
-PASS: Build libdwarf1.so
-PASS: Run with libdwarf1.so first
-PASS: Run with libdwarf1.so last
-PASS: Strip -s libdwarf1c.so
-Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
-PASS: Guess the target size from eh-group1size.o
-PASS: Build eh-group1.o
-PASS: Link eh-group.o to eh-group
-Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
-PASS: ld-elf/commonpage1
-PASS: ld-elf/compress1a
-PASS: ld-elf/compress1b
-PASS: ld-elf/compress1c
-PASS: ld-elf/discard1
-PASS: ld-elf/discard2
-PASS: ld-elf/discard3
-PASS: ld-elf/dynsym1
-PASS: ld-elf/eh-frame-hdr
-PASS: ld-elf/eh5
-PASS: ld-elf/eh6
-PASS: ld-elf/empty
-PASS: ld-elf/empty2
-PASS: ld-elf/exclude3a
-PASS: ld-elf/exclude3b
-PASS: ld-elf/exclude3c
-PASS: ld-elf/expr1
-PASS: --extract-symbol test 1 (sections)
-PASS: --extract-symbol test 1 (symbols)
-PASS: --set-section-flags test 1 (sections)
-PASS: ld-elf/group1
-PASS: ld-elf/group10
-PASS: ld-elf/group2
-PASS: ld-elf/group3a
-PASS: ld-elf/group3b
-PASS: ld-elf/group4
-PASS: ld-elf/group5
-PASS: ld-elf/group6
-PASS: ld-elf/group7
-PASS: ld-elf/group8a
-PASS: ld-elf/group8b
-PASS: ld-elf/group9a
-PASS: ld-elf/group9b
-PASS: ld-elf/hash
-PASS: ld-elf/header
-PASS: ld-elf/init-fini-arrays
-PASS: ld-elf/linkonce1
-PASS: ld-elf/linkonce2
-PASS: ld-elf/linkoncerdiff
-PASS: ld-elf/loadaddr1
-PASS: ld-elf/loadaddr2
-PASS: ld-elf/loadaddr3a
-PASS: ld-elf/loadaddr3b
-PASS: ld-elf/local1
-PASS: ld-elf/maxpage1
-PASS: ld-elf/maxpage2
-PASS: ld-elf/maxpage3a
-PASS: ld-elf/merge
-PASS: ld-elf/merge2
-PASS: ld-elf/multibss1
-PASS: ld-elf/nobits-1
-PASS: ld-elf/noload-1
-PASS: ld-elf/noload-2
-PASS: ld-elf/noload-3
-PASS: ld-elf/note-1
-PASS: ld-elf/note-2
-PASS: ld-elf/orphan-region
-PASS: ld-elf/orphan
-PASS: ld-elf/orphan2
-PASS: ld-elf/orphan3
-PASS: ld-elf/orphan4
-PASS: ld-elf/overlay
-PASS: ld-elf/pr11304
-PASS: ld-elf/pr349
-PASS: relocatable with script
-PASS: ld-elf/seg
-PASS: ld-elf/stab
-PASS: ld-elf/textaddr1
-PASS: ld-elf/textaddr2
-PASS: ld-elf/textaddr3
-PASS: ld-elf/textaddr4
-PASS: ld-elf/textaddr5
-PASS: ld-elf/textaddr6
-PASS: ld-elf/textaddr7
-PASS: ld-elf/unknown
-PASS: ld-elf/unknown2
-PASS: ld-elf/warn1
-PASS: ld-elf/warn2
-PASS: Weak symbols in dynamic objects 1 (support)
-PASS: Weak symbols in dynamic objects 1 (main test)
-PASS: --gc-sections on tls variable
-PASS: preinit array
-PASS: init array
-PASS: fini array
-XFAIL: static preinit array
-XFAIL: static init array
-XFAIL: static fini array
-Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
-PASS: ld link shared library
-PASS: ld export symbols from archive
-PASS: ld link shared library with --exclude-libs
-PASS: ld exclude symbols from archive - --exclude-libs libexclude
-PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
-PASS: ld exclude symbols from archive - --exclude-libs ALL
-PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
-PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
-PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
-Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
-PASS: read-only .eh_frame section
-PASS: read-only .gcc_except_table section
-Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
-PASS: assignment of ELF sections to segments (same page)
-PASS: assignment of ELF sections to segments (adjacent pages)
-PASS: assignment of ELF sections to segments (disjoint pages)
-Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
-PASS: ld-elf/64ksec-r
-WARNING: program timed out.
-FAIL: ld-elf/64ksec
-Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
-PASS: Build libfoo.so
-PASS: Build versioned libfoo.so
-PASS: Build libbar.so
-PASS: Build warn libbar.so
-PASS: Build hidden libbar.so
-PASS: Build protected libbar.so
-PASS: Build libbar.so with libfoo.so
-PASS: Build libar.so with versioned libfoo.so
-PASS: Build hidden libbar.so with libfoo.so
-PASS: Build hidden libar.so with versioned libfoo.so
-PASS: Build protected libbar.so with libfoo.so
-PASS: Build protected libbar.so with versioned libfoo.so
-PASS: Build libdl1.so
-PASS: Build libdl2a.so with --dynamic-list=dl2.list
-PASS: Build libdl2a.so with --dynamic-list=dl2a.list
-PASS: Build libdl2a.so with --dynamic-list-data
-PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
-PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
-PASS: Build libdl4a.so with --dynamic-list=dl4.list
-PASS: Build libdl4b.so with --dynamic-list-data
-PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
-PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
-PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
-PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
-PASS: Build libdl6a.so
-PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
-PASS: Build libdl6c.so with -Bsymbolic
-PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
-PASS: Build libdata1.so
-PASS: Build libcomm1.o
-PASS: Build libfunc1.so
-PASS: Build libpr9676-1.a
-PASS: Build libpr9676-2.a
-PASS: Build libpr9676-3.so
-PASS: Build libpr9676-4.so
-PASS: Build libpr9676-4a.so
-PASS: Build libpr9679.so
-PASS: Build libpr11138-1.so
-PASS: Build libpr11138-2.o
-PASS: Run normal with libfoo.so
-PASS: Run protected with libfoo.so
-PASS: Run hidden with libfoo.so
-PASS: Run normal with versioned libfoo.so
-PASS: Run warn with versioned libfoo.so
-PASS: Run protected with versioned libfoo.so
-PASS: Run hidden with versioned libfoo.so
-PASS: Run normal libbar.so with libfoo.so
-PASS: Run protected libbar.so with libfoo.so
-PASS: Run hidden libbar.so with libfoo.so
-PASS: Run normal libbar.so with versioned libfoo.so
-PASS: Run protected libbar.so with versioned libfoo.so
-PASS: Run hidden libbar.so with versioned libfoo.so
-PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
-PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
-PASS: Run with libdl2a.so
-PASS: Run with libdl2b.so
-PASS: Run with libdl2c.so
-PASS: Run with libdl4a.so
-PASS: Run with libdl4b.so
-PASS: Run with libdl4c.so
-PASS: Run with libdl4d.so
-PASS: Run with libdl4e.so
-PASS: Run with libdl4f.so
-PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
-PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
-PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
-PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
-PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
-PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
-PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
-PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
-PASS: Run dl6b2 with dlopen on libdl6b.so
-PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
-PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
-PASS: Run with libdata1.so
-PASS: Run with libfunc1.so comm1.o
-PASS: Run with comm1.o libfunc1.so
-PASS: Run with pr11138-2.c libpr11138-1.so
-PASS: Run with libpr11138-1.so pr11138-2.c
-PASS: Build libdl3a.so with --dynamic-list=dl3.list
-PASS: Build libdl3b.so with -Bsymbolic
-PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
-PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
-PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
-PASS: Run with libdl3a.so
-PASS: Run with libdl3c.so
-PASS: Run with libnew1a.so
-PASS: Run with libnew1b.so
-Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
-PASS: tls_common
-Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
-PASS: Build libwrap1a.so
-PASS: Build libwrap1b.so
-PASS: Run with libwrap1a.so and libwrap1b.so
-PASS: Run with libwrap1b.so and libwrap1a.so
-Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
-PASS: --sort-common (descending)
-PASS: --sort-common (ascending)
-PASS: size/aligment change of common symbols (warning 1)
-PASS: size/aligment change of common symbols (change 1)
-PASS: size/aligment change of common symbols (warning 2)
-PASS: size/aligment change of common symbols (change 2)
-Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
-PASS: vers1
-PASS: vers2
-PASS: vers3
-PASS: vers4
-PASS: vers4a
-PASS: vers4b
-PASS: vers5
-PASS: vers6
-PASS: vers7a
-PASS: vers7
-PASS: vers8
-PASS: vers9
-PASS: vers10
-PASS: vers11
-PASS: vers12
-PASS: ar with versioned solib
-PASS: vers14
-PASS: vers15
-PASS: vers16a
-PASS: vers16
-PASS: vers17
-PASS: vers18
-PASS: vers19
-PASS: vers20a
-PASS: vers20
-PASS: vers21
-PASS: vers22a
-PASS: vers22b
-PASS: vers22
-PASS: vers23a
-PASS: vers23b
-PASS: vers23c
-PASS: vers23d
-PASS: vers23
-PASS: vers24a
-PASS: vers24b
-PASS: vers24c
-PASS: vers25a
-PASS: vers25b1
-PASS: vers25b2
-PASS: vers26a
-PASS: vers26b1
-PASS: vers26b2
-PASS: vers26b3
-PASS: vers27a
-PASS: vers27b
-PASS: vers27c1
-PASS: vers27c2
-PASS: vers27d1
-PASS: vers27d2
-PASS: vers27d3
-PASS: vers27d4
-PASS: vers27d5
-PASS: vers28a
-PASS: vers28b
-PASS: vers28c
-PASS: vers29
-PASS: vers30
-PASS: vers31
-PASS: vers32a
-PASS: vers32b
-Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
-PASS: ld-elfvsb/hidden0
-PASS: ld-elfvsb/hidden1
-PASS: ld-elfvsb/hidden2
-PASS: ld-elfvsb/internal0
-PASS: ld-elfvsb/internal1
-PASS: ld-elfvsb/protected0
-PASS: ld-elfvsb/protected1
-PASS: visibility (hidden) (non PIC)
-PASS: visibility (hidden) (non PIC, load offset)
-PASS: visibility (hidden)
-PASS: visibility (hidden) (PIC main, non PIC so)
-PASS: visibility (hidden) (PIC main)
-PASS: visibility (hidden_normal) (non PIC)
-PASS: visibility (hidden_normal) (non PIC, load offset)
-PASS: visibility (hidden_normal)
-PASS: visibility (hidden_normal) (PIC main, non PIC so)
-PASS: visibility (hidden_normal) (PIC main)
-PASS: visibility (hidden_undef) (non PIC)
-PASS: visibility (hidden_undef) (non PIC, load offset)
-PASS: visibility (hidden_undef)
-PASS: visibility (hidden_undef) (PIC main, non PIC so)
-PASS: visibility (hidden_undef) (PIC main)
-PASS: visibility (hidden_undef_def) (non PIC)
-PASS: visibility (hidden_undef_def) (non PIC, load offset)
-PASS: visibility (hidden_undef_def)
-PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
-PASS: visibility (hidden_undef_def) (PIC main)
-PASS: visibility (hidden_weak) (non PIC)
-PASS: visibility (hidden_weak) (non PIC, load offset)
-PASS: visibility (hidden_weak)
-PASS: visibility (hidden_weak) (PIC main, non PIC so)
-PASS: visibility (hidden_weak) (PIC main)
-PASS: visibility (protected) (non PIC)
-PASS: visibility (protected) (non PIC, load offset)
-PASS: visibility (protected)
-PASS: visibility (protected) (PIC main, non PIC so)
-PASS: visibility (protected) (PIC main)
-PASS: visibility (protected_undef) (non PIC)
-PASS: visibility (protected_undef) (non PIC, load offset)
-PASS: visibility (protected_undef)
-PASS: visibility (protected_undef) (PIC main, non PIC so)
-PASS: visibility (protected_undef) (PIC main)
-PASS: visibility (protected_undef_def) (non PIC)
-PASS: visibility (protected_undef_def) (non PIC, load offset)
-PASS: visibility (protected_undef_def)
-PASS: visibility (protected_undef_def) (PIC main, non PIC so)
-PASS: visibility (protected_undef_def) (PIC main)
-PASS: visibility (protected_weak) (non PIC)
-PASS: visibility (protected_weak) (non PIC, load offset)
-PASS: visibility (protected_weak)
-PASS: visibility (protected_weak) (PIC main, non PIC so)
-PASS: visibility (protected_weak) (PIC main)
-PASS: visibility (normal) (non PIC)
-PASS: visibility (normal) (non PIC, load offset)
-PASS: visibility (normal)
-PASS: visibility (normal) (PIC main, non PIC so)
-PASS: visibility (normal) (PIC main)
-PASS: common hidden symbol
-PASS: weak hidden symbol DSO last
-PASS: weak hidden symbol DSO first
-Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
-PASS: ELF DSO weak func first
-PASS: ELF DSO weak func last
-PASS: ELF DSO weak func first DSO
-PASS: ELF DSO weak func last DSO
-PASS: ELF weak func first
-PASS: ELF weak func last
-XFAIL: ELF weak func first DSO
-XFAIL: ELF weak func last DSO
-PASS: ELF DSO weak data first
-PASS: ELF DSO weak data last
-PASS: ELF DSO weak data first DSO
-PASS: ELF DSO weak data last DSO
-PASS: ELF DSO weak data first DSO common
-PASS: ELF DSO weak data last DSO common
-PASS: ELF weak data first
-PASS: ELF weak data last
-PASS: ELF weak data first common
-PASS: ELF weak data last common
-XFAIL: ELF weak data first DSO
-XFAIL: ELF weak data last DSO
-XFAIL: ELF weak data first DSO common
-XFAIL: ELF weak data last DSO common
-PASS: ELF DSO small bar (size)
-PASS: ELF DSO foo with small bar (size)
-PASS: ELF DSO big bar (size)
-PASS: ELF weak size
-PASS: ld-elfweak/size2
-Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/tls.exp ...
-Running [...]/hurd/ld/testsuite/ld-gc/gc.exp ...
-PASS: Check --gc-section
-PASS: Check --gc-section/-q
-PASS: Check --gc-section/-r/-e
-PASS: Check --gc-section/-r/-u
-PASS: --gc-sections -r without -e
-PASS: --gc-sections with note section
-PASS: --gc-sections with __start_
-PASS: --gc-sections with shared library
-Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
-Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
-PASS: TLS -fpic -shared transitions
-PASS: TLS descriptor -fpic -shared transitions
-PASS: Helper shared library
-PASS: TLS -fpic and -fno-pic exec transitions
-PASS: TLS descriptor -fpic and -fno-pic exec transitions
-PASS: TLS -fno-pic -shared
-PASS: TLS with global dynamic and descriptors
-PASS: TLS in debug sections
-PASS: TLS @indntpoff with %eax
-PASS: Reloc section order
-PASS: Basic --emit-relocs support
-PASS: -z combreloc relocation sections
-PASS: TLS GD->LE transition
-PASS: TLS LD->LE transition
-PASS: TLS IE->LE transition
-PASS: Absolute non-overflowing relocs
-PASS: PCREL8 overflow
-PASS: PCREL16 overflow
-PASS: PCREL16 absolute reloc
-PASS: Invalid allocated section
-PASS: --warn-shared-textrel --fatal-warnings
-PASS: TLS GD->LE transition check
-PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
-PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
-PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
-PASS: TLS IE->LE transition check (R_386_TLS_IE)
-PASS: ld-i386/hidden1
-PASS: ld-i386/hidden2
-PASS: ld-i386/hidden3
-PASS: ld-i386/protected1
-PASS: ld-i386/protected2
-PASS: ld-i386/protected3
-PASS: TLS with PIE
-PASS: ld-i386/nogot1
-PASS: ld-i386/nogot2
-PASS: ld-i386/discarded1
-PASS: undefined symbol with compressed debug sections
-Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
-Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
-Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
-PASS: strip (ifunc-4-x86)
-PASS: objcopy (ifunc-4-x86)
-PASS: strip (ifunc-4-local-x86)
-PASS: objcopy (ifunc-4-local-x86)
-Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
-PASS: Building ifunc binaries
-PASS: Checking ifunc binaries
-PASS: ld-ifunc/ifunc-1-local-x86
-PASS: ld-ifunc/ifunc-1-x86
-PASS: ld-ifunc/ifunc-10-i386
-PASS: ld-ifunc/ifunc-11-i386
-PASS: ld-ifunc/ifunc-2-i386
-PASS: ld-ifunc/ifunc-2-local-i386
-PASS: ld-ifunc/ifunc-3a-x86
-PASS: ld-ifunc/ifunc-3b-x86
-PASS: ld-ifunc/ifunc-4-local-x86
-PASS: ld-ifunc/ifunc-4-x86
-PASS: ld-ifunc/ifunc-4a-x86
-PASS: ld-ifunc/ifunc-5a-i386
-PASS: ld-ifunc/ifunc-5a-local-i386
-PASS: ld-ifunc/ifunc-5b-i386
-PASS: ld-ifunc/ifunc-5b-local-i386
-PASS: ld-ifunc/ifunc-5r-local-i386
-PASS: ld-ifunc/ifunc-6a-i386
-PASS: ld-ifunc/ifunc-6b-i386
-PASS: ld-ifunc/ifunc-7a-i386
-PASS: ld-ifunc/ifunc-7b-i386
-PASS: ld-ifunc/ifunc-8-i386
-PASS: ld-ifunc/ifunc-9-x86
-Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
-PASS: -l: test (preparation)
-PASS: -l: test
-Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
-PASS: ld-linkonce/zeroehl32
-Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
-Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
-Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
-Running [...]/hurd/ld/testsuite/ld-mep/mep.exp ...
-Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
-Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-mmix/mmix.exp ...
-Running [...]/hurd/ld/testsuite/ld-mn10300/mn10300.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-compile.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-run.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
-Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
-PASS: weak undefined
-PASS: weak undefined data
-PASS: missing entry symbol
-Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
-PASS: plugin API enabled
-PASS: load plugin
-PASS: fail plugin onload
-PASS: fail plugin allsymbolsread
-PASS: fail plugin cleanup
-PASS: plugin all hooks
-PASS: plugin claimfile lost symbol
-PASS: plugin claimfile replace symbol
-PASS: plugin claimfile resolve symbol
-PASS: plugin claimfile replace file
-PASS: plugin set symbol visibility
-PASS: plugin ignore lib
-PASS: plugin claimfile replace lib
-Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
-Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
-Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
-Running [...]/hurd/ld/testsuite/ld-scripts/align.exp ...
-PASS: align1
-PASS: ld-scripts/align2a
-PASS: ld-scripts/align2b
-PASS: ld-scripts/align2c
-Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
-PASS: ALIGNOF
-Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
-PASS: ASSERT
-Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
-PASS: NOCROSSREFS 1
-PASS: NOCROSSREFS 2
-PASS: NOCROSSREFS 3
-Running [...]/hurd/ld/testsuite/ld-scripts/data.exp ...
-PASS: ld-scripts/data
-Running [...]/hurd/ld/testsuite/ld-scripts/default-script.exp ...
-PASS: ld-scripts/default-script1
-PASS: ld-scripts/default-script2
-PASS: ld-scripts/default-script3
-PASS: ld-scripts/default-script4
-Running [...]/hurd/ld/testsuite/ld-scripts/defined.exp ...
-PASS: DEFINED (PRMS 5699)
-PASS: ld-scripts/defined2
-PASS: ld-scripts/defined3
-Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
-PASS: dynamic sections
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
-PASS: ld-scripts/empty-address-1
-PASS: ld-scripts/empty-address-2a
-PASS: ld-scripts/empty-address-2b
-PASS: ld-scripts/empty-address-3a
-PASS: ld-scripts/empty-address-3b
-PASS: ld-scripts/empty-address-3c
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
-PASS: ld-scripts/empty-aligned
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
-PASS: ld-scripts/empty-orphan
-Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
-PASS: ld-scripts/expr1
-Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
-PASS: EXTERN
-Running [...]/hurd/ld/testsuite/ld-scripts/include.exp ...
-PASS: include-1
-Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
-PASS: map addresses
-Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
-PASS: overlay size
-PASS: overlay size (map check)
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
-PASS: PHDRS
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
-PASS: PHDRS2
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
-PASS: PHDRS headers
-PASS: PHDRS headers 3a
-Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
-PASS: ld-scripts/provide-1
-PASS: ld-scripts/provide-2
-XFAIL: ld-scripts/provide-3
-Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
-PASS: rgn-at1
-PASS: rgn-at2
-PASS: rgn-at3
-PASS: rgn-at4
-PASS: rgn-at5
-Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
-PASS: rgn-over1
-PASS: rgn-over1 (map check)
-PASS: rgn-over2
-PASS: rgn-over2 (map check)
-PASS: rgn-over3
-PASS: rgn-over3 (map check)
-PASS: rgn-over4
-PASS: rgn-over4 (map check)
-PASS: rgn-over5
-PASS: rgn-over5 (map check)
-PASS: rgn-over6
-PASS: rgn-over6 (map check)
-PASS: rgn-over7
-PASS: rgn-over7 (map check)
-PASS: rgn-over8
-Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
-PASS: script
-PASS: MRI script
-PASS: MEMORY
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
-Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
-PASS: ld-scripts/section-match-1
-Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
-PASS: ld-scripts/size-1
-PASS: ld-scripts/size-2
-Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
-PASS: SIZEOF
-Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
-PASS: --sort-section alignment
-PASS: SORT_BY_ALIGNMENT
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
-PASS: --sort-section name
-PASS: SORT_BY_NAME
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_NAME(SORT_BY_NAME())
-PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
-PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
-PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
-PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
-Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
-PASS: weak symbols
-Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
-PASS: Preserve default . = 0
-PASS: Preserve explicit . = 0
-Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
-PASS: selective1
-PASS: selective2
-PASS: selective3
-XFAIL: selective4
-XFAIL: selective5
-XFAIL: selective6
-Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/relax.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
-Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
-PASS: shared (non PIC)
-PASS: shared (non PIC, load offset)
-PASS: shared
-PASS: shared -Bsymbolic
-PASS: shared (PIC main, non PIC so)
-PASS: shared (PIC main)
-Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
-Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
-Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
-PASS: S-records
-PASS: S-records with constructors
-Running [...]/hurd/ld/testsuite/ld-tic6x/tic6x.exp ...
-Running [...]/hurd/ld/testsuite/ld-undefined/entry.exp ...
-PASS: Build libentry.a
-PASS: --entry foo archive
-PASS: --entry foo -u foo archive
-PASS: -shared --entry foo archive
-PASS: -shared --entry foo -u foo archive
-PASS: --entry foo
-PASS: --entry foo -u foo
-PASS: --entry 0x0
-Running [...]/hurd/ld/testsuite/ld-undefined/undefined.exp ...
-PASS: undefined
-PASS: undefined function
-PASS: undefined line
-Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
-PASS: weak undefined symbols
-Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
-Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
-Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/line.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/x86-64.exp ...
-Running [...]/hurd/ld/testsuite/ld-xc16x/xc16x.exp ...
-Running [...]/hurd/ld/testsuite/ld-xstormy16/xstormy16.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/coalesce.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/lcall.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
-
- === ld Summary ===
-
-# of expected passes 606
-# of unexpected failures 1
-# of expected failures 17
-# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101124
-
-Test Run By tschwinge on Wed Nov 24 12:36:10 2010
-Native configuration is i686-unknown-gnu0.3
-
- === gas tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/gas/testsuite/gas/all/gas.exp ...
-PASS: pcrel values in assignment
-PASS: simplifiable double subtraction
-PASS: simplifiable double subtraction (-a)
-PASS: simple FP constants
-PASS: difference of two undefined symbols
-PASS: .equiv for symbol already set to another one
-PASS: .equiv for symbol already set to an expression
-PASS: .equ for symbol already set
-PASS: .equ for symbol already set through .eqv
-PASS: .eqv support
-PASS: .eqv for symbol already set
-PASS: == assignment support
-PASS: == assignment for symbol already set
-PASS: forward references
-PASS: forward expression
-PASS: .equ redefinitions
-PASS: .equ redefinitions (2)
-PASS: .equ redefinitions (3)
-PASS: .set for symbol already used as label
-PASS: .set for symbol already defined through .comm
-PASS: comment.s: comments in listings
-PASS: general info section in listings
-PASS: difference between forward references
-PASS: struct
-PASS: align
-PASS: align2
-PASS: alternate macro syntax
-PASS: alternate macro syntax (escape)
-PASS: evaluation of simple expressions
-PASS: conditional listings
-PASS: incbin
-PASS: assignment tests
-PASS: .sleb128 tests
-PASS: relax .uleb128
-PASS: bad byte directive
-PASS: .quad tests
-PASS: octa bignum
-PASS: weakref tests, relocations
-PASS: weakref tests, global syms
-PASS: weakref tests, local syms
-PASS: weakref tests, strong undefined syms
-PASS: weakref tests, weak undefined syms
-PASS: e: would close weakref loop: e => a => b => c => d => e
-PASS: a: would close weakref loop: a => b => c => d => e => a
-PASS: is already defined
-PASS: .strings tests
-PASS: gas/all/err-1.s (test for errors, line 3)
-PASS: gas/all/err-1.s (test for errors, line 4)
-PASS: gas/all/err-1.s (test for errors, line 5)
-PASS: gas/all/err-1.s (test for errors, line 6)
-PASS: gas/all/err-1.s (test for errors, line 7)
-PASS: gas/all/err-1.s (test for excess errors)
-PASS: gas/all/warn-1.s (test for warnings, line 3)
-PASS: gas/all/warn-1.s (test for errors, line 4)
-PASS: gas/all/warn-1.s (test for warnings, line 5)
-PASS: gas/all/warn-1.s (test for warnings, line 6)
-PASS: gas/all/warn-1.s (test for warnings, line 7)
-PASS: gas/all/warn-1.s (test for excess errors)
-Running [...]/hurd/gas/testsuite/gas/alpha/alpha.exp ...
-Running [...]/hurd/gas/testsuite/gas/arc/arc.exp ...
-Running [...]/hurd/gas/testsuite/gas/arc/warn.exp ...
-Running [...]/hurd/gas/testsuite/gas/arm/arm.exp ...
-Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
-Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
-Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
-PASS: CFI on i386
-PASS: cfi cfi-diag-1
-PASS: CFI common 1
-PASS: CFI common 2
-PASS: CFI common 3
-PASS: CFI common 4
-PASS: CFI common 5
-PASS: CFI common 7
-PASS: CFI common 6
-Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
-Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
-Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
-Running [...]/hurd/gas/testsuite/gas/crx/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/d10v/d10v.exp ...
-Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
-Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
-Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
-PASS: elf ehopt0
-PASS: .file file names
-PASS: group section
-PASS: group section
-PASS: group section name
-PASS: group section with multiple sections of same name
-PASS: group section with multiple sections of same name
-PASS: automatic section group a
-PASS: automatic section group b
-PASS: .equ redefinitions (ELF)
-PASS: elf equate relocs
-PASS: Ill-formed directives
-PASS: elf section0
-PASS: elf section1
-PASS: elf section2 list
-PASS: note section
-PASS: label arithmetic with multiple same-name sections
-PASS: elf section5 list
-PASS: ELF struct
-PASS: .set with expression
-PASS: ELF symbol versioning
-PASS: .set with IFUNC
-PASS: elf type list
-PASS: elf section6
-PASS: elf section7
-PASS: section flags
-PASS: DWARF2 1
-PASS: DWARF2 2
-PASS: DWARF2 3
-PASS: Check bad section flag
-Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
-Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300-coff.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300-elf.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t01_mov.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t02_mova.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t03_add.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t04_sub.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t05_cmp.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t06_ari2.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t07_ari3.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t08_or.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t09_xor.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t10_and.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t11_logs.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t12_bit.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t13_otr.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/basic/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/parse/parse.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/reloc/reloc.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
-Running [...]/hurd/gas/testsuite/gas/i386/i386.exp ...
-PASS: i386 float
-PASS: i386 general
-PASS: i386 inval
-PASS: i386 segment
-PASS: i386 inval-seg
-PASS: i386 inval-reg
-PASS: i386 modrm
-PASS: i386 naked reg
-PASS: i386 opcodes
-PASS: i386 opcodes (Intel disassembly)
-PASS: i386 opcodes (w/ suffix)
-PASS: i386 intel
-PASS: i386 intel16
-PASS: i386 intelbad
-PASS: i386 intel-ok
-PASS: i386 prefix
-PASS: i386 amd
-PASS: i386 katmai
-PASS: i386 jump
-PASS: i386 relax 1
-PASS: i386 relax 2
-PASS: i386 ssemmx2
-PASS: i386 sse2
-PASS: i386 sub
-PASS: i386 SSE3
-PASS: i386 SIB
-PASS: i386 SIB (Intel mode)
-PASS: i386 displacement
-PASS: i386 displacement (Intel mode)
-PASS: i386 32bit displacement
-PASS: i386 VMX
-PASS: i386 SMX
-PASS: i386 suffix
-PASS: i386 immed
-PASS: i386 equates
-PASS: i386 divide
-PASS: i386 padlock
-PASS: i386 cr8+
-PASS: i386 cr-err
-PASS: 32-bit SVME
-PASS: i386 amdfam10
-PASS: i386 SSSE3
-PASS: i386 rep prefix
-PASS: i386 rep prefix (with suffixes)
-PASS: i386 lockable insns
-PASS: i386 lockable insns (Intel disassembly)
-PASS: i386 lockbad-1
-PASS: i386 long insns
-PASS: i386 long insns (Intel disassembly)
-PASS: i386 fp
-PASS: i386 nops
-PASS: i386 nops 16bit 1
-PASS: i386 nops 1
-PASS: i386 -mtune=i386 nops 1
-PASS: i386 nops -march=i386 -mtune=i686 1
-PASS: i386 -mtune=i686 nops 1
-PASS: i386 -mtune=k8 nops 1
-PASS: i386 -mtune=core2 nops 1
-PASS: i386 -mtune=bdver1 nops 1
-PASS: i386 nops 2
-PASS: i386 nops -mtune=i386 2
-PASS: i386 -march=i386 -mtune=core2 nops 2
-PASS: i386 nops 3
-PASS: i386 nops -mtune=i386 3
-PASS: i386 -mtune=i686 nops 3
-PASS: i386 nops 4
-PASS: i386 nops -mtune=i386 4
-PASS: i386 -mtune=i686 nops 4
-PASS: i386 nops 5
-PASS: i386 -march=i686 nops 5
-PASS: i386 16-bit addressing in 32-bit mode.
-PASS: i386 32-bit addressing in 16-bit mode.
-PASS: i386 SSE4.1
-PASS: i386 SSE4.1 (Intel disassembly)
-PASS: i386 SSE4.2
-PASS: i386 SSE4.2 (Intel disassembly)
-PASS: i386 crc32
-PASS: i386 crc32 (Intel disassembly)
-PASS: i386 inval-crc32
-PASS: i386 SIMD
-PASS: i386 SIMD (Intel mode)
-PASS: i386 SIMD (with suffixes)
-PASS: i386 mem
-PASS: i386 mem (Intel mode)
-PASS: i386 reg
-PASS: i386 reg (Intel mode)
-PASS: i386
-PASS: i386 float AT&T mnemonic
-PASS: i386 float Intel mnemonic
-PASS: i386 arch 1
-PASS: i386 arch 2
-PASS: i386 arch 3
-PASS: i386 arch 4
-PASS: i386 arch 5
-PASS: i386 arch 6
-PASS: i386 arch 7
-PASS: i386 arch 9
-PASS: i386 arch 10
-PASS: i386 arch-10-1
-PASS: i386 arch-10-2
-PASS: i386 arch-10-3
-PASS: i386 arch-10-4
-PASS: i386 arch 11
-PASS: i386 arch 12
-PASS: i386 8087
-PASS: i386 287
-PASS: i386 387 (cmdline)
-PASS: i386 no87
-PASS: i386 no87-2
-PASS: i386 xsave
-PASS: i386 xsave (Intel mode)
-PASS: i386 AES
-PASS: i386 AES (Intel mode)
-PASS: i386 PCLMUL
-PASS: i386 PCLMUL (Intel mode)
-PASS: i386 AVX
-PASS: i386 AVX (Intel disassembly)
-PASS: i386 AVX scalar insns
-PASS: i386 AVX scalar insns (Intel disassembly)
-PASS: i386 SSE with AVX encoding
-PASS: i386 inval-avx
-PASS: i386 SSE check (none)
-PASS: i386 SSE check (.sse_check none)
-PASS: i386 SSE check (warning)
-PASS: i386 sse-check-error
-PASS: i386 SSE without AVX equivalent
-PASS: i386 movbe
-PASS: i386 movbe (Intel disassembly)
-PASS: i386 inval-movbe
-PASS: i386 EPT
-PASS: i386 EPT (Intel disassembly)
-PASS: i386 inval-ept
-PASS: i386 arch avx 1
-PASS: i386 arch-avx-1-1
-PASS: i386 arch-avx-1-2
-PASS: i386 arch-avx-1-3
-PASS: i386 arch-avx-1-4
-PASS: i386 arch-avx-1-5
-PASS: i386 arch-avx-1-6
-PASS: encoding option
-PASS: encoding option (Intel mode)
-PASS: encoding option with -msse2avx
-PASS: encoding option with -msse2avx (Intel mode)
-PASS: i386 FMA
-PASS: i386 FMA (Intel disassembly)
-PASS: i386 FMA scalar insns
-PASS: i386 FMA scalar insns (Intel disassembly)
-PASS: i386 FMA4
-PASS: i386 LWP
-PASS: i386 XOP
-PASS: i386 F16C
-PASS: i386 F16C (Intel disassembly)
-PASS: i386 FSGSBase
-PASS: i386 FSGSBase (Intel disassembly)
-PASS: i386 RdRnd
-PASS: i386 RdRnd (Intel disassembly)
-PASS: i386 reloc
-PASS: i386 jump16
-PASS: i386 white
-PASS: i386 pcrel reloc
-PASS: i386 abs reloc
-PASS: i386 intelpic
-PASS: i386 relax
-PASS: i386 gotpc
-PASS: i386 dynamic tls
-PASS: i386 pic tls
-PASS: i386 non-pic tls
-PASS: i386 .bss
-PASS: i386 relocs
-PASS: i386 reloc32
-PASS: x86 mixed mode relocs (32-bit object)
-PASS: i386 AT&T register names
-PASS: i386 intel-got
-PASS: i386 Intel register names
-PASS: i386 inval-equ-1
-PASS: i386 inval-equ-2
-PASS: i386 ifunc
-PASS: i386 l1om-inval
-PASS: i386 local PIC
-PASS: DWARF2 debugging information 1
-PASS: DWARF2 debugging information 2
-PASS: x86 Intel expressions
-PASS: string insn operands
-PASS: i386 string-bad
-PASS: i386 space1
-PASS: i386 list-1
-PASS: i386 list-2
-PASS: i386 list-3
-PASS: DWARF2 debugging information 1
-Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
-Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
-Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/load-hazards.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/odd-ldw.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/odd-sdw.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
-Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
-PASS: lns lns-diag-1
-PASS: lns-duplicate
-PASS: lns-common-1
-Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32r2.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32rx.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/pic.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/rel32.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68hc11/m68hc11.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68k-coff/gas.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68k/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/macros/macros.exp ...
-PASS: macro test 1
-PASS: macro test 2
-PASS: macro test 3
-PASS: macro irp
-PASS: macro rept
-PASS: nested irp/irpc/rept
-PASS: macro vararg
-PASS: macro infinite recursion
-PASS: logical and in macro definition
-PASS: semi
-PASS: strings
-PASS: APP with macro without NO_APP
-PASS: APP with macro then NO_APP
-PASS: APP with macro then NO_APP then more code
-PASS: included file with .if 0 wrapped in APP/NO_APP, no final NO_APP, macro in main file
-PASS: macros badarg
-PASS: macros dot
-PASS: macros end
-PASS: macros purge
-PASS: macros redef
-PASS: gas/macros/paren
-PASS: .exitm outside of a macro
-Running [...]/hurd/gas/testsuite/gas/mcore/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/mep/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/mep/complex-relocs.exp ...
-Running [...]/hurd/gas/testsuite/gas/mips/mips.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix-err.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix-list.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix.exp ...
-Running [...]/hurd/gas/testsuite/gas/mn10200/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/mn10300/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/mri/mri.exp ...
-Running [...]/hurd/gas/testsuite/gas/msp430/msp430.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/errors.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/mt.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/relocs.exp ...
-Running [...]/hurd/gas/testsuite/gas/openrisc/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/pdp11/pdp11.exp ...
-Running [...]/hurd/gas/testsuite/gas/pe/pe.exp ...
-Running [...]/hurd/gas/testsuite/gas/pj/pj.exp ...
-Running [...]/hurd/gas/testsuite/gas/ppc/aix.exp ...
-Running [...]/hurd/gas/testsuite/gas/ppc/ppc.exp ...
-Running [...]/hurd/gas/testsuite/gas/rx/rx.exp ...
-Running [...]/hurd/gas/testsuite/gas/s390/s390.exp ...
-Running [...]/hurd/gas/testsuite/gas/score/relax.exp ...
-Running [...]/hurd/gas/testsuite/gas/score/relax_32.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/arch/arch.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/err.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/sh64/err.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/sh64/sh64.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc-solaris/addend.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc-solaris/gas.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc/mismatch.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
-Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
-Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
-PASS: symver symver0
-PASS: symver symver1
-PASS: symver symver2
-PASS: symver symver3
-PASS: symver symver6
-Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
-Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
-Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
-Running [...]/hurd/gas/testsuite/gas/v850/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/vax/vax.exp ...
-Running [...]/hurd/gas/testsuite/gas/xc16x/xc16x.exp ...
-Running [...]/hurd/gas/testsuite/gas/xstormy16/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/xtensa/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/xtensa/xtensa-err.exp ...
-Running [...]/hurd/gas/testsuite/gas/z80/z80.exp ...
-Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
-
- === gas Summary ===
-
-# of expected passes 316
-../as-new 2.21.51.20101124
-
diff --git a/open_issues/binutils/testsuite/sum_linux b/open_issues/binutils/testsuite/sum_linux
deleted file mode 100644
index 883afec0..00000000
--- a/open_issues/binutils/testsuite/sum_linux
+++ /dev/null
@@ -1,1316 +0,0 @@
-Test Run By thomas on Wed Nov 24 12:32:00 2010
-Native configuration is i686-pc-linux-gnu
-
- === binutils tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/binutils/testsuite/binutils-all/ar.exp ...
-PASS: ar long file names
-PASS: ar symbol table
-PASS: ar thin archive
-PASS: ar thin archive with nested archive
-PASS: ar argument parsing
-PASS: ar deterministic archive
-PASS: ar unique symbol in archive
-Running [...]/hurd/binutils/testsuite/binutils-all/arm/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/bfin/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/compress.exp ...
-PASS: objcopy (objcopy compress debug sections)
-PASS: objcopy (objcopy decompress compressed debug sections)
-PASS: objcopy decompress debug sections in archive
-PASS: objcopy compress debug sections in archive
-Running [...]/hurd/binutils/testsuite/binutils-all/dlltool.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/elfedit.exp ...
-UNSUPPORTED: Update ELF header 1
-PASS: Update ELF header 2
-PASS: Update ELF header 3
-Running [...]/hurd/binutils/testsuite/binutils-all/hppa/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/i386/i386.exp ...
-PASS: objcopy on compressed debug sections
-PASS: strip on uncompressed debug sections
-PASS: strip on compressed debug sections
-Running [...]/hurd/binutils/testsuite/binutils-all/m68k/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/nm.exp ...
-PASS: nm (no arguments)
-PASS: nm -g
-PASS: nm -P
-Running [...]/hurd/binutils/testsuite/binutils-all/objcopy.exp ...
-PASS: objcopy (simple copy)
-PASS: objcopy --reverse-bytes
-PASS: objcopy -i --interleave-width
-PASS: objcopy -O srec
-PASS: objcopy --set-start
-PASS: objcopy --adjust-start
-PASS: objcopy --adjust-vma
-PASS: objcopy --adjust-section-vma +
-PASS: objcopy --adjust-section-vma =
-PASS: strip
-PASS: strip with saving a symbol
-PASS: simple objcopy of executable
-PASS: run objcopy of executable
-PASS: run stripped executable
-PASS: run stripped executable with saving a symbol
-PASS: keep only debug data
-PASS: simple objcopy of debug data
-PASS: objcopy (ELF unknown section type)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: objcopy (ELF group)
-PASS: copy removing group member
-PASS: copy with setting section flags 1
-PASS: add notes section
-PASS: copy with setting section flags 2
-PASS: copy with setting section flags 3
-PASS: strip --strip-unneeded on common symbol
-PASS: strip with section group 1
-PASS: strip with section group 2
-PASS: strip empty file
-PASS: strip with section group 4
-PASS: strip with section group 5
-PASS: strip with section group 6
-PASS: strip with section group 7
-PASS: strip with section group 8
-PASS: strip with section group 9
-PASS: strip on STB_GNU_UNIQUE
-PASS: objcopy keeps symbols needed by relocs
-PASS: --localize-hidden test 1
-PASS: unordered .debug_info references to .debug_ranges
-UNSUPPORTED: unordered .debug_info references to .debug_ranges
-PASS: objcopy add-section
-PASS: objcopy add-empty-section
-PASS: objcopy on sections with SHF_EXCLUDE
-PASS: strip --strip-unneeded on sections with SHF_EXCLUDE
-PASS: --localize-hidden test 2
-Running [...]/hurd/binutils/testsuite/binutils-all/objdump.exp ...
-PASS: objdump -i
-PASS: objdump -f
-PASS: objdump -h
-PASS: objdump -t
-PASS: objdump -r
-PASS: objdump -s
-PASS: objdump -s -j .zdebug_abbrev
-PASS: objdump -W
-Running [...]/hurd/binutils/testsuite/binutils-all/readelf.exp ...
-PASS: finding out ELF size with readelf -h
-PASS: readelf -h
-PASS: readelf -S
-PASS: readelf -s
-PASS: readelf -r
-PASS: readelf -wi
-PASS: readelf -wa (compressed)
-PASS: readelf -p
-Running [...]/hurd/binutils/testsuite/binutils-all/size.exp ...
-PASS: size (no arguments)
-PASS: size -A
-Running [...]/hurd/binutils/testsuite/binutils-all/vax/objdump.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/windres/windres.exp ...
-Running [...]/hurd/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...
-
- === binutils Summary ===
-
-# of expected passes 83
-# of unsupported tests 2
-Test Run By thomas on Wed Nov 24 12:32:23 2010
-Native configuration is i686-pc-linux-gnu
-
- === ld tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/ld/testsuite/ld-alpha/alpha.exp ...
-Running [...]/hurd/ld/testsuite/ld-arm/arm-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-auto-import/auto-import.exp ...
-Running [...]/hurd/ld/testsuite/ld-bootstrap/bootstrap.exp ...
-UNTESTED: bootstrap
-UNTESTED: bootstrap with strip
-UNTESTED: bootstrap with --static
-UNTESTED: bootstrap with --traditional-format
-UNTESTED: bootstrap with --no-keep-memory
-UNTESTED: bootstrap with --relax
-Running [...]/hurd/ld/testsuite/ld-cdtest/cdtest.exp ...
-PASS: cdtest
-PASS: cdtest with -Ur
-Running [...]/hurd/ld/testsuite/ld-checks/checks.exp ...
-PASS: check sections 1
-PASS: check sections 2
-Running [...]/hurd/ld/testsuite/ld-cris/cris.exp ...
-Running [...]/hurd/ld/testsuite/ld-crx/crx.exp ...
-Running [...]/hurd/ld/testsuite/ld-cygwin/exe-export.exp ...
-Running [...]/hurd/ld/testsuite/ld-d10v/d10v.exp ...
-Running [...]/hurd/ld/testsuite/ld-discard/discard.exp ...
-PASS: ld-discard/extern
-PASS: ld-discard/start
-PASS: ld-discard/static
-PASS: ld-discard/zero-range
-PASS: ld-discard/zero-rel
-Running [...]/hurd/ld/testsuite/ld-elf/audit.exp ...
-PASS: Run with -paudit.so
-PASS: Run with -Paudit.so
-PASS: Run with --depaudit=audit.so
-PASS: Run with shared with --audit
-PASS: Run with shared with --audit
-PASS: Run with -lusesaudit
-PASS: Run with -lusesaudit -lusesaudit2
-Running [...]/hurd/ld/testsuite/ld-elf/binutils.exp ...
-PASS: strip -z max-page-size=0x200000 (maxpage1)
-PASS: strip -z max-page-size=0x200000 -z common-page-size=0x100000 (maxpage1)
-PASS: strip -z max-page-size=0x100000 (maxpage1)
-PASS: strip -z max-page-size=0x100000 -z common-page-size=0x1000 (maxpage1)
-PASS: strip (maxpage1)
-PASS: strip -shared (maxpage1)
-PASS: objcopy (maxpage1)
-PASS: objcopy -shared (maxpage1)
-PASS: strip -z relro (relro1)
-PASS: strip -z relro -shared (relro1)
-PASS: objcopy -z relro (relro1)
-PASS: objcopy -z relro -shared (relro1)
-PASS: strip -z relro -shared (relro2)
-PASS: objcopy -z relro -shared (relro2)
-PASS: strip -T [...]/hurd/ld/testsuite/ld-elf/lma.lnk (lma)
-PASS: objcopy (tbss1)
-PASS: objcopy -z relro (tbss1)
-PASS: objcopy -shared (tbss1)
-PASS: objcopy -shared -z relro (tbss1)
-PASS: objcopy -z max-page-size=0x100000 (tbss1)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss1)
-PASS: objcopy (tdata1)
-PASS: objcopy -z relro (tdata1)
-PASS: objcopy -shared (tdata1)
-PASS: objcopy -shared -z relro (tdata1)
-PASS: objcopy -z max-page-size=0x100000 (tdata1)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata1)
-PASS: objcopy (tbss2)
-PASS: objcopy -z relro (tbss2)
-PASS: objcopy -shared (tbss2)
-PASS: objcopy -shared -z relro (tbss2)
-PASS: objcopy -z max-page-size=0x100000 (tbss2)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tbss2)
-PASS: objcopy (tdata2)
-PASS: objcopy -z relro (tdata2)
-PASS: objcopy -shared (tdata2)
-PASS: objcopy -shared -z relro (tdata2)
-PASS: objcopy -z max-page-size=0x100000 (tdata2)
-PASS: objcopy -z max-page-size=0x100000 -z common-page-size=0x1000 (tdata2)
-Running [...]/hurd/ld/testsuite/ld-elf/compress.exp ...
-PASS: Build libfoo.so with compressed debug sections
-PASS: Build libbar.so with compressed debug sections
-PASS: Run normal with libfoo.so with compressed debug sections
-Running [...]/hurd/ld/testsuite/ld-elf/dwarf.exp ...
-PASS: Build libdwarf1.so
-PASS: Run with libdwarf1.so first
-PASS: Run with libdwarf1.so last
-PASS: Strip -s libdwarf1c.so
-Running [...]/hurd/ld/testsuite/ld-elf/eh-group.exp ...
-PASS: Guess the target size from eh-group1size.o
-PASS: Build eh-group1.o
-PASS: Link eh-group.o to eh-group
-Running [...]/hurd/ld/testsuite/ld-elf/elf.exp ...
-PASS: ld-elf/commonpage1
-PASS: ld-elf/compress1a
-PASS: ld-elf/compress1b
-PASS: ld-elf/compress1c
-PASS: ld-elf/discard1
-PASS: ld-elf/discard2
-PASS: ld-elf/discard3
-PASS: ld-elf/dynsym1
-PASS: ld-elf/eh-frame-hdr
-PASS: ld-elf/eh5
-PASS: ld-elf/eh6
-PASS: ld-elf/empty
-PASS: ld-elf/empty2
-PASS: ld-elf/exclude3a
-PASS: ld-elf/exclude3b
-PASS: ld-elf/exclude3c
-PASS: ld-elf/expr1
-PASS: --extract-symbol test 1 (sections)
-PASS: --extract-symbol test 1 (symbols)
-PASS: --set-section-flags test 1 (sections)
-PASS: ld-elf/group1
-PASS: ld-elf/group10
-PASS: ld-elf/group2
-PASS: ld-elf/group3a
-PASS: ld-elf/group3b
-PASS: ld-elf/group4
-PASS: ld-elf/group5
-PASS: ld-elf/group6
-PASS: ld-elf/group7
-PASS: ld-elf/group8a
-PASS: ld-elf/group8b
-PASS: ld-elf/group9a
-PASS: ld-elf/group9b
-PASS: ld-elf/hash
-PASS: ld-elf/header
-PASS: ld-elf/init-fini-arrays
-PASS: ld-elf/linkonce1
-PASS: ld-elf/linkonce2
-PASS: ld-elf/linkoncerdiff
-PASS: ld-elf/loadaddr1
-PASS: ld-elf/loadaddr2
-PASS: ld-elf/loadaddr3a
-PASS: ld-elf/loadaddr3b
-PASS: ld-elf/local1
-PASS: ld-elf/maxpage1
-PASS: ld-elf/maxpage2
-PASS: ld-elf/maxpage3a
-PASS: ld-elf/merge
-PASS: ld-elf/merge2
-PASS: ld-elf/multibss1
-PASS: ld-elf/nobits-1
-PASS: ld-elf/noload-1
-PASS: ld-elf/noload-2
-PASS: ld-elf/noload-3
-PASS: ld-elf/note-1
-PASS: ld-elf/note-2
-PASS: ld-elf/orphan-region
-PASS: ld-elf/orphan
-PASS: ld-elf/orphan2
-PASS: ld-elf/orphan3
-PASS: ld-elf/orphan4
-PASS: ld-elf/overlay
-PASS: ld-elf/pr11304
-PASS: ld-elf/pr349
-PASS: relocatable with script
-PASS: ld-elf/seg
-PASS: ld-elf/stab
-PASS: ld-elf/textaddr1
-PASS: ld-elf/textaddr2
-PASS: ld-elf/textaddr3
-PASS: ld-elf/textaddr4
-PASS: ld-elf/textaddr5
-PASS: ld-elf/textaddr6
-PASS: ld-elf/textaddr7
-PASS: ld-elf/unknown
-PASS: ld-elf/unknown2
-PASS: ld-elf/warn1
-PASS: ld-elf/warn2
-PASS: Weak symbols in dynamic objects 1 (support)
-PASS: Weak symbols in dynamic objects 1 (main test)
-PASS: --gc-sections on tls variable
-PASS: preinit array
-PASS: init array
-PASS: fini array
-PASS: static preinit array
-PASS: static init array
-PASS: static fini array
-Running [...]/hurd/ld/testsuite/ld-elf/exclude.exp ...
-PASS: ld link shared library
-PASS: ld export symbols from archive
-PASS: ld link shared library with --exclude-libs
-PASS: ld exclude symbols from archive - --exclude-libs libexclude
-PASS: ld exclude symbols from archive - --exclude-libs libexclude.a
-PASS: ld exclude symbols from archive - --exclude-libs ALL
-PASS: ld exclude symbols from archive - --exclude-libs foo:libexclude.a
-PASS: ld exclude symbols from archive - --exclude-libs foo,libexclude.a
-PASS: ld don't exclude symbols from archive - --exclude-libs foo:bar
-Running [...]/hurd/ld/testsuite/ld-elf/frame.exp ...
-PASS: read-only .eh_frame section
-PASS: read-only .gcc_except_table section
-Running [...]/hurd/ld/testsuite/ld-elf/sec-to-seg.exp ...
-PASS: assignment of ELF sections to segments (same page)
-PASS: assignment of ELF sections to segments (adjacent pages)
-PASS: assignment of ELF sections to segments (disjoint pages)
-Running [...]/hurd/ld/testsuite/ld-elf/sec64k.exp ...
-PASS: ld-elf/64ksec-r
-PASS: ld-elf/64ksec
-Running [...]/hurd/ld/testsuite/ld-elf/shared.exp ...
-PASS: Build libfoo.so
-PASS: Build versioned libfoo.so
-PASS: Build libbar.so
-PASS: Build warn libbar.so
-PASS: Build hidden libbar.so
-PASS: Build protected libbar.so
-PASS: Build libbar.so with libfoo.so
-PASS: Build libar.so with versioned libfoo.so
-PASS: Build hidden libbar.so with libfoo.so
-PASS: Build hidden libar.so with versioned libfoo.so
-PASS: Build protected libbar.so with libfoo.so
-PASS: Build protected libbar.so with versioned libfoo.so
-PASS: Build libdl1.so
-PASS: Build libdl2a.so with --dynamic-list=dl2.list
-PASS: Build libdl2a.so with --dynamic-list=dl2a.list
-PASS: Build libdl2a.so with --dynamic-list-data
-PASS: Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list
-PASS: Build libdl2c.so with --dynamic-list-data and dl2xxx.list
-PASS: Build libdl4a.so with --dynamic-list=dl4.list
-PASS: Build libdl4b.so with --dynamic-list-data
-PASS: Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list
-PASS: Build libdl4d.so with --dynamic-list-data and dl4xxx.list
-PASS: Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new
-PASS: Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions
-PASS: Build libdl6a.so
-PASS: Build libdl6b.so with -Bsymbolic --dynamic-list-data
-PASS: Build libdl6c.so with -Bsymbolic
-PASS: Build libdl6d.so with --dynamic-list-data -Bsymbolic
-PASS: Build libdata1.so
-PASS: Build libcomm1.o
-PASS: Build libfunc1.so
-PASS: Build libpr9676-1.a
-PASS: Build libpr9676-2.a
-PASS: Build libpr9676-3.so
-PASS: Build libpr9676-4.so
-PASS: Build libpr9676-4a.so
-PASS: Build libpr9679.so
-PASS: Build libpr11138-1.so
-PASS: Build libpr11138-2.o
-PASS: Run normal with libfoo.so
-PASS: Run protected with libfoo.so
-PASS: Run hidden with libfoo.so
-PASS: Run normal with versioned libfoo.so
-PASS: Run warn with versioned libfoo.so
-PASS: Run protected with versioned libfoo.so
-PASS: Run hidden with versioned libfoo.so
-PASS: Run normal libbar.so with libfoo.so
-PASS: Run protected libbar.so with libfoo.so
-PASS: Run hidden libbar.so with libfoo.so
-PASS: Run normal libbar.so with versioned libfoo.so
-PASS: Run protected libbar.so with versioned libfoo.so
-PASS: Run hidden libbar.so with versioned libfoo.so
-PASS: Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so
-PASS: Run dl1b with --dynamic-list-data and dlopen on libdl1.so
-PASS: Run with libdl2a.so
-PASS: Run with libdl2b.so
-PASS: Run with libdl2c.so
-PASS: Run with libdl4a.so
-PASS: Run with libdl4b.so
-PASS: Run with libdl4c.so
-PASS: Run with libdl4d.so
-PASS: Run with libdl4e.so
-PASS: Run with libdl4f.so
-PASS: Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so
-PASS: Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so
-PASS: Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so
-PASS: Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so
-PASS: Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so
-PASS: Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so
-PASS: Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so
-PASS: Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so
-PASS: Run dl6b2 with dlopen on libdl6b.so
-PASS: Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so
-PASS: Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so
-PASS: Run with libdata1.so
-PASS: Run with libfunc1.so comm1.o
-PASS: Run with comm1.o libfunc1.so
-PASS: Run with pr11138-2.c libpr11138-1.so
-PASS: Run with libpr11138-1.so pr11138-2.c
-PASS: Build libdl3a.so with --dynamic-list=dl3.list
-PASS: Build libdl3b.so with -Bsymbolic
-PASS: Build libdl3a.so with --dynamic-list-cpp-typeinfo
-PASS: Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new
-PASS: Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new
-PASS: Run with libdl3a.so
-PASS: Run with libdl3c.so
-PASS: Run with libnew1a.so
-PASS: Run with libnew1b.so
-Running [...]/hurd/ld/testsuite/ld-elf/tls_common.exp ...
-PASS: tls_common
-Running [...]/hurd/ld/testsuite/ld-elf/wrap.exp ...
-PASS: Build libwrap1a.so
-PASS: Build libwrap1b.so
-PASS: Run with libwrap1a.so and libwrap1b.so
-PASS: Run with libwrap1b.so and libwrap1a.so
-Running [...]/hurd/ld/testsuite/ld-elfcomm/elfcomm.exp ...
-PASS: --sort-common (descending)
-PASS: --sort-common (ascending)
-PASS: size/aligment change of common symbols (warning 1)
-PASS: size/aligment change of common symbols (change 1)
-PASS: size/aligment change of common symbols (warning 2)
-PASS: size/aligment change of common symbols (change 2)
-Running [...]/hurd/ld/testsuite/ld-elfvers/vers.exp ...
-PASS: vers1
-PASS: vers2
-PASS: vers3
-PASS: vers4
-PASS: vers4a
-PASS: vers4b
-PASS: vers5
-PASS: vers6
-PASS: vers7a
-PASS: vers7
-PASS: vers8
-PASS: vers9
-PASS: vers10
-PASS: vers11
-PASS: vers12
-PASS: ar with versioned solib
-PASS: vers14
-PASS: vers15
-PASS: vers16a
-PASS: vers16
-PASS: vers17
-PASS: vers18
-PASS: vers19
-PASS: vers20a
-PASS: vers20
-PASS: vers21
-PASS: vers22a
-PASS: vers22b
-PASS: vers22
-PASS: vers23a
-PASS: vers23b
-PASS: vers23c
-PASS: vers23d
-PASS: vers23
-PASS: vers24a
-PASS: vers24b
-PASS: vers24c
-PASS: vers25a
-PASS: vers25b1
-PASS: vers25b2
-PASS: vers26a
-PASS: vers26b1
-PASS: vers26b2
-PASS: vers26b3
-PASS: vers27a
-PASS: vers27b
-PASS: vers27c1
-PASS: vers27c2
-PASS: vers27d1
-PASS: vers27d2
-PASS: vers27d3
-PASS: vers27d4
-PASS: vers27d5
-PASS: vers28a
-PASS: vers28b
-PASS: vers28c
-PASS: vers29
-PASS: vers30
-PASS: vers31
-PASS: vers32a
-PASS: vers32b
-Running [...]/hurd/ld/testsuite/ld-elfvsb/elfvsb.exp ...
-PASS: ld-elfvsb/hidden0
-PASS: ld-elfvsb/hidden1
-PASS: ld-elfvsb/hidden2
-PASS: ld-elfvsb/internal0
-PASS: ld-elfvsb/internal1
-PASS: ld-elfvsb/protected0
-PASS: ld-elfvsb/protected1
-PASS: visibility (hidden) (non PIC)
-PASS: visibility (hidden) (non PIC, load offset)
-PASS: visibility (hidden)
-PASS: visibility (hidden) (PIC main, non PIC so)
-PASS: visibility (hidden) (PIC main)
-PASS: visibility (hidden_normal) (non PIC)
-PASS: visibility (hidden_normal) (non PIC, load offset)
-PASS: visibility (hidden_normal)
-PASS: visibility (hidden_normal) (PIC main, non PIC so)
-PASS: visibility (hidden_normal) (PIC main)
-PASS: visibility (hidden_undef) (non PIC)
-PASS: visibility (hidden_undef) (non PIC, load offset)
-PASS: visibility (hidden_undef)
-PASS: visibility (hidden_undef) (PIC main, non PIC so)
-PASS: visibility (hidden_undef) (PIC main)
-PASS: visibility (hidden_undef_def) (non PIC)
-PASS: visibility (hidden_undef_def) (non PIC, load offset)
-PASS: visibility (hidden_undef_def)
-PASS: visibility (hidden_undef_def) (PIC main, non PIC so)
-PASS: visibility (hidden_undef_def) (PIC main)
-PASS: visibility (hidden_weak) (non PIC)
-PASS: visibility (hidden_weak) (non PIC, load offset)
-PASS: visibility (hidden_weak)
-PASS: visibility (hidden_weak) (PIC main, non PIC so)
-PASS: visibility (hidden_weak) (PIC main)
-PASS: visibility (protected) (non PIC)
-PASS: visibility (protected) (non PIC, load offset)
-PASS: visibility (protected)
-PASS: visibility (protected) (PIC main, non PIC so)
-PASS: visibility (protected) (PIC main)
-PASS: visibility (protected_undef) (non PIC)
-PASS: visibility (protected_undef) (non PIC, load offset)
-PASS: visibility (protected_undef)
-PASS: visibility (protected_undef) (PIC main, non PIC so)
-PASS: visibility (protected_undef) (PIC main)
-PASS: visibility (protected_undef_def) (non PIC)
-PASS: visibility (protected_undef_def) (non PIC, load offset)
-PASS: visibility (protected_undef_def)
-PASS: visibility (protected_undef_def) (PIC main, non PIC so)
-PASS: visibility (protected_undef_def) (PIC main)
-PASS: visibility (protected_weak) (non PIC)
-PASS: visibility (protected_weak) (non PIC, load offset)
-PASS: visibility (protected_weak)
-PASS: visibility (protected_weak) (PIC main, non PIC so)
-PASS: visibility (protected_weak) (PIC main)
-PASS: visibility (normal) (non PIC)
-PASS: visibility (normal) (non PIC, load offset)
-PASS: visibility (normal)
-PASS: visibility (normal) (PIC main, non PIC so)
-PASS: visibility (normal) (PIC main)
-PASS: common hidden symbol
-PASS: weak hidden symbol DSO last
-PASS: weak hidden symbol DSO first
-Running [...]/hurd/ld/testsuite/ld-elfweak/elfweak.exp ...
-PASS: ELF DSO weak func first
-PASS: ELF DSO weak func last
-PASS: ELF DSO weak func first DSO
-PASS: ELF DSO weak func last DSO
-PASS: ELF weak func first
-PASS: ELF weak func last
-PASS: ELF weak func first DSO
-PASS: ELF weak func last DSO
-PASS: ELF DSO weak data first
-PASS: ELF DSO weak data last
-PASS: ELF DSO weak data first DSO
-PASS: ELF DSO weak data last DSO
-PASS: ELF DSO weak data first DSO common
-PASS: ELF DSO weak data last DSO common
-PASS: ELF weak data first
-PASS: ELF weak data last
-PASS: ELF weak data first common
-PASS: ELF weak data last common
-PASS: ELF weak data first DSO
-PASS: ELF weak data last DSO
-PASS: ELF weak data first DSO common
-PASS: ELF weak data last DSO common
-PASS: ELF DSO small bar (size)
-PASS: ELF DSO foo with small bar (size)
-PASS: ELF DSO big bar (size)
-PASS: ELF weak size
-PASS: ld-elfweak/size2
-Running [...]/hurd/ld/testsuite/ld-fastcall/fastcall.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/fdpic.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/frv-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-frv/tls.exp ...
-Running [...]/hurd/ld/testsuite/ld-gc/gc.exp ...
-PASS: Check --gc-section
-PASS: Check --gc-section/-q
-PASS: Check --gc-section/-r/-e
-PASS: Check --gc-section/-r/-u
-PASS: --gc-sections -r without -e
-PASS: --gc-sections with note section
-PASS: --gc-sections with __start_
-PASS: --gc-sections with shared library
-Running [...]/hurd/ld/testsuite/ld-h8300/h8300.exp ...
-Running [...]/hurd/ld/testsuite/ld-i386/i386.exp ...
-PASS: TLS -fpic -shared transitions
-PASS: TLS descriptor -fpic -shared transitions
-PASS: Helper shared library
-PASS: TLS -fpic and -fno-pic exec transitions
-PASS: TLS descriptor -fpic and -fno-pic exec transitions
-PASS: TLS -fno-pic -shared
-PASS: TLS with global dynamic and descriptors
-PASS: TLS in debug sections
-PASS: TLS @indntpoff with %eax
-PASS: Reloc section order
-PASS: Basic --emit-relocs support
-PASS: -z combreloc relocation sections
-PASS: TLS GD->LE transition
-PASS: TLS LD->LE transition
-PASS: TLS IE->LE transition
-PASS: Absolute non-overflowing relocs
-PASS: PCREL8 overflow
-PASS: PCREL16 overflow
-PASS: PCREL16 absolute reloc
-PASS: Invalid allocated section
-PASS: --warn-shared-textrel --fatal-warnings
-PASS: TLS GD->LE transition check
-PASS: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
-PASS: TLS IE->LE transition check (R_386_TLS_GOTIE)
-PASS: TLS IE->LE transition check (R_386_TLS_IE with %eax)
-PASS: TLS IE->LE transition check (R_386_TLS_IE)
-PASS: ld-i386/hidden1
-PASS: ld-i386/hidden2
-PASS: ld-i386/hidden3
-PASS: ld-i386/protected1
-PASS: ld-i386/protected2
-PASS: ld-i386/protected3
-PASS: TLS with PIE
-PASS: ld-i386/nogot1
-PASS: ld-i386/nogot2
-PASS: ld-i386/discarded1
-PASS: undefined symbol with compressed debug sections
-Running [...]/hurd/ld/testsuite/ld-ia64/ia64.exp ...
-Running [...]/hurd/ld/testsuite/ld-ia64/line.exp ...
-Running [...]/hurd/ld/testsuite/ld-ifunc/binutils.exp ...
-PASS: strip (ifunc-4-x86)
-PASS: objcopy (ifunc-4-x86)
-PASS: strip (ifunc-4-local-x86)
-PASS: objcopy (ifunc-4-local-x86)
-Running [...]/hurd/ld/testsuite/ld-ifunc/ifunc.exp ...
-PASS: Building ifunc binaries
-PASS: Checking ifunc binaries
-PASS: ld-ifunc/ifunc-1-local-x86
-PASS: ld-ifunc/ifunc-1-x86
-PASS: ld-ifunc/ifunc-10-i386
-PASS: ld-ifunc/ifunc-11-i386
-PASS: ld-ifunc/ifunc-2-i386
-PASS: ld-ifunc/ifunc-2-local-i386
-PASS: ld-ifunc/ifunc-3a-x86
-PASS: ld-ifunc/ifunc-3b-x86
-PASS: ld-ifunc/ifunc-4-local-x86
-PASS: ld-ifunc/ifunc-4-x86
-PASS: ld-ifunc/ifunc-4a-x86
-PASS: ld-ifunc/ifunc-5a-i386
-PASS: ld-ifunc/ifunc-5a-local-i386
-PASS: ld-ifunc/ifunc-5b-i386
-PASS: ld-ifunc/ifunc-5b-local-i386
-PASS: ld-ifunc/ifunc-5r-local-i386
-PASS: ld-ifunc/ifunc-6a-i386
-PASS: ld-ifunc/ifunc-6b-i386
-PASS: ld-ifunc/ifunc-7a-i386
-PASS: ld-ifunc/ifunc-7b-i386
-PASS: ld-ifunc/ifunc-8-i386
-PASS: ld-ifunc/ifunc-9-x86
-Running [...]/hurd/ld/testsuite/ld-libs/libs.exp ...
-PASS: -l: test (preparation)
-PASS: -l: test
-Running [...]/hurd/ld/testsuite/ld-linkonce/linkonce.exp ...
-PASS: ld-linkonce/zeroehl32
-Running [...]/hurd/ld/testsuite/ld-m68hc11/m68hc11.exp ...
-Running [...]/hurd/ld/testsuite/ld-m68k/m68k-got.exp ...
-Running [...]/hurd/ld/testsuite/ld-m68k/m68k.exp ...
-Running [...]/hurd/ld/testsuite/ld-mep/mep.exp ...
-Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
-Running [...]/hurd/ld/testsuite/ld-mips-elf/mips-elf.exp ...
-Running [...]/hurd/ld/testsuite/ld-mmix/mmix.exp ...
-Running [...]/hurd/ld/testsuite/ld-mn10300/mn10300.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-compile.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-run.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe-run2.exp ...
-Running [...]/hurd/ld/testsuite/ld-pe/pe.exp ...
-Running [...]/hurd/ld/testsuite/ld-pie/pie.exp ...
-PASS: weak undefined
-PASS: weak undefined data
-PASS: missing entry symbol
-Running [...]/hurd/ld/testsuite/ld-plugin/plugin.exp ...
-PASS: plugin API enabled
-PASS: load plugin
-PASS: fail plugin onload
-PASS: fail plugin allsymbolsread
-PASS: fail plugin cleanup
-PASS: plugin all hooks
-PASS: plugin claimfile lost symbol
-PASS: plugin claimfile replace symbol
-PASS: plugin claimfile resolve symbol
-PASS: plugin claimfile replace file
-PASS: plugin set symbol visibility
-PASS: plugin ignore lib
-PASS: plugin claimfile replace lib
-Running [...]/hurd/ld/testsuite/ld-powerpc/aix52.exp ...
-Running [...]/hurd/ld/testsuite/ld-powerpc/powerpc.exp ...
-Running [...]/hurd/ld/testsuite/ld-s390/s390.exp ...
-Running [...]/hurd/ld/testsuite/ld-scripts/align.exp ...
-PASS: align1
-PASS: ld-scripts/align2a
-PASS: ld-scripts/align2b
-PASS: ld-scripts/align2c
-Running [...]/hurd/ld/testsuite/ld-scripts/alignof.exp ...
-PASS: ALIGNOF
-Running [...]/hurd/ld/testsuite/ld-scripts/assert.exp ...
-PASS: ASSERT
-Running [...]/hurd/ld/testsuite/ld-scripts/crossref.exp ...
-PASS: NOCROSSREFS 1
-PASS: NOCROSSREFS 2
-PASS: NOCROSSREFS 3
-Running [...]/hurd/ld/testsuite/ld-scripts/data.exp ...
-PASS: ld-scripts/data
-Running [...]/hurd/ld/testsuite/ld-scripts/default-script.exp ...
-PASS: ld-scripts/default-script1
-PASS: ld-scripts/default-script2
-PASS: ld-scripts/default-script3
-PASS: ld-scripts/default-script4
-Running [...]/hurd/ld/testsuite/ld-scripts/defined.exp ...
-PASS: DEFINED (PRMS 5699)
-PASS: ld-scripts/defined2
-PASS: ld-scripts/defined3
-Running [...]/hurd/ld/testsuite/ld-scripts/dynamic-sections.exp ...
-PASS: dynamic sections
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-address.exp ...
-PASS: ld-scripts/empty-address-1
-PASS: ld-scripts/empty-address-2a
-PASS: ld-scripts/empty-address-2b
-PASS: ld-scripts/empty-address-3a
-PASS: ld-scripts/empty-address-3b
-PASS: ld-scripts/empty-address-3c
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-aligned.exp ...
-PASS: ld-scripts/empty-aligned
-Running [...]/hurd/ld/testsuite/ld-scripts/empty-orphan.exp ...
-PASS: ld-scripts/empty-orphan
-Running [...]/hurd/ld/testsuite/ld-scripts/expr.exp ...
-PASS: ld-scripts/expr1
-Running [...]/hurd/ld/testsuite/ld-scripts/extern.exp ...
-PASS: EXTERN
-Running [...]/hurd/ld/testsuite/ld-scripts/include.exp ...
-PASS: include-1
-Running [...]/hurd/ld/testsuite/ld-scripts/map-address.exp ...
-PASS: map addresses
-Running [...]/hurd/ld/testsuite/ld-scripts/overlay-size.exp ...
-PASS: overlay size
-PASS: overlay size (map check)
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs.exp ...
-PASS: PHDRS
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs2.exp ...
-PASS: PHDRS2
-Running [...]/hurd/ld/testsuite/ld-scripts/phdrs3.exp ...
-PASS: PHDRS headers
-PASS: PHDRS headers 3a
-Running [...]/hurd/ld/testsuite/ld-scripts/provide.exp ...
-PASS: ld-scripts/provide-1
-PASS: ld-scripts/provide-2
-XFAIL: ld-scripts/provide-3
-Running [...]/hurd/ld/testsuite/ld-scripts/rgn-at.exp ...
-PASS: rgn-at1
-PASS: rgn-at2
-PASS: rgn-at3
-PASS: rgn-at4
-PASS: rgn-at5
-Running [...]/hurd/ld/testsuite/ld-scripts/rgn-over.exp ...
-PASS: rgn-over1
-PASS: rgn-over1 (map check)
-PASS: rgn-over2
-PASS: rgn-over2 (map check)
-PASS: rgn-over3
-PASS: rgn-over3 (map check)
-PASS: rgn-over4
-PASS: rgn-over4 (map check)
-PASS: rgn-over5
-PASS: rgn-over5 (map check)
-PASS: rgn-over6
-PASS: rgn-over6 (map check)
-PASS: rgn-over7
-PASS: rgn-over7 (map check)
-PASS: rgn-over8
-Running [...]/hurd/ld/testsuite/ld-scripts/script.exp ...
-PASS: script
-PASS: MRI script
-PASS: MEMORY
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-1.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-2.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-3.t
-XFAIL: REGION_ALIAS: [...]/hurd/ld/testsuite/ld-scripts/region-alias-4.t
-Running [...]/hurd/ld/testsuite/ld-scripts/section-match.exp ...
-PASS: ld-scripts/section-match-1
-Running [...]/hurd/ld/testsuite/ld-scripts/size.exp ...
-PASS: ld-scripts/size-1
-PASS: ld-scripts/size-2
-Running [...]/hurd/ld/testsuite/ld-scripts/sizeof.exp ...
-PASS: SIZEOF
-Running [...]/hurd/ld/testsuite/ld-scripts/sort.exp ...
-PASS: --sort-section alignment
-PASS: SORT_BY_ALIGNMENT
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME())
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
-PASS: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
-PASS: --sort-section name
-PASS: SORT_BY_NAME
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT())
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
-PASS: SORT_BY_NAME(SORT_BY_NAME())
-PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
-PASS: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
-PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
-PASS: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
-Running [...]/hurd/ld/testsuite/ld-scripts/weak.exp ...
-PASS: weak symbols
-Running [...]/hurd/ld/testsuite/ld-selective/sel-dump.exp ...
-PASS: Preserve default . = 0
-PASS: Preserve explicit . = 0
-Running [...]/hurd/ld/testsuite/ld-selective/selective.exp ...
-PASS: selective1
-PASS: selective2
-PASS: selective3
-XFAIL: selective4
-XFAIL: selective5
-XFAIL: selective6
-Running [...]/hurd/ld/testsuite/ld-sh/arch/arch.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/rd-sh.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh-vxworks.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/relax.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/relfail.exp ...
-Running [...]/hurd/ld/testsuite/ld-sh/sh64/sh64.exp ...
-Running [...]/hurd/ld/testsuite/ld-shared/shared.exp ...
-PASS: shared (non PIC)
-PASS: shared (non PIC, load offset)
-PASS: shared
-PASS: shared -Bsymbolic
-PASS: shared (PIC main, non PIC so)
-PASS: shared (PIC main)
-Running [...]/hurd/ld/testsuite/ld-sparc/sparc.exp ...
-Running [...]/hurd/ld/testsuite/ld-spu/spu.exp ...
-Running [...]/hurd/ld/testsuite/ld-srec/srec.exp ...
-PASS: S-records
-PASS: S-records with constructors
-Running [...]/hurd/ld/testsuite/ld-tic6x/tic6x.exp ...
-Running [...]/hurd/ld/testsuite/ld-undefined/entry.exp ...
-PASS: Build libentry.a
-PASS: --entry foo archive
-PASS: --entry foo -u foo archive
-PASS: -shared --entry foo archive
-PASS: -shared --entry foo -u foo archive
-PASS: --entry foo
-PASS: --entry foo -u foo
-PASS: --entry 0x0
-Running [...]/hurd/ld/testsuite/ld-undefined/undefined.exp ...
-PASS: undefined
-PASS: undefined function
-PASS: undefined line
-Running [...]/hurd/ld/testsuite/ld-undefined/weak-undef.exp ...
-PASS: weak undefined symbols
-Running [...]/hurd/ld/testsuite/ld-v850/v850.exp ...
-Running [...]/hurd/ld/testsuite/ld-versados/versados.exp ...
-Running [...]/hurd/ld/testsuite/ld-vxworks/vxworks.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/line.exp ...
-Running [...]/hurd/ld/testsuite/ld-x86-64/x86-64.exp ...
-Running [...]/hurd/ld/testsuite/ld-xc16x/xc16x.exp ...
-Running [...]/hurd/ld/testsuite/ld-xstormy16/xstormy16.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/coalesce.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/lcall.exp ...
-Running [...]/hurd/ld/testsuite/ld-xtensa/xtensa.exp ...
-
- === ld Summary ===
-
-# of expected passes 616
-# of expected failures 8
-# of untested testcases 6
-/media/data[...]/hurd.build/ld/ld-new 2.21.51.20101124
-
-Test Run By thomas on Wed Nov 24 12:32:05 2010
-Native configuration is i686-pc-linux-gnu
-
- === gas tests ===
-
-Schedule of variations:
- unix
-
-Running target unix
-Running [...]/hurd/gas/testsuite/gas/all/gas.exp ...
-PASS: pcrel values in assignment
-PASS: simplifiable double subtraction
-PASS: simplifiable double subtraction (-a)
-PASS: simple FP constants
-PASS: difference of two undefined symbols
-PASS: .equiv for symbol already set to another one
-PASS: .equiv for symbol already set to an expression
-PASS: .equ for symbol already set
-PASS: .equ for symbol already set through .eqv
-PASS: .eqv support
-PASS: .eqv for symbol already set
-PASS: == assignment support
-PASS: == assignment for symbol already set
-PASS: forward references
-PASS: forward expression
-PASS: .equ redefinitions
-PASS: .equ redefinitions (2)
-PASS: .equ redefinitions (3)
-PASS: .set for symbol already used as label
-PASS: .set for symbol already defined through .comm
-PASS: comment.s: comments in listings
-PASS: general info section in listings
-PASS: difference between forward references
-PASS: struct
-PASS: align
-PASS: align2
-PASS: alternate macro syntax
-PASS: alternate macro syntax (escape)
-PASS: evaluation of simple expressions
-PASS: conditional listings
-PASS: incbin
-PASS: assignment tests
-PASS: .sleb128 tests
-PASS: relax .uleb128
-PASS: bad byte directive
-PASS: .quad tests
-PASS: octa bignum
-PASS: weakref tests, relocations
-PASS: weakref tests, global syms
-PASS: weakref tests, local syms
-PASS: weakref tests, strong undefined syms
-PASS: weakref tests, weak undefined syms
-PASS: e: would close weakref loop: e => a => b => c => d => e
-PASS: a: would close weakref loop: a => b => c => d => e => a
-PASS: is already defined
-PASS: .strings tests
-PASS: gas/all/err-1.s (test for errors, line 3)
-PASS: gas/all/err-1.s (test for errors, line 4)
-PASS: gas/all/err-1.s (test for errors, line 5)
-PASS: gas/all/err-1.s (test for errors, line 6)
-PASS: gas/all/err-1.s (test for errors, line 7)
-PASS: gas/all/err-1.s (test for excess errors)
-PASS: gas/all/warn-1.s (test for warnings, line 3)
-PASS: gas/all/warn-1.s (test for errors, line 4)
-PASS: gas/all/warn-1.s (test for warnings, line 5)
-PASS: gas/all/warn-1.s (test for warnings, line 6)
-PASS: gas/all/warn-1.s (test for warnings, line 7)
-PASS: gas/all/warn-1.s (test for excess errors)
-Running [...]/hurd/gas/testsuite/gas/alpha/alpha.exp ...
-Running [...]/hurd/gas/testsuite/gas/arc/arc.exp ...
-Running [...]/hurd/gas/testsuite/gas/arc/warn.exp ...
-Running [...]/hurd/gas/testsuite/gas/arm/arm.exp ...
-Running [...]/hurd/gas/testsuite/gas/bfin/bfin.exp ...
-Running [...]/hurd/gas/testsuite/gas/bfin/error.exp ...
-Running [...]/hurd/gas/testsuite/gas/cfi/cfi.exp ...
-PASS: CFI on i386
-PASS: cfi cfi-diag-1
-PASS: CFI common 1
-PASS: CFI common 2
-PASS: CFI common 3
-PASS: CFI common 4
-PASS: CFI common 5
-PASS: CFI common 7
-PASS: CFI common 6
-Running [...]/hurd/gas/testsuite/gas/cr16/cr16.exp ...
-Running [...]/hurd/gas/testsuite/gas/cr16/pic.exp ...
-Running [...]/hurd/gas/testsuite/gas/cris/cris.exp ...
-Running [...]/hurd/gas/testsuite/gas/crx/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/d10v/d10v.exp ...
-Running [...]/hurd/gas/testsuite/gas/d30v/d30.exp ...
-Running [...]/hurd/gas/testsuite/gas/dlx/alltests.exp ...
-Running [...]/hurd/gas/testsuite/gas/elf/elf.exp ...
-PASS: elf ehopt0
-PASS: .file file names
-PASS: group section
-PASS: group section
-PASS: group section name
-PASS: group section with multiple sections of same name
-PASS: group section with multiple sections of same name
-PASS: automatic section group a
-PASS: automatic section group b
-PASS: .equ redefinitions (ELF)
-PASS: elf equate relocs
-PASS: Ill-formed directives
-PASS: elf section0
-PASS: elf section1
-PASS: elf section2 list
-PASS: note section
-PASS: label arithmetic with multiple same-name sections
-PASS: elf section5 list
-PASS: ELF struct
-PASS: .set with expression
-PASS: ELF symbol versioning
-PASS: .set with IFUNC
-PASS: elf type list
-PASS: elf section6
-PASS: elf section7
-PASS: section flags
-PASS: DWARF2 1
-PASS: DWARF2 2
-PASS: DWARF2 3
-PASS: Check bad section flag
-Running [...]/hurd/gas/testsuite/gas/fr30/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/fr30/fr30.exp ...
-Running [...]/hurd/gas/testsuite/gas/frv/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300-coff.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300-elf.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/h8300.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t01_mov.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t02_mova.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t03_add.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t04_sub.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t05_cmp.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t06_ari2.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t07_ari3.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t08_or.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t09_xor.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t10_and.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t11_logs.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t12_bit.exp ...
-Running [...]/hurd/gas/testsuite/gas/h8300/t13_otr.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/basic/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/parse/parse.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/reloc/reloc.exp ...
-Running [...]/hurd/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
-Running [...]/hurd/gas/testsuite/gas/i386/i386.exp ...
-PASS: i386 float
-PASS: i386 general
-PASS: i386 inval
-PASS: i386 segment
-PASS: i386 inval-seg
-PASS: i386 inval-reg
-PASS: i386 modrm
-PASS: i386 naked reg
-PASS: i386 opcodes
-PASS: i386 opcodes (Intel disassembly)
-PASS: i386 opcodes (w/ suffix)
-PASS: i386 intel
-PASS: i386 intel16
-PASS: i386 intelbad
-PASS: i386 intel-ok
-PASS: i386 prefix
-PASS: i386 amd
-PASS: i386 katmai
-PASS: i386 jump
-PASS: i386 relax 1
-PASS: i386 relax 2
-PASS: i386 ssemmx2
-PASS: i386 sse2
-PASS: i386 sub
-PASS: i386 SSE3
-PASS: i386 SIB
-PASS: i386 SIB (Intel mode)
-PASS: i386 displacement
-PASS: i386 displacement (Intel mode)
-PASS: i386 32bit displacement
-PASS: i386 VMX
-PASS: i386 SMX
-PASS: i386 suffix
-PASS: i386 immed
-PASS: i386 equates
-PASS: i386 divide
-PASS: i386 padlock
-PASS: i386 cr8+
-PASS: i386 cr-err
-PASS: 32-bit SVME
-PASS: i386 amdfam10
-PASS: i386 SSSE3
-PASS: i386 rep prefix
-PASS: i386 rep prefix (with suffixes)
-PASS: i386 lockable insns
-PASS: i386 lockable insns (Intel disassembly)
-PASS: i386 lockbad-1
-PASS: i386 long insns
-PASS: i386 long insns (Intel disassembly)
-PASS: i386 fp
-PASS: i386 nops
-PASS: i386 nops 16bit 1
-PASS: i386 nops 1
-PASS: i386 -mtune=i386 nops 1
-PASS: i386 nops -march=i386 -mtune=i686 1
-PASS: i386 -mtune=i686 nops 1
-PASS: i386 -mtune=k8 nops 1
-PASS: i386 -mtune=core2 nops 1
-PASS: i386 -mtune=bdver1 nops 1
-PASS: i386 nops 2
-PASS: i386 nops -mtune=i386 2
-PASS: i386 -march=i386 -mtune=core2 nops 2
-PASS: i386 nops 3
-PASS: i386 nops -mtune=i386 3
-PASS: i386 -mtune=i686 nops 3
-PASS: i386 nops 4
-PASS: i386 nops -mtune=i386 4
-PASS: i386 -mtune=i686 nops 4
-PASS: i386 nops 5
-PASS: i386 -march=i686 nops 5
-PASS: i386 16-bit addressing in 32-bit mode.
-PASS: i386 32-bit addressing in 16-bit mode.
-PASS: i386 SSE4.1
-PASS: i386 SSE4.1 (Intel disassembly)
-PASS: i386 SSE4.2
-PASS: i386 SSE4.2 (Intel disassembly)
-PASS: i386 crc32
-PASS: i386 crc32 (Intel disassembly)
-PASS: i386 inval-crc32
-PASS: i386 SIMD
-PASS: i386 SIMD (Intel mode)
-PASS: i386 SIMD (with suffixes)
-PASS: i386 mem
-PASS: i386 mem (Intel mode)
-PASS: i386 reg
-PASS: i386 reg (Intel mode)
-PASS: i386
-PASS: i386 float AT&T mnemonic
-PASS: i386 float Intel mnemonic
-PASS: i386 arch 1
-PASS: i386 arch 2
-PASS: i386 arch 3
-PASS: i386 arch 4
-PASS: i386 arch 5
-PASS: i386 arch 6
-PASS: i386 arch 7
-PASS: i386 arch 9
-PASS: i386 arch 10
-PASS: i386 arch-10-1
-PASS: i386 arch-10-2
-PASS: i386 arch-10-3
-PASS: i386 arch-10-4
-PASS: i386 arch 11
-PASS: i386 arch 12
-PASS: i386 8087
-PASS: i386 287
-PASS: i386 387 (cmdline)
-PASS: i386 no87
-PASS: i386 no87-2
-PASS: i386 xsave
-PASS: i386 xsave (Intel mode)
-PASS: i386 AES
-PASS: i386 AES (Intel mode)
-PASS: i386 PCLMUL
-PASS: i386 PCLMUL (Intel mode)
-PASS: i386 AVX
-PASS: i386 AVX (Intel disassembly)
-PASS: i386 AVX scalar insns
-PASS: i386 AVX scalar insns (Intel disassembly)
-PASS: i386 SSE with AVX encoding
-PASS: i386 inval-avx
-PASS: i386 SSE check (none)
-PASS: i386 SSE check (.sse_check none)
-PASS: i386 SSE check (warning)
-PASS: i386 sse-check-error
-PASS: i386 SSE without AVX equivalent
-PASS: i386 movbe
-PASS: i386 movbe (Intel disassembly)
-PASS: i386 inval-movbe
-PASS: i386 EPT
-PASS: i386 EPT (Intel disassembly)
-PASS: i386 inval-ept
-PASS: i386 arch avx 1
-PASS: i386 arch-avx-1-1
-PASS: i386 arch-avx-1-2
-PASS: i386 arch-avx-1-3
-PASS: i386 arch-avx-1-4
-PASS: i386 arch-avx-1-5
-PASS: i386 arch-avx-1-6
-PASS: encoding option
-PASS: encoding option (Intel mode)
-PASS: encoding option with -msse2avx
-PASS: encoding option with -msse2avx (Intel mode)
-PASS: i386 FMA
-PASS: i386 FMA (Intel disassembly)
-PASS: i386 FMA scalar insns
-PASS: i386 FMA scalar insns (Intel disassembly)
-PASS: i386 FMA4
-PASS: i386 LWP
-PASS: i386 XOP
-PASS: i386 F16C
-PASS: i386 F16C (Intel disassembly)
-PASS: i386 FSGSBase
-PASS: i386 FSGSBase (Intel disassembly)
-PASS: i386 RdRnd
-PASS: i386 RdRnd (Intel disassembly)
-PASS: i386 reloc
-PASS: i386 jump16
-PASS: i386 white
-PASS: i386 pcrel reloc
-PASS: i386 abs reloc
-PASS: i386 intelpic
-PASS: i386 relax
-PASS: i386 gotpc
-PASS: i386 dynamic tls
-PASS: i386 pic tls
-PASS: i386 non-pic tls
-PASS: i386 .bss
-PASS: i386 relocs
-PASS: i386 reloc32
-PASS: x86 mixed mode relocs (32-bit object)
-PASS: i386 AT&T register names
-PASS: i386 intel-got
-PASS: i386 Intel register names
-PASS: i386 inval-equ-1
-PASS: i386 inval-equ-2
-PASS: i386 ifunc
-PASS: i386 l1om-inval
-PASS: i386 local PIC
-PASS: DWARF2 debugging information 1
-PASS: DWARF2 debugging information 2
-PASS: x86 Intel expressions
-PASS: string insn operands
-PASS: i386 string-bad
-PASS: i386 space1
-PASS: i386 list-1
-PASS: i386 list-2
-PASS: i386 list-3
-PASS: DWARF2 debugging information 1
-Running [...]/hurd/gas/testsuite/gas/i860/i860.exp ...
-Running [...]/hurd/gas/testsuite/gas/ia64/ia64.exp ...
-Running [...]/hurd/gas/testsuite/gas/ieee-fp/x930509a.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/load-hazards.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/odd-ldw.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/odd-sdw.exp ...
-Running [...]/hurd/gas/testsuite/gas/iq2000/yield.exp ...
-Running [...]/hurd/gas/testsuite/gas/lm32/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/lns/lns.exp ...
-PASS: lns lns-diag-1
-PASS: lns-duplicate
-PASS: lns-common-1
-Running [...]/hurd/gas/testsuite/gas/m32r/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/error.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32r.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32r2.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/m32rx.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/pic.exp ...
-Running [...]/hurd/gas/testsuite/gas/m32r/rel32.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68hc11/m68hc11.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68k-coff/gas.exp ...
-Running [...]/hurd/gas/testsuite/gas/m68k/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/macros/macros.exp ...
-PASS: macro test 1
-PASS: macro test 2
-PASS: macro test 3
-PASS: macro irp
-PASS: macro rept
-PASS: nested irp/irpc/rept
-PASS: macro vararg
-PASS: macro infinite recursion
-PASS: logical and in macro definition
-PASS: semi
-PASS: strings
-PASS: APP with macro without NO_APP
-PASS: APP with macro then NO_APP
-PASS: APP with macro then NO_APP then more code
-PASS: included file with .if 0 wrapped in APP/NO_APP, no final NO_APP, macro in main file
-PASS: macros badarg
-PASS: macros dot
-PASS: macros end
-PASS: macros purge
-PASS: macros redef
-PASS: gas/macros/paren
-PASS: .exitm outside of a macro
-Running [...]/hurd/gas/testsuite/gas/mcore/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/mep/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/mep/complex-relocs.exp ...
-Running [...]/hurd/gas/testsuite/gas/mips/mips.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix-err.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix-list.exp ...
-Running [...]/hurd/gas/testsuite/gas/mmix/mmix.exp ...
-Running [...]/hurd/gas/testsuite/gas/mn10200/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/mn10300/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/mri/mri.exp ...
-Running [...]/hurd/gas/testsuite/gas/msp430/msp430.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/errors.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/mt.exp ...
-Running [...]/hurd/gas/testsuite/gas/mt/relocs.exp ...
-Running [...]/hurd/gas/testsuite/gas/openrisc/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/pdp11/pdp11.exp ...
-Running [...]/hurd/gas/testsuite/gas/pe/pe.exp ...
-Running [...]/hurd/gas/testsuite/gas/pj/pj.exp ...
-Running [...]/hurd/gas/testsuite/gas/ppc/aix.exp ...
-Running [...]/hurd/gas/testsuite/gas/ppc/ppc.exp ...
-Running [...]/hurd/gas/testsuite/gas/rx/rx.exp ...
-Running [...]/hurd/gas/testsuite/gas/s390/s390.exp ...
-Running [...]/hurd/gas/testsuite/gas/score/relax.exp ...
-Running [...]/hurd/gas/testsuite/gas/score/relax_32.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/arch/arch.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/err.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/sh64/err.exp ...
-Running [...]/hurd/gas/testsuite/gas/sh/sh64/sh64.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc-solaris/addend.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc-solaris/gas.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc/mismatch.exp ...
-Running [...]/hurd/gas/testsuite/gas/sparc/sparc.exp ...
-Running [...]/hurd/gas/testsuite/gas/sun4/addend.exp ...
-Running [...]/hurd/gas/testsuite/gas/symver/symver.exp ...
-PASS: symver symver0
-PASS: symver symver1
-PASS: symver symver2
-PASS: symver symver3
-PASS: symver symver6
-Running [...]/hurd/gas/testsuite/gas/tic4x/tic4x.exp ...
-Running [...]/hurd/gas/testsuite/gas/tic54x/tic54x.exp ...
-Running [...]/hurd/gas/testsuite/gas/tic6x/tic6x.exp ...
-Running [...]/hurd/gas/testsuite/gas/v850/basic.exp ...
-Running [...]/hurd/gas/testsuite/gas/vax/vax.exp ...
-Running [...]/hurd/gas/testsuite/gas/xc16x/xc16x.exp ...
-Running [...]/hurd/gas/testsuite/gas/xstormy16/allinsn.exp ...
-Running [...]/hurd/gas/testsuite/gas/xtensa/all.exp ...
-Running [...]/hurd/gas/testsuite/gas/xtensa/xtensa-err.exp ...
-Running [...]/hurd/gas/testsuite/gas/z80/z80.exp ...
-Running [...]/hurd/gas/testsuite/gas/z8k/z8k.exp ...
-
- === gas Summary ===
-
-# of expected passes 316
-../as-new 2.21.51.20101124
-
diff --git a/open_issues/gcc.mdwn b/open_issues/gcc.mdwn
index b5f35d44..b33291e5 100644
--- a/open_issues/gcc.mdwn
+++ b/open_issues/gcc.mdwn
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[!tag open_issue_gcc]]
@@ -156,12 +156,12 @@ harmonized.)
On grubber, this needs roughly 24 hours, and takes up around 2.5 GiB.
- $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd/master.build/log_build* | sed -e "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/log_build-linux.sed) <(ssh grubber 'cd tmp/gcc/ && cat hurd/master.build/log_build* | sed "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/log_build-hurd.sed) > open_issues/gcc/log_build-diff
-[[log_build-diff]].
+## Analysis
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd/master.build/log_build* | sed -e "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/log_build-linux.sed) <(ssh grubber 'cd tmp/gcc/ && cat hurd/master.build/log_build* | sed "s%${PWD}%[...]%g"' | sed -f open_issues/gcc/log_build-hurd.sed) > open_issues/gcc/log_build-diff
-## Analysis
+[[log_build-diff]].
* [[`checking if gcc static flag -static
works... no`|glibc_madvise_vs_static_linking]]
@@ -288,12 +288,12 @@ harmonized.)
On grubber, this needs roughly 15 minutes, and takes up around 0.7 GiB.
- $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-pc-linux-gnu%[ARCH]%g"') <(ssh grubber 'cd tmp/gcc/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-unknown-gnu0\.3%[ARCH]%g"') > open_issues/gcc/log_install-diff
-[[log_install-diff]].
+## Analysis
+ $ diff -wu <(ssh kepler.SCHWINGE 'cd tmp/source/gcc/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-pc-linux-gnu%[ARCH]%g"') <(ssh grubber 'cd tmp/gcc/ && cat hurd/master.build/log_install | sed -e "s%${PWD}%[...]%g" -e "s%i686-unknown-gnu0\.3%[ARCH]%g"') > open_issues/gcc/log_install-diff
-## Analysis
+[[log_install-diff]].
* `libtool: finish`: `ldconfig` is not run for the Hurd.
@@ -308,3 +308,8 @@ On grubber, this needs roughly 15 minutes, and takes up around 0.7 GiB.
$ make SHELL=/bin/bash -k check 2>&1 | tee log_check
[...]
+
+Blocked on [[fork_mach_port_mod_refs_ekern_urefs_owerflow]].
+
+
+## Analysis
--
cgit v1.2.3
From 17d02618ae3ad154e789f7ebe66d0cdfafcb0ef6 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 21 Dec 2010 11:37:09 +0100
Subject: microkernel/mach: Mach OSF books.
---
community/meetings/debconf10.mdwn | 8 ++--
microkernel/mach.mdwn | 73 +++++++++++++++++++++++++++++++++----
microkernel/mach/concepts.mdwn | 8 ++++
microkernel/mach/documentation.mdwn | 10 +++--
4 files changed, 84 insertions(+), 15 deletions(-)
diff --git a/community/meetings/debconf10.mdwn b/community/meetings/debconf10.mdwn
index 261686cc..3b83a8cc 100644
--- a/community/meetings/debconf10.mdwn
+++ b/community/meetings/debconf10.mdwn
@@ -19,9 +19,9 @@ License|/fdl]]."]]"""]]
banck_hurd:
- "presentation (including video) by Michael Banck: [*Debian GNU/Hurd -- Past.
- Present. And
- Future?*](http://penta.debconf.org/dc10_schedule/events/595.en.html)
- ([slides](http://people.debian.org/~mbanck/debian-hurd.pdf))"
+ "presentation (including video) by Michael Banck: [*Debian GNU/Hurd -- Past.
+ Present. And
+ Future?*](http://penta.debconf.org/dc10_schedule/events/595.en.html)
+ ([slides](http://people.debian.org/~mbanck/debian-hurd.pdf))"
"""]]
diff --git a/microkernel/mach.mdwn b/microkernel/mach.mdwn
index 39d0f4d2..93d8ff06 100644
--- a/microkernel/mach.mdwn
+++ b/microkernel/mach.mdwn
@@ -1,16 +1,75 @@
+[[!meta copyright="Copyright © 2007, 2008, 2010 Free Software Foundation,
+Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
Mach is a so-called first generation [[microkernel]]. It is the
microkernel currently used by the [[Hurd]].
-* [[Documentation]]
-* [[Concepts]]
-* [[History]] ([Torvalds, Tanenbaum Debate](http://www.dina.dk/~abraham/Linus_vs_Tanenbaum.html))
+ * [[Concepts]]
+
+ * [[Documentation]]
+
+ * [[History]]
+
+ * [Torvalds, Tanenbaum
+ Debate](http://www.dina.dk/~abraham/Linus_vs_Tanenbaum.html)
+
# Implementations
-* [[GNU_Mach|gnumach]]
-* [[Mach/OskitMach]] - A Once Successor of Mach based on OSKit
-* [Apple's Darwin](http://developer.apple.com/darwin/) ([API](http://developer.apple.com/documentation/Darwin/Conceptual/KernelProgramming/index.html)) (**non-free**)
+ * [[GNU_Mach|gnumach]]
+
+ * [Apple's Darwin](http://developer.apple.com/darwin/)
+ ([API](http://developer.apple.com/documentation/Darwin/Conceptual/KernelProgramming/index.html))
+ (**non-free**)
+
# Related
-* [[Mach_Interface_Generator_(MIG)|mig]]
+ * [[Mach_Interface_Generator_(MIG)|mig]]
+
+
+[[!ymlfront data="""
+
+kernel_interface:
+
+ "Mach 3 Kernel Interfaces. Open Software Foundation and Carnegie Mellon
+ University. Keith Loepere, Editor. NORMA-MK12: July 15, 1992. [\[ps,
+ HTTP\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_interface.ps),
+ [\[ps,
+ FTP\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_interface.ps)."
+
+kernel_principles:
+
+ "Mach 3 Kernel Principles. Open Software Foundation and Carnegie Mellon
+ University. Keith Loepere. NORMA-MK12: July 15, 1992. [\[ps,
+ HTTP\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_principles.ps),
+ [\[ps,
+ FTP\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_principles.ps)."
+
+server_interface:
+
+ "Mach 3 Server Writer’s Interfaces. Open Software Foundation and Carnegie
+ Mellon University. Keith Loepere, Editor. NORMA-MK12, user15: July 15,
+ 1992. [\[ps,
+ HTTP\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_interface.ps),
+ [\[ps,
+ FTP\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_interface.ps)."
+
+server_writer:
+
+ "Mach 3 Server Writer’s Guide. Open Software Foundation and Carnegie Mellon
+ University. Keith Loepere, Editor. NORMA-MK12, user15: July 15, 1992.
+ [\[ps,
+ HTTP\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_writer.ps),
+ [\[ps,
+ FTP\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_writer.ps)."
+
+"""]]
diff --git a/microkernel/mach/concepts.mdwn b/microkernel/mach/concepts.mdwn
index a9e8897d..0f7cbf00 100644
--- a/microkernel/mach/concepts.mdwn
+++ b/microkernel/mach/concepts.mdwn
@@ -23,3 +23,11 @@ implemented by sending [[message]]s to [[port]]s. Device drivers that reside
in kernel space are controlled by ports, too.
Mach's [[API]] is well-[[documented|documentation]].
+
+[[!toggleable id=mach_kernel_principles text="""[[!template id=note
+text="*[[mach\_kernel\_principles|documentation]]*:
+{{$mach#kernel_principles}}"]]"""]]
+
+In particular the [[!toggle id=mach_kernel_principles
+text="[mach\_kernel\_principles]"]] book further elaborates on Mach's concepts
+and principles.
diff --git a/microkernel/mach/documentation.mdwn b/microkernel/mach/documentation.mdwn
index 4c6702aa..4bd712c9 100644
--- a/microkernel/mach/documentation.mdwn
+++ b/microkernel/mach/documentation.mdwn
@@ -17,11 +17,13 @@ License|/fdl]]."]]"""]]
* *[[The_GNU_Mach_Reference_Manual|gnumach/reference_manual]]*.
- - OSF's [Kernel Interface (ps)](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_interface.ps)
- [Kernel Interface (pdf)](http://shakthimaan.com/downloads/hurd/kernel_interface.pdf)
+ * {{$mach#kernel_principles}}
- - OSF's [Kernel Principles (ps)](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_principles.ps)
- [Kernel Principles (pdf)](http://shakthimaan.com/downloads/hurd/kernel_principles.pdf)
+ * {{$mach#kernel_interface}}
+
+ * {{$mach#server_writer}}
+
+ * {{$mach#server_interface}}
* [*The Unofficial GNU Mach IPC beginner's
guide*](http://hurdextras.nongnu.org/ipc_guide/), an easy introduction to
--
cgit v1.2.3
From 2707251d04c59ce44048209d9d47737dd31e793c Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 21 Dec 2010 11:40:42 +0100
Subject: microkernel/barrelfish: New.
---
microkernel.mdwn | 2 ++
microkernel/barrelfish.mdwn | 24 ++++++++++++++++++++++++
2 files changed, 26 insertions(+)
create mode 100644 microkernel/barrelfish.mdwn
diff --git a/microkernel.mdwn b/microkernel.mdwn
index 17344689..edefddb7 100644
--- a/microkernel.mdwn
+++ b/microkernel.mdwn
@@ -50,4 +50,6 @@ A 2002 article about [[microkernel_FUD|FUD]] (Fear, Uncertainty, Doubt).
* [[L4]]
+ * [[Barrelfish]]
+
* [[Viengoos]]
diff --git a/microkernel/barrelfish.mdwn b/microkernel/barrelfish.mdwn
new file mode 100644
index 00000000..8cf5591b
--- /dev/null
+++ b/microkernel/barrelfish.mdwn
@@ -0,0 +1,24 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+
+
+ * {{$fof_plos09}}
+
+
+[[!ymlfront data="""
+
+fof_plos09:
+
+ "Pierre-Evariste Dagand, Andrew Baumann, Timothy Roscoe. Filet-o-Fish:
+ practical and dependable domain-specific languages for OS development. PLOS
+ '09, October 11, 2009, Big Sky, Montana, USA."
+
+"""]]
--
cgit v1.2.3
From eb383acc9c9cbc41bba971d3274843f9fc2f3816 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 21 Dec 2010 11:41:13 +0100
Subject: open_issues/resource_management_problems: Elaborate.
---
microkernel/l4.mdwn | 14 +++++++++
open_issues/resource_management_problems.mdwn | 44 ++++++++++++++++++++++++---
2 files changed, 53 insertions(+), 5 deletions(-)
diff --git a/microkernel/l4.mdwn b/microkernel/l4.mdwn
index 970407be..45929842 100644
--- a/microkernel/l4.mdwn
+++ b/microkernel/l4.mdwn
@@ -18,4 +18,18 @@ switching, and little else.
See [l4.verified](http://nicta.com.au/research/projects/l4.verified) for work
on formally verifying an L4 microkernel.
+ * {{$sel4}}
+
There was a GNU/Hurd [[history/port_to_L4]], which is now stalled.
+
+
+[[!ymlfront data="""
+
+sel4:
+
+ "G. Klein, K. Elphinstone, G. Heiser, J. Andronick, D. Cock, P. Derrin,
+ D. Elkaduwe, K. Engelhardt, R. Kolanski, M. Norrish, T. Sewell, H. Tuch, and
+ S. Winwood. seL4: Formal verification of an OS kernel. In Proceedings of
+ the ACM Symposium on OS Principles, Big Sky, MT, USA, October 2009."
+
+"""]]
diff --git a/open_issues/resource_management_problems.mdwn b/open_issues/resource_management_problems.mdwn
index 1723d7d3..3a36514e 100644
--- a/open_issues/resource_management_problems.mdwn
+++ b/open_issues/resource_management_problems.mdwn
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[!tag open_issue_gnumach open_issue_hurd open_issue_viengoos]]
@@ -22,8 +22,42 @@ These issues are what Neal Walfield is working on with his new kernel
[[microkernel/viengoos]].
-# Examples
+# Kernel
- * [[configure max command line length]]
+Inside the [[kernel]], there is commonly a need to allocate resources according
+to externally induced demand, dynamically. For example, for memory-management
+data structures (page tables), process table entries, thread control blocks,
+[[capability]] tables, incoming network packages, blocks that are read in from
+disk, the keyboard type-ahead buffer for a in-kernel keyboard driver. Some of
+these are due to actions driven by user-space requests, others are due to
+actions internal to the the kernel itself. Some of these buffers can be sized
+statically (keyboard type-ahead buffer), and are thus unproblematic. Others
+are not, and should thus be attributed to their user space entities. In the
+latter (ideal) case, all resources -- that is, including those needed inside
+the kernel -- that a user space task needs for execution are provided by itself
+(and, in turn, provided by its parent / principal), and the kernel itself does
+not need to allocate any resources dynamically out of an its own memory pool.
+This avoids issues like [[microkernel/Mach]]'s [[zalloc_panics]] upon user
+space processes allocating too many [[microkernel/mach/port]]s, for example.
+
+[[!toggleable id=fof_plos09 text="""[[!template id=note
+text="*[[fof\_plos09|microkernel/barrelfish]]*:
+{{$microkernel/barrelfish#fof_plos09}}"]]"""]]
+
+[[!toggleable id=sel4 text="""[[!template id=note
+text="[[*sel4*|microkernel/l4]]: {{$microkernel/l4#sel4}}"]]"""]]
+
+In [[!toggle id=fof_plos09 text="[fof\_plos09]"]], the authors describe in
+section 3 how they model their [[capability]] system according to [[!toggle
+id=sel4 text="[sel4]"]] using a *retype* operation that *takes an existing
+capability and produces one or more derived capabilities [...] used to create
+new kernel-level memory objects (such as page tables or execution contexts)
+from capabilities to raw regions of RAM*.
- * [[zalloc_panics]]
+This is, of course, non-trivial to implement, and also requires changing the
+[[RPC]] interfaces, for example, but it is a valid approach, a research topic.
+
+
+# Further Examples
+
+ * [[configure max command line length]]
--
cgit v1.2.3
From 4c113ea8877b63993f2060cb095d5e500922e46f Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 21 Dec 2010 11:47:53 +0100
Subject: Restore broken links.
---
open_issues/ifunc.mdwn | 2 +-
open_issues/performance/io_system/binutils_ld_64ksec.mdwn | 4 ++--
open_issues/unit_testing.mdwn | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/open_issues/ifunc.mdwn b/open_issues/ifunc.mdwn
index 04113a2b..3930d4b2 100644
--- a/open_issues/ifunc.mdwn
+++ b/open_issues/ifunc.mdwn
@@ -25,7 +25,7 @@ use it from GCC.
Most of the executables that the testsuite generates don't actually
execute. (Though, this is partly due to the [[static
- issue|binutils/testsuite#static]].)
+ issue|binutils#static]].)
$ tmpdir/local_prog
ifunc working correctly
diff --git a/open_issues/performance/io_system/binutils_ld_64ksec.mdwn b/open_issues/performance/io_system/binutils_ld_64ksec.mdwn
index 86450576..b59a87a7 100644
--- a/open_issues/performance/io_system/binutils_ld_64ksec.mdwn
+++ b/open_issues/performance/io_system/binutils_ld_64ksec.mdwn
@@ -12,9 +12,9 @@ License|/fdl]]."]]"""]]
This one may be considered as a testcase for I/O system optimization.
-It is taken from the [[binutils testsuite|binutils/testsuite]],
+It is taken from the [[binutils testsuite|binutils]],
`ld/ld-elf/sec64k.exp`, where this
-test may occasionally [[trigger a timeout|binutils/testsuite#64ksec]]. It is
+test may occasionally [[trigger a timeout|binutils#64ksec]]. It is
extracted from cdf7c161ebd4a934c9e705d33f5247fd52975612 sources, 2010-10-24.
$ wget -O - http://www.gnu.org/software/hurd/open_issues/performance/io_system/binutils_ld_64ksec/test.tar.xz | xz -d | tar -x
diff --git a/open_issues/unit_testing.mdwn b/open_issues/unit_testing.mdwn
index 66a61b8a..84c29353 100644
--- a/open_issues/unit_testing.mdwn
+++ b/open_issues/unit_testing.mdwn
@@ -19,7 +19,7 @@ abandoned).
[Expect](http://expect.nist.gov/)
* used by the [[GCC testsuite|gcc]], [[GDB_testsuite]],
- [[binutils testsuite|binutils/testsuite]], etc.
+ [[binutils testsuite|binutils]], etc.
* The [[glibc_testsuite]] has a home-grown system (Makefile-based), likewise
does the [[Open_POSIX_Test_Suite]].
--
cgit v1.2.3
From 29b6f1b8a084c61d2d62d33e2d4413b91afae6e3 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 21 Dec 2010 12:43:38 +0100
Subject: faq/posix_compatibility: New.
---
advantages.mdwn | 4 ++--
faq/posix_compatibility.mdwn | 32 ++++++++++++++++++++++++++++++++
hurd/interface.mdwn | 4 +++-
hurd/status.mdwn | 9 +++++----
4 files changed, 42 insertions(+), 7 deletions(-)
create mode 100644 faq/posix_compatibility.mdwn
diff --git a/advantages.mdwn b/advantages.mdwn
index 8b41f3cd..100c8ff8 100644
--- a/advantages.mdwn
+++ b/advantages.mdwn
@@ -17,8 +17,8 @@ terms of the [[GNU General Public License (GPL)|GPL]].
It's compatible as it provides a familiar programming and user environment.
For all intents and purposes, the Hurd provides the same facilities as a modern
[[Unix]]-like kernel. The Hurd uses the [[GNU C Library|glibc]], whose
-development closely tracks standards such as ANSI/ISO, BSD, POSIX, Single Unix,
-SVID, and X/Open.
+development closely tracks [[standards such as ANSI/ISO, BSD, POSIX, Single
+Unix, SVID, and X/Open|faq/posix_compatibility]].
Unlike other popular kernel software, the Hurd has an object-oriented structure
that allows it to evolve without compromising its design. This structure will
diff --git a/faq/posix_compatibility.mdwn b/faq/posix_compatibility.mdwn
new file mode 100644
index 00000000..1525a7ad
--- /dev/null
+++ b/faq/posix_compatibility.mdwn
@@ -0,0 +1,32 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="POSIX compatibility"]]
+
+Is it favorable of rather a hindrance to be compatible to POSIX and similar
+standards?
+
+A lot of things in POSIX et al. are designed for [[UNIX]]-like systems with
+traditional monolithic [[kernel]]s.
+
+Thus, a [[microkernel]]-based system, as ours is, has to employ a bunch of
+detours, for example to implement the [[`fork` system call|glibc/fork]].
+
+On the other hand, (mostly) complying to these standards, made a really big
+body of software *just work* without any (or just trivial) [[hurd/porting]].
+Especially so for command-line programs, and libraries.
+
+But: a large part of today's user programs are not written according to POSIX
+et al. low-level interfaces, but against GNOME, GTK+2, and other high-level
+frameworks and libraries. It may be a valid option to enrich these instead of
+striving for total POSIX compliance -- and the high-level programs (that is,
+their users) may not even notice this, but we would avoid a lot of overhead
+that comes with wrapping the [[Hurd interfaces|hurd/interface]] to be POSIX
+compliant.
diff --git a/hurd/interface.mdwn b/hurd/interface.mdwn
index 75fda808..53cd31f0 100644
--- a/hurd/interface.mdwn
+++ b/hurd/interface.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2009, 2010 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -10,5 +10,7 @@ License|/fdl]]."]]"""]]
[[!meta title="Interfaces"]]
+/!\ Incomplete.
+
[[!map pages="hurd/interface/* and !hurd/interface/*_*"
show=title]]
diff --git a/hurd/status.mdwn b/hurd/status.mdwn
index 721cdeda..fe56f183 100644
--- a/hurd/status.mdwn
+++ b/hurd/status.mdwn
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
The Hurd, together with the GNU Mach microkernel, the GNU C Library
and the other GNU and non-GNU programs in the GNU system, provide a
@@ -30,8 +30,9 @@ and advanced server applications like the Apache webserver.
On the negative side, the support for character devices (like sound
-cards) and other hardware is mostly missing. Although the POSIX
-interface is provided, some additional interfaces like POSIX shared
+cards) and other hardware is mostly missing. Although the [[POSIX
+interface|faq/posix_compatibility]] is provided, some additional interfaces
+like POSIX shared
memory or semaphores are still under development.
All this applies to the current development version, and not to the
--
cgit v1.2.3
From 69cb8fe70e84b0f20add39ba1d30a0742a8d7b38 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 21 Dec 2010 12:55:05 +0100
Subject: contributing: Shuffle some text.
---
contributing.mdwn | 23 ++++++++++++-----------
index.mdwn | 40 +++++++++++++++-------------------------
2 files changed, 27 insertions(+), 36 deletions(-)
diff --git a/contributing.mdwn b/contributing.mdwn
index 5d68f4ce..6ad4d709 100644
--- a/contributing.mdwn
+++ b/contributing.mdwn
@@ -9,11 +9,10 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
-So, you are interested in contributing to the GNU Hurd project?
+So, you are interested in contributing to the GNU Hurd project? Welcome!
+Every single contribution is very much encouraged.
-Welcome! Every single contribution is very much encouraged!
-
-There are various ways of contributing, read on about contributing to...
+There are various ways to contribute; read on about contributing to...
[[!toc levels=3]]
@@ -64,10 +63,12 @@ on the skills you have and the resources you intend to invest.
Please spend some time with thinking about the items in this [[questionnaire]].
-Before you can significantly contribute, take some time to learn about the
-system, e.g., [[microkernels_for_beginners|microkernel/for_beginners]]. Until
-you can do the basic exercises listed there, you won't be able to significantly
-contribute to the Hurd.
+Before you can significantly contribute to the operating system itself, you'll
+need to take some time to learn about the system, for example:
+[[microkernels for beginners|microkernel/for_beginners]], [[Mach's
+concepts|microkernel/mach/concepts]], [[Hurd's concepts|hurd/concepts]], the
+*[[hurd/critique]]*. Until you can understand and do the basic exercises
+listed there, you won't be able to significantly contribute to the Hurd.
For more reading resources, please see these web pages, for example,
[[Hurd_documentation|hurd/documentation]] and
@@ -104,9 +105,9 @@ itself is more a research project than a *sit down and implement/code/hack*
project.
If you're interested in contributing in this area, knowing the *Hurd on Mach*
-system nevertheless is a prerequisite. At least have a deep look at the
-documentation pointers given in the previous section. Also read through the
-[[HurdNG|hurd/ng]] section.
+system (see [[above|contributing#hurd_on_mach]]) nevertheless is a
+prerequisite. At least have a deep look at the documentation pointers. Also
+read through the [[HurdNG|hurd/ng]] section.
Please send email to the [[mailing lists/l4-hurd]] mailing list for discussing
this post-Mach system design.
diff --git a/index.mdwn b/index.mdwn
index 9520a438..177c7a69 100644
--- a/index.mdwn
+++ b/index.mdwn
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
@@ -34,7 +34,7 @@ computing environment as possible.
[[!toc levels=2]]
-## News
+# News
[[!inline
pages="news/* and !*/discussion"
@@ -56,24 +56,18 @@ developers' musings have a look at the [[shared weblog|community/weblogs]].
The [[recent changes]] page lists the latest changes of this website.
-## Contributing
+# Contributing
-To help the Hurd you can for example (from high level stuff to the inner core)
-
-* [[Contribute_to_these_web_pages|contributing/web_pages]],
-* [[Run_a_GNU/Hurd_system|index#run]] and help others get their systems running,
-* [[Port_applications|hurd/running/debian/porting]] to work in Hurd,
-* Write [[translators|hurd/translator]] to extend the Hurd,
-* Work on the [[Hurd_on_Mach|contributing#hurd_on_mach]], or
-* Help to port the Hurd [[to_a_modern_microkernel|contributing#hurd_on_modern_microkernel]].
+So, you are interested in contributing to the GNU Hurd project? Welcome!
+Every single contribution is very much encouraged. Please read our [[detailed
+recommendations about how to contribute|contributing]].
See our [[source_repositories]] for the source code.
-Read about ways to contribute [[in_more_detail|contributing]].
-## Getting Help
+# Getting Help
-There are a couple of different [[Hurd_FAQs|hurd/FAQ]].
+There are a couple of different [[FAQ lists|FAQ]].
There are a number of [[IRC_channels|IRC]] and several
different [[mailing lists]] with searchable archives.
@@ -82,8 +76,9 @@ answer your own question using a search engine and reading the introductory
information. If you have done this and you cannot find the answer to your
question, feel free to ask on a mailing list or on IRC.
+
-## Running the Hurd
+# Running the Hurd
The most functional distribution of the Hurd is the one provided by Debian.
Find more information about it at the
@@ -100,7 +95,7 @@ And these web pages are a living proof of the usability of the Hurd, as they
are rendered on a [[Debian_GNU/Hurd|hurd/running/debian]] system.
-## Current Status
+# Current Status
There has not yet been an official 1.0 release. The Hurd is developed by a few
volunteers in their spare time. The project welcomes any assistance you can provide.
@@ -122,20 +117,15 @@ For more details, please read our writeup on the
[[current_state_of_the_GNU_Hurd|hurd/status]].
-### Advantages and Challenges
+## Advantages and Challenges
The GNU Hurd operating system design provides [[advantages]], but uncovers new
[[challenges]], too.
-## How is this site arranged?
+----
-The menu on the upper right corner provides a rough structuring about the
-available content. Just follow those topics and explore these pages.
+These pages are powered by [ikiwiki](http://ikiwiki.info/).
Further information about this site and how it was created can be found in the
[[colophon]].
-
-----
-
-These pages are powered by [ikiwiki](http://ikiwiki.info/).
--
cgit v1.2.3
From 8d2236f62fab87615dfd402ce1f3f261e5999a6d Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 21 Dec 2010 13:12:55 +0100
Subject: contributing: Small change.
---
contributing.mdwn | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/contributing.mdwn b/contributing.mdwn
index 6ad4d709..01140927 100644
--- a/contributing.mdwn
+++ b/contributing.mdwn
@@ -120,7 +120,7 @@ encompassing as the GNU Hurd is not a trivial task. For working on the GNU
Hurd's inner guts and getting useful work done, you have to plan for a
many-months learning experience which will need sufficient self-motivation.
Working on an advanced operating system kernel isn't something you can do in a
-few free minutes -- even less so without any previous kernel hacking
+few free minutes -- even less so without any previous [[kernel]] hacking
experience.
Likewise, the Linux kernel maintainers are stating the exactly same
@@ -128,7 +128,9 @@ difficulties, which is well presented by Jonathan Corbet in his 2010 Linux
Kernel Summit report for the opening sessions about [*welcoming of
newcomers*](http://lwn.net/Articles/412639/).
-But of course, none of this is meant to be dismissive, so just [[start
+But of course, none of this is meant to be dismissive, or to scare you away --
+on the contrary: just [[start
using|hurd/running]] the GNU Hurd, and either notice yourself what's not
working as expected, or have a look at one of the [[Open Issues]], and we shall
see if you'll evolve to be the next core Hurd hacker!
+You'll *just* have to get excited about it!
--
cgit v1.2.3
From a5e3b5aeb7483586885f927bdb98a423e1531938 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 21 Dec 2010 13:40:29 +0100
Subject: microkernel/mach: Two more Mach papers.
---
microkernel/mach.mdwn | 51 +++++++++++++++++---------
microkernel/mach/documentation.mdwn | 4 ++
microkernel/mach/external_pager_mechanism.mdwn | 3 ++
3 files changed, 41 insertions(+), 17 deletions(-)
diff --git a/microkernel/mach.mdwn b/microkernel/mach.mdwn
index 93d8ff06..deaf6788 100644
--- a/microkernel/mach.mdwn
+++ b/microkernel/mach.mdwn
@@ -38,38 +38,55 @@ microkernel currently used by the [[Hurd]].
[[!ymlfront data="""
+kernel_foundation_unix:
+
+ "M. Accetta, R. Baron, W. Bolosky, D. Golub, R. Rashid, A. Tevanian, and
+ M. Young, Mach: A New Kernel Foundation for UNIX Development, USENIX
+ Conference Proceedings, July 1986. Paper
+ [\[pdf\]](http://www.cs.toronto.edu/~demke/469F.06/Handouts/mach_usenix86.pdf)."
+
kernel_interface:
"Mach 3 Kernel Interfaces. Open Software Foundation and Carnegie Mellon
- University. Keith Loepere, Editor. NORMA-MK12: July 15, 1992. [\[ps,
- HTTP\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_interface.ps),
- [\[ps,
- FTP\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_interface.ps)."
+ University. Keith Loepere, Editor. NORMA-MK12: July 15, 1992. Book [\[ps
+ (HTTP)\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_interface.ps),
+ [\[ps
+ (FTP)\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_interface.ps)."
kernel_principles:
"Mach 3 Kernel Principles. Open Software Foundation and Carnegie Mellon
- University. Keith Loepere. NORMA-MK12: July 15, 1992. [\[ps,
- HTTP\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_principles.ps),
- [\[ps,
- FTP\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_principles.ps)."
+ University. Keith Loepere. NORMA-MK12: July 15, 1992. Book [\[ps
+ (HTTP)\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_principles.ps),
+ [\[ps
+ (FTP)\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/kernel_principles.ps)."
server_interface:
"Mach 3 Server Writer’s Interfaces. Open Software Foundation and Carnegie
Mellon University. Keith Loepere, Editor. NORMA-MK12, user15: July 15,
- 1992. [\[ps,
- HTTP\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_interface.ps),
- [\[ps,
- FTP\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_interface.ps)."
+ 1992. Book [\[ps
+ (HTTP)\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_interface.ps),
+ [\[ps
+ (FTP)\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_interface.ps)."
server_writer:
"Mach 3 Server Writer’s Guide. Open Software Foundation and Carnegie Mellon
- University. Keith Loepere, Editor. NORMA-MK12, user15: July 15, 1992.
- [\[ps,
- HTTP\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_writer.ps),
- [\[ps,
- FTP\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_writer.ps)."
+ University. Keith Loepere, Editor. NORMA-MK12, user15: July 15, 1992. Book
+ [\[ps
+ (HTTP)\]](http://www.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_writer.ps),
+ [\[ps
+ (FTP)\]](ftp://ftp.cs.cmu.edu/afs/cs/project/mach/public/doc/osf/server_writer.ps)."
+
+vm:
+
+ "R. Rashid, A. Tevanian, M. Young, D. Golub, and R. Baron,
+ Machine-Independent Virtual Memory Management for Paged Uniprocessor and
+ Multiprocessor Architectures, 2nd ACM Symposium on Architectural Support for
+ Programming Languages and Operating Systems (ASPLOS), October 1987. Paper
+ [\[pdf\]](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.111.7918&rep=rep1&type=pdf),
+ presentation
+ [\[ppt\]](http://www2.cs.uh.edu/~paris/6360/PowerPoint/Mach.ppt)."
"""]]
diff --git a/microkernel/mach/documentation.mdwn b/microkernel/mach/documentation.mdwn
index 4bd712c9..cc880ab6 100644
--- a/microkernel/mach/documentation.mdwn
+++ b/microkernel/mach/documentation.mdwn
@@ -17,6 +17,10 @@ License|/fdl]]."]]"""]]
* *[[The_GNU_Mach_Reference_Manual|gnumach/reference_manual]]*.
+ * {{$mach#kernel_foundation_unix}}
+
+ * {{$mach#vm}}
+
* {{$mach#kernel_principles}}
* {{$mach#kernel_interface}}
diff --git a/microkernel/mach/external_pager_mechanism.mdwn b/microkernel/mach/external_pager_mechanism.mdwn
index e169495a..d9b6c2c8 100644
--- a/microkernel/mach/external_pager_mechanism.mdwn
+++ b/microkernel/mach/external_pager_mechanism.mdwn
@@ -14,6 +14,9 @@ mechanism serves to separate *managing memory* from *managing
content*. Mach does the former while user-space processes do the
latter.
+[[!tag open_issue_documentation]]
+
# Introduction
--
cgit v1.2.3
From bd0ffbcc4e0f7abf5e811850fb9ebd93ca649966 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 21 Dec 2010 19:10:42 +0100
Subject: Elaborate on DSLs, IDLs, code analysis, etc.
---
dsl.mdwn | 22 ++++++++++++++++++++++
idl.mdwn | 11 ++++++++---
open_issues/code_analysis.mdwn | 8 +++++++-
open_issues/formal_verification.mdwn | 16 ++++++++++++++++
open_issues/performance.mdwn | 19 +++++++++++++++----
open_issues/profiling.mdwn | 4 ++++
6 files changed, 72 insertions(+), 8 deletions(-)
create mode 100644 dsl.mdwn
create mode 100644 open_issues/formal_verification.mdwn
diff --git a/dsl.mdwn b/dsl.mdwn
new file mode 100644
index 00000000..28f70d7d
--- /dev/null
+++ b/dsl.mdwn
@@ -0,0 +1,22 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="DSL"]]
+
+A *DSL* is a *domain-specific language* ([[!wikipedia Domain-specific_language
+desc="Wikipedia article"]]).
+
+Compared to general-purpose programming languages, these are a candidate for
+[[open_issues/formal_verification]].
+
+DSLs are frequently used as [[IDL]]s for implementing [[RPC]] systems, but can
+also used for other portions of the [[kernel]], such as [[capability]] systems.
+This is exemplified for [[microkernel/Barrelfish]] in
+{{$microkernel/barrelfish#fof_plos09}}, for example.
diff --git a/idl.mdwn b/idl.mdwn
index adfd9b93..5486931d 100644
--- a/idl.mdwn
+++ b/idl.mdwn
@@ -9,11 +9,16 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
-An *IDL* is an *interface definition language*. The most well-known is CORBA.
+[[!meta title="IDL"]]
+
+An *IDL* is an *interface definition language* ([[!wikipedia
+Interface_description_language desc="Wikipedia article"]]). A well-known one
+is CORBA. These are [[DSL]]s.
An IDL compiler takes a specification and generates stub code that hides the
transport details, and by this implements a [[RPC]] system.
In the case of [[Mach's MIG|microkernel/mach/mig]], this hides the marshalling
-and unmarshalling of parameters according to [[microkernel/Mach]]'s semantics,
-and invoking the respective [[microkernel/mach/port]] operations.
+and unmarshalling of procedures' parameters to and from
+[[microkernel/mach/message]] format, according to [[microkernel/Mach]]'s
+semantics, and invoking the respective [[microkernel/mach/port]] operations.
diff --git a/open_issues/code_analysis.mdwn b/open_issues/code_analysis.mdwn
index 114dfbbf..ad59f962 100644
--- a/open_issues/code_analysis.mdwn
+++ b/open_issues/code_analysis.mdwn
@@ -8,7 +8,13 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
-There is static and dynamic code analysis. This overlaps with [[debugging]].
+In the topic of *code analysis* or *program analysis* ([[!wikipedia
+Program_analysis_(computer_science) desc="Wikipedia article"]]), there is
+static code analysis ([[!wikipedia Static_code_analysis desc="Wikipedia
+article"]]) and dynamic program analysis ([[!wikipedia Dynamic_program_analysis
+desc="Wikipedia article"]]). This topic overlaps with [[performance
+analysis|performance]], [[formal_verification]], as well as general
+[[debugging]].
* [[GCC]]'s warnings. Yes, really.
diff --git a/open_issues/formal_verification.mdwn b/open_issues/formal_verification.mdwn
new file mode 100644
index 00000000..168d59a4
--- /dev/null
+++ b/open_issues/formal_verification.mdwn
@@ -0,0 +1,16 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+*Formal verification* ([[!wikipedia Formal_verification desc="Wikipedia
+article"]]) deals with formally reasoning about a program's correctness.
+
+Especially in the field of [[DSL]]s, this is used for asserting program codes'
+correctness, as explained in {{$microkernel/barrelfish#fof_plos09}}, for
+example.
diff --git a/open_issues/performance.mdwn b/open_issues/performance.mdwn
index 3b4c4537..9b3701b3 100644
--- a/open_issues/performance.mdwn
+++ b/open_issues/performance.mdwn
@@ -8,10 +8,21 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
- * general [[RPC]] overhead
+*Performance analysis* ([[!wikipedia Performance_analysis desc="Wikipedia
+article"]]) deals with analyzing how computing resources are used for
+completing a specified task.
- * [[I/O System|io_system]]
+[[Profiling]] is one relevant tool.
- * [[fork]]
+In [[microkernel]]-based systems, there is generally a considerable [[RPC]]
+overhead.
- * [[unit testing]]
+In a multi-server system, it is non-trivial to implement a high-performance
+[[I/O System|io_system]].
+
+When providing [[faq/POSIX_compatibility]] (and similar interfaces) in an
+environemnt that doesn't natively implement these interfaces, there may be a
+severe performance degradation. For example, in this [[`fork` system
+call|/glibc/fork]]'s case.
+
+[[Unit_testing]] can be used for tracking performance regressions.
diff --git a/open_issues/profiling.mdwn b/open_issues/profiling.mdwn
index 3f9330ba..f56ae974 100644
--- a/open_issues/profiling.mdwn
+++ b/open_issues/profiling.mdwn
@@ -8,6 +8,10 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]
+*Profiling* ([[!wikipedia Profiling_(computer_programming) desc="Wikipedia
+article"]]) is a tool for tracing where CPU time is spent. This is usually
+done for [[performance analysis|performance]] reasons.
+
* [[gprof]]
Should be working, but some issues have been reported, regarding GCC spec
--
cgit v1.2.3
From a6713e05645d07e9c38717fc09c8e3b50842e524 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 22 Dec 2010 08:22:59 +0100
Subject: faq/posix_compatibility: Comments by Olaf.
---
faq/posix_compatibility.mdwn | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/faq/posix_compatibility.mdwn b/faq/posix_compatibility.mdwn
index 1525a7ad..a54822c5 100644
--- a/faq/posix_compatibility.mdwn
+++ b/faq/posix_compatibility.mdwn
@@ -30,3 +30,20 @@ striving for total POSIX compliance -- and the high-level programs (that is,
their users) may not even notice this, but we would avoid a lot of overhead
that comes with wrapping the [[Hurd interfaces|hurd/interface]] to be POSIX
compliant.
+
+
+\#hurd IRC channel on Freenode, 2010-12-21:
+
+ tschwinge: the writeup ignores the fact that POSIX compatibility
+ is not only for applications, but also for users familiar with the UNIX
+ environment
+ also, I still don't buy the fact that most software is not written
+ for POSIX. even if assuming that GNOME programs don't use POSIX (which is
+ only half true), there is a lot of other software in a system that is
+ just as important, though less visible
+ (server software, startup system, device management, automation,
+ ...)
+ tschwinge: BTW, I meant to (and partially did) write a blog
+ article on this topic -- but I didn't get around to finish it...
+
+[[!tag open_issue_documentation]]
--
cgit v1.2.3
From a7545be7c37bac0cbea8cdfdb243acf3d0a182f7 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 22 Dec 2010 13:35:18 +0100
Subject: open_issues/git-core-2: Another one.
---
open_issues/git-core-2.mdwn | 22 ++++++++++++++++++----
1 file changed, 18 insertions(+), 4 deletions(-)
diff --git a/open_issues/git-core-2.mdwn b/open_issues/git-core-2.mdwn
index cf526678..2cac56f2 100644
--- a/open_issues/git-core-2.mdwn
+++ b/open_issues/git-core-2.mdwn
@@ -6,10 +6,10 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
-[[!meta title="Hiccup of git clone when checking out files"]]
+[[!meta title="Hiccups of Git"]]
[[!tag open_issue_porting]]
@@ -41,7 +41,7 @@ On the otherwise-idle flubber:
-rw-r--r-- 1 tschwinge tschwinge 0 2008-12-15 15:49 localedata/charmaps/IBM862
So these files are indeed of zero-length in the checked-out tree. Is this
-git's fault or something else's?
+Git's fault or something else's?
Fixing this situation is easy enough:
@@ -84,3 +84,17 @@ differences to HEAD.
tschwinge@grubber:~/tmp/gcc/hurd $ git reset --hard HEAD
Checking out files: 100% (1149/1149), done.
HEAD is now at fe3e43c Merge commit 'refs/top-bases/hurd/master' into hurd/master
+
+---
+
+2010-12-22, grubber:
+
+ $ git remote update
+ Fetching savannah
+ remote: Counting objects: 582331, done.
+ remote: Compressing objects: 100% (124133/124133), done.
+ remote: Total 582331 (delta 460856), reused 578352 (delta 457598)
+ Receiving objects: 100% (582331/582331), 525.15 MiB | 204 KiB/s, done.
+ fatal: cannot pread pack file: Interrupted system call
+ fatal: index-pack failed
+ error: Could not fetch savannah
--
cgit v1.2.3
From 575e096fa12fe7f40da832c13347ca837602d1f2 Mon Sep 17 00:00:00 2001
From: Arne Babenhauserheide
Date: Thu, 23 Dec 2010 17:52:18 +0100
Subject: updafet niches of the hurd by adding the TODO list.
---
community/weblogs/ArneBab/niches_for_the_hurd.mdwn | 48 ++++++++++++++++++----
1 file changed, 39 insertions(+), 9 deletions(-)
diff --git a/community/weblogs/ArneBab/niches_for_the_hurd.mdwn b/community/weblogs/ArneBab/niches_for_the_hurd.mdwn
index 6f0af07e..b85891af 100644
--- a/community/weblogs/ArneBab/niches_for_the_hurd.mdwn
+++ b/community/weblogs/ArneBab/niches_for_the_hurd.mdwn
@@ -131,7 +131,9 @@ that's KDEs fabled network transparency on the filesystem / shell level (where i
* add temporary filesystems anywhere via `settrans -a NODE /hurd/ext2fs`
-* make everything temporarily writeable without really changing it via [[hurd/translator/unionfs]].
+* On-demand mounted filesystems via a passive translator which unmounts the filesystem when it isn’t used for some time.
+
+* make everything temporarily writeable without really changing it via [[hurd/translator/unionfs]]. Store the changes on an external device.
* Read tar archives and mbox files via `ls foo.tar.gz,,tarfs` and `ls foo.mbox,,mboxfs`, respectively → [[hurd/translator/nsmux]].
@@ -157,7 +159,7 @@ aren't possible.
* elegantly mount iso images and similar as unprivileged user.
- Other useful stuff:
- * Install deb-packages from an ftp server via 'dpkg -iO ftp://foo/bar/*.deb'
+ * Install deb-packages from an ftp server via 'dpkg -iO ftp://foo/bar/package.deb'
* remount a filesystem readonly as regular user: fsysopts /foo -r
* give a process additional group and user permissions at runtime:
$ groups
@@ -195,10 +197,6 @@ aren't possible.
# once the subhurd closes.
$ subdo --no-lasting-changes ./virus
-- Running parts of the Hurd on different computers, maybe even with shared servers on
-dedicated hardware (Cloud Computing when the servers can be made to migrate from
-between computers). Maybe this should be placed in "need a lot of coding".
-
- subhurds for quickly adapting the whole system without bothering others.
- Define your personal environment via translators, so you can easily take it with
@@ -230,8 +228,6 @@ traditional systems in this reagard, but in fact surpass them.
- The possibility to create more efficient and powerful desktop environments.
-- Multicore systems (need to fixup Mach for SMP)
-
- Currently to offer CPU time to some project (like the World Community Grid), it is
necessary to install a program from them, and they can then do only what that proram
allows them to - which leads to reinventing a processing environment instead of just
@@ -248,6 +244,12 @@ level. Programs only have to display the given files and quickly update the
state of their own files, so the programs stay very easy. The translator could
notify the program when something changes.
+- Multicore systems (need to fixup Mach for SMP)
+
+- Running parts of the Hurd on different computers, maybe even with shared servers on
+dedicated hardware (Cloud Computing when the servers can be made to migrate from
+between computers). Maybe this should be placed in "need a lot of coding".
+
### Unfeasible ideas
@@ -328,13 +330,41 @@ Each participant:
("must", because in a community people can do what they perceive as important, and
telling someone to stop what he's doing is no option (in my opinion))
+**Result: We talk about the niches we can already fulfill :)**
+
Things to do
------------
todo-item -> niches for which it is useful.
+*This might be useful for the next GSoC.*
+
### Easy
-- Port debian packages to the Hurd -> mainly tinkerers, but also any other niche.
+- Port debian packages to the Hurd -> currently mainly tinkerers, but also any other niche. In the long run this is necessary for every user. Easy start for devs.
+- Document easier access to low-level functions via translators, one function at a time.
+- get nsmux ready for regular users by setting it up in the LiveCDs by default.
+
+### Complex
+
+- A filesystem-based package manager: Unionmounting packages. With filterfs from nsmux packages any user should be able to selectively disable any package without affecting the system of others. Simple active translators can add packages.
+- Enable subhurds for regular users via a subdo command: A framework for confining individual applications.
+- Define your personal environment via translators, so you can easily take it with
+you ⇒ system on a USB stick. Would work great with a filesystem based package manager.
+
+### Huge
+
+- Get Hurd/GNU Mach ready for efficient multicore usage.
+- Running parts of the Hurd on different computers, maybe even with shared servers on
+dedicated hardware (Cloud Computing when the servers can be made to migrate from
+between computers).
+
+
+
+
+
+
+
+
--
cgit v1.2.3
From d20e01f511047ff33d557306bc388f8b6a30555c Mon Sep 17 00:00:00 2001
From: Arne Babenhauserheide
Date: Thu, 23 Dec 2010 17:59:51 +0100
Subject: added the niches to conquer to the niches todo.
---
community/weblogs/ArneBab/niches_for_the_hurd.mdwn | 23 +++++++---------------
1 file changed, 7 insertions(+), 16 deletions(-)
diff --git a/community/weblogs/ArneBab/niches_for_the_hurd.mdwn b/community/weblogs/ArneBab/niches_for_the_hurd.mdwn
index b85891af..5febe7b6 100644
--- a/community/weblogs/ArneBab/niches_for_the_hurd.mdwn
+++ b/community/weblogs/ArneBab/niches_for_the_hurd.mdwn
@@ -343,28 +343,19 @@ todo-item -> niches for which it is useful.
### Easy
- Port debian packages to the Hurd -> currently mainly tinkerers, but also any other niche. In the long run this is necessary for every user. Easy start for devs.
-- Document easier access to low-level functions via translators, one function at a time.
-- get nsmux ready for regular users by setting it up in the LiveCDs by default.
+- Document easier access to low-level functions via translators, one function at a time. -> tinkerers.
+- get nsmux ready for regular users by setting it up in the LiveCDs by default. -> show tinkerers what it can do.
### Complex
-- A filesystem-based package manager: Unionmounting packages. With filterfs from nsmux packages any user should be able to selectively disable any package without affecting the system of others. Simple active translators can add packages.
-- Enable subhurds for regular users via a subdo command: A framework for confining individual applications.
+- A filesystem-based package manager: Unionmounting packages. With filterfs from nsmux packages any user should be able to selectively disable any package without affecting the system of others. Simple active translators can add packages. -> clean design and more freedom for tinkerers to setup test environments: “Does this also work with XY disabled?”
+- Enable subhurds for regular users via a subdo command: A framework for confining individual applications. -> tinkerers for testing their work.
- Define your personal environment via translators, so you can easily take it with
-you ⇒ system on a USB stick. Would work great with a filesystem based package manager.
+you ⇒ system on a USB stick. Would work great with a filesystem based package manager. -> ?
### Huge
-- Get Hurd/GNU Mach ready for efficient multicore usage.
+- Get Hurd/GNU Mach ready for efficient multicore usage. -> multicore
- Running parts of the Hurd on different computers, maybe even with shared servers on
dedicated hardware (Cloud Computing when the servers can be made to migrate from
-between computers).
-
-
-
-
-
-
-
-
-
+between computers). -> multicore on steroids :)
--
cgit v1.2.3
From 2e1e724fd67a99a2e7a8c33358a33b330685c43f Mon Sep 17 00:00:00 2001
From: Arne Babenhauserheide
Date: Thu, 23 Dec 2010 18:17:37 +0100
Subject: added tasks of the Hurd Blog post (concept, parsed for niches and
what we need).
---
community/weblogs/ArneBab/tasks-for-the-hurd.mdwn | 63 +++++++++++++++++++++++
1 file changed, 63 insertions(+)
create mode 100644 community/weblogs/ArneBab/tasks-for-the-hurd.mdwn
diff --git a/community/weblogs/ArneBab/tasks-for-the-hurd.mdwn b/community/weblogs/ArneBab/tasks-for-the-hurd.mdwn
new file mode 100644
index 00000000..bf6224b2
--- /dev/null
+++ b/community/weblogs/ArneBab/tasks-for-the-hurd.mdwn
@@ -0,0 +1,63 @@
+Tasks for the Hurd
+==================
+
+*These tasks are compiled from the
+ [[community/weblogs/ArneBab/niches_of_the_hurd]] and
+ [[community/weblogs/ArneBab/what_we_need]]. The first asked “where
+ can the Hurd find niches where it is the biggest fish in the pond,
+ and how?” while the second asked “what do we still need to make the
+ Hurd usable for most of its developers as system for their day-to-day
+ tasks?”.*
+
+*This might be useful for the next GSoC. Please feel free to edit
+ and/or migrate it mercilessly :)*
+
+### Easy
+
+- Port debian packages to the Hurd -> currently mainly tinkerers, but
+ also any other niche. In the long run this is necessary for every
+ user. Easy start for devs.
+- Document easier access to low-level functions via translators, one
+ function at a time. -> tinkerers.
+- get nsmux ready for regular users by setting it up in the LiveCDs by
+ default. -> show tinkerers what it can do.
+- Test on modern machines. If it doesn’t work, file a bug:
+ [info](http://www.mail-archive.com/bug-hurd@gnu.org/msg19105.html).
+
+
+### Complex
+
+- A filesystem-based package manager: Unionmounting packages. With
+ filterfs from nsmux packages any user should be able to selectively
+ disable any package without affecting the system of others. Simple
+ active translators can add packages. -> clean design and more
+ freedom for tinkerers to quickly setup test environments: “Does this
+ also work with XY disabled?” ⇒ rapid testing for different base
+ systems.
+- Enable subhurds for regular users via a subdo command: A framework
+ for confining individual applications. -> tinkerers for testing
+ their work.
+- Define your personal environment via translators, so you can easily
+ take it with you ⇒ system on a USB stick. Would work great with a
+ filesystem based package manager -> use the capabilities of a system
+ and all its installed packages without having to give up your own
+ custom environment.
+
+- Implement USB support, maybe using DDE or DDEkit -> prerequisite to system on USB.
+- Add Wireless support, maybe via DDE.
+- Add sound support via a sound translator.
+- Add SATA support.
+- Stabilize Xorg, so it can run fast for days.
+- Add PPPoE capablilities.
+- Debug NFS for climm, w3m and git.
+- Port a full-featured browser (i.e. Firefox).
+- (Graphical Desktop and switching between console and X) or full
+ featured high-resultion console which doesn’t need X (and emacs :)
+ ).
+
+### Huge
+
+- Get Hurd/GNU Mach ready for efficient multicore usage. -> multicore
+- Running parts of the Hurd on different computers, maybe even with
+ shared servers on dedicated hardware (Cloud Computing when the servers
+ can migrate between computers). -> multicore on steroids :)
--
cgit v1.2.3
From 794558b77f37c3e530dc2f2dae846d766fd2b3b7 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Mon, 27 Dec 2010 11:20:06 +0100
Subject: community/meetings/fosdem_2011: New.
---
community/meetings.mdwn | 7 ++++---
community/meetings/fosdem_2011.mdwn | 31 +++++++++++++++++++++++++++++++
2 files changed, 35 insertions(+), 3 deletions(-)
create mode 100644 community/meetings/fosdem_2011.mdwn
diff --git a/community/meetings.mdwn b/community/meetings.mdwn
index ecd0e465..4b7a8c96 100644
--- a/community/meetings.mdwn
+++ b/community/meetings.mdwn
@@ -6,8 +6,8 @@ id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
[[!meta title="Meetings with Hurd developer attendance"]]
@@ -17,9 +17,10 @@ is included in the section entitled
# Past
+ * [[FOSDEM_2011]]
* [[DebConf10]]
* [[GNU Hackers Meeting in the Hague 2010|ghm2010]]
- * [[FOSDEM 2010]]
+ * [[FOSDEM_2010]]
* [[EuroSys_2009]]
* [[FOSDEM_2008]]
* [[Weekend_at_stesie's|stesie_2007-10-12]]
diff --git a/community/meetings/fosdem_2011.mdwn b/community/meetings/fosdem_2011.mdwn
new file mode 100644
index 00000000..76a02c0a
--- /dev/null
+++ b/community/meetings/fosdem_2011.mdwn
@@ -0,0 +1,31 @@
+[[!meta copyright="Copyright © 2006, 2007, 2008, 2009, 2010 Free Software
+Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta title="FOSDEM 2011"]]
+
+
+
+FOSDEM will take place on February 5th/6th at the Université Libre de
+Bruxelles.
+
+
+# Who and When
+
+[[!table class="table_style_1" data="""
+"Name","Attending","Arrival","Return","Share room with us"
+"Neal Walfield","yes","Friday noon","Monday noon","yes"
+"[[Thomas Schwinge|tschwinge]]","no","n/a","n/a","n/a"
+"""]]
+
+
+# What
+
+
--
cgit v1.2.3
From 2743141fef80b95c6dfb678e699d6cc46509b172 Mon Sep 17 00:00:00 2001
From: "http://diod.myopenid.com/"
Date: Tue, 28 Dec 2010 03:36:44 +0000
Subject: Fixed a little spelling error (lanugages to languages)
---
advantages.mdwn | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/advantages.mdwn b/advantages.mdwn
index 100c8ff8..21577903 100644
--- a/advantages.mdwn
+++ b/advantages.mdwn
@@ -38,7 +38,7 @@ architecture.
One advantage of the Hurd's separation of kernel-like functionality into
separate components ([[servers|hurd/translator]]) is that these can be
-constructed using different programming lanugages -- a feature that is not
+constructed using different programming languages -- a feature that is not
easily possible in a monolithic kernel. Essentially, only an interface from
the programming environment to the [[RPC]] mechanism is required. (We have a
[[project proposal|community/gsoc/project_ideas/language_bindings]] for this,
--
cgit v1.2.3
From 72e77486ae9677c7e432181028e234b7d071d78b Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 28 Dec 2010 07:36:42 +0100
Subject: open_issues/exec: Comment about using BFD / libiberty/simpleobject.
---
open_issues/exec.mdwn | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/open_issues/exec.mdwn b/open_issues/exec.mdwn
index 1806983a..47d1560a 100644
--- a/open_issues/exec.mdwn
+++ b/open_issues/exec.mdwn
@@ -17,3 +17,7 @@ IRC, unknown channel, unknown date.
now a funny bug: if I disable gzip/bzip2 support from exec
trying to run a zero-byte file hangs
+
+---
+
+May want to have a look at using BFD / libiberty/simpleobject.
--
cgit v1.2.3
From bdac3a9caf5f10adb25d9c49a3a33193674e02b4 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 28 Dec 2010 07:49:52 +0100
Subject: community/meetings: FOSDEM 2011 isn't over yet.
---
community/meetings.mdwn | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/community/meetings.mdwn b/community/meetings.mdwn
index 4b7a8c96..939d5269 100644
--- a/community/meetings.mdwn
+++ b/community/meetings.mdwn
@@ -13,11 +13,11 @@ License|/fdl]]."]]"""]]
# Upcoming
+ * [[FOSDEM_2011]]
* [[Self-organised]]
# Past
- * [[FOSDEM_2011]]
* [[DebConf10]]
* [[GNU Hackers Meeting in the Hague 2010|ghm2010]]
* [[FOSDEM_2010]]
--
cgit v1.2.3
From 506ed0bdad1b599e5fd5296bbdd857a4db83e376 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Tue, 28 Dec 2010 12:43:57 +0100
Subject: open_issues/unit_testing: Refer to Git testsuite.
---
open_issues/unit_testing.mdwn | 3 +++
1 file changed, 3 insertions(+)
diff --git a/open_issues/unit_testing.mdwn b/open_issues/unit_testing.mdwn
index 84c29353..b84c99bd 100644
--- a/open_issues/unit_testing.mdwn
+++ b/open_issues/unit_testing.mdwn
@@ -44,6 +44,9 @@ abandoned).
*
+ * [Git](http://git-scm.com/) has an elaborate unit testsuite, which is also
+ used in [Notmuch](http://notmuchmail.org/).
+
* [*[ANNOUNCE] ktest.pl: Easy and flexible testing script for Linux Kernel
Developers*](http://lwn.net/Articles/412302/) by Steven Rostedt,
2010-10-28. [v2](http://lwn.net/Articles/414064/), 2010-11-08.
--
cgit v1.2.3
From 8e59767f344fd15cbb2e1adfa6137223adfe3ccb Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Wed, 29 Dec 2010 17:55:20 +0100
Subject: open_issues/resource_management_problems: Linux vmsplice's
SPLICE_F_GIFT flag.
---
open_issues/resource_management_problems.mdwn | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/open_issues/resource_management_problems.mdwn b/open_issues/resource_management_problems.mdwn
index 3a36514e..760c7d66 100644
--- a/open_issues/resource_management_problems.mdwn
+++ b/open_issues/resource_management_problems.mdwn
@@ -57,6 +57,10 @@ from capabilities to raw regions of RAM*.
This is, of course, non-trivial to implement, and also requires changing the
[[RPC]] interfaces, for example, but it is a valid approach, a research topic.
+([[!taglink open_issue_documentation]]: compare this to Linux [`vmsplice`'s
+SPLICE_F_GIFT
+flag](http://www.kernel.org/doc/man-pages/online/pages/man2/vmsplice.2.html#DESCRIPTION).)
+
# Further Examples
--
cgit v1.2.3
From 9d64538617425f795e33d711d8bd4f5d823de8e7 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 8 Jan 2011 00:23:31 +0100
Subject: open_issues/implementing_hurd_on_top_of_another_system: IRC, #hurd,
2010-12-28.
---
open_issues/implementing_hurd_on_top_of_another_system.mdwn | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/open_issues/implementing_hurd_on_top_of_another_system.mdwn b/open_issues/implementing_hurd_on_top_of_another_system.mdwn
index 7e88e322..614cf442 100644
--- a/open_issues/implementing_hurd_on_top_of_another_system.mdwn
+++ b/open_issues/implementing_hurd_on_top_of_another_system.mdwn
@@ -65,3 +65,16 @@ IRC, #hurd, August / September 2010
the Hurd to Linux or BSD
Continue reading about the [[benefits of a native Hurd implementation]].
+
+---
+
+IRC, #hurd, 2010-12-28
+
+ kilobug: there is no real requirement for the Hurd to run on a
+ microkernel... as long as the important mechanisms are provided (most
+ notably external pagers and Mach IPC), the Hurd could run an top of
+ pretty much any kernel...
+ whether it makes sense is another question of course :-)
+ though I must say that I'm more and more convinced running the
+ Hurd on top of a monolithic kernel would actually be a useful approach
+ for the time being...
--
cgit v1.2.3
From 4b997604921357720ac1d9304e27f83be8af6512 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 8 Jan 2011 00:23:52 +0100
Subject: open_issues/benefits_of_a_native_hurd_implementation: IRC, #hurd,
2010-12-28.
---
.../benefits_of_a_native_hurd_implementation.mdwn | 45 ++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/open_issues/benefits_of_a_native_hurd_implementation.mdwn b/open_issues/benefits_of_a_native_hurd_implementation.mdwn
index 34e49e86..af96ce62 100644
--- a/open_issues/benefits_of_a_native_hurd_implementation.mdwn
+++ b/open_issues/benefits_of_a_native_hurd_implementation.mdwn
@@ -85,3 +85,48 @@ IRC, #hurd, August / September 2010
ArneBab: as a side note, although people keep complaining, the
linux kernel seems to be growing steadily, so getting stuff into the
kernel doesn't seem too hard. 8-O
+
+---
+
+IRC, #hurd, 2010-12-28
+
+ but is monolithic so bad?
+ yep
+ no it's not
+ proof: it works very well for most people
+ [...]
+ the real problem is extensibility and interfaces
+ :/ whats the huge advantage of micro-k
+ extensibility
+ over?
+ you can add a whole lot of new services for new purposes with new
+ interfaces without changing the kernel
+ oright
+ it basically boils down to the original Unix idea: everything does
+ one thing well
+ [...]
+ well, I would say extensibility and fault-tolerance are the two
+ key advantages
+ taht's a side effect
+ there are fault taulerant monolithic kernels
+ [...]
+ tolerant*
+ and the hurd is for now a non fault-tolerant microkernel based OS
+ :/
+ [...]
+ braunr: not really; you can't ensure fault tolerance for code
+ running in kernel space, code running in kernel space can do everything,
+ including reboot, crash, ...
+ [...]
+ kilobug: right, a monolithick kernel is less folt-tolerant than a
+ well designed/implemented microkernel based os
+ braunr: well, the Hurd is buggy nowadays, but things like an
+ ext2fs translator doing a segfault and being restarted is a
+ fault-tolerance that would be almost impossible to have in Linux
+ braunr: sure, you can have fault-tolerance with FUSE, but FUSE is
+ applying micro-kernel paradigm to Linux
+ [...]
+ the reason i don't care that much about fault tolerance is that
+ Linux obviously shows a monolithic kernel can run almost flawlessly if
+ well written
+ but extensibility is really another matter
--
cgit v1.2.3
From 8c1d42cc00872bc429b5e959467434df2faac463 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 8 Jan 2011 00:34:16 +0100
Subject: open_issues/file_locking: New. IRC, #hurd, 2011-12-31.
---
open_issues/file_locking.mdwn | 74 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 74 insertions(+)
create mode 100644 open_issues/file_locking.mdwn
diff --git a/open_issues/file_locking.mdwn b/open_issues/file_locking.mdwn
new file mode 100644
index 00000000..ddcb4e0f
--- /dev/null
+++ b/open_issues/file_locking.mdwn
@@ -0,0 +1,74 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_hurd open_issue_glibc]]
+
+IRC, #hurd, 2011-12-31.
+
+ youpi: i found the issue with python-apt
+ s/with/of/
+ good!
+ lock file issue, though :/
+ :/
+ this is the sample test case, derived from apt's code:
+ http://paste.debian.net/103536/
+ basically, it seems asking for a file lock in the same process
+ where there's already such lock on the file, fails
+ youpi: ↑
+ uh, posix doesn't even define some nesting
+ it seems it just talks about concurrency with other processes
+ posix tells more about it later
+ saying that if a lock already exists, then it is replaced by the
+ new
+ (when inside the same process)
+ yay, found a bug in hurd :p
+ well, actually it's known
+ i.e. setlk is completely bogus, based on flock
+ and flock doesn't have the same semantic in that regard
+ so we can't fix it without really implementing setlk
+ the XXX comment in glibc/sysdeps/mach/hurd/fcntl.c, by chance?
+ :)
+ of course :)
+ youpi: hm, flock's man page says:
+ "A process may only hold one type of lock (shared or exclusive)
+ on a file. Subsequent flock() calls on an already locked file will
+ convert an existing lock to the new lock mode."
+ so a new lock in the same process over the original lock should
+ replace the old one?
+ uh, that's not what I had seen
+ http://linux.die.net/man/2/flock
+ An attempt to lock the file using one of these file descrip-
+ tors may be denied by a lock that the calling process
+ has already
+ placed via another descriptor.
+ so it's really not that easy
+ that's in case of trying to create a lock on a file with a
+ different fd than the existing lock
+ that's what your testcase does
+ which, hm, is python-apt's case
+ that being said, the sentence I pasted does not seem to appear in
+ posix
+ flock() does not seem posix
+ it may have been the behavior of Linux at some point in the past
+ it's not , but F_SETLK is
+ and in linux world, flock <=> F_SETLK, iirc
+ in glibc world, even
+ (just checked it, see sysdeps/posix/flock.c
+ pinotree: I guess your testcase works on Linux?
+ which means we should get a proper F_SETLK working, and then
+ just use this flock version (instead of the custom one), no?
+ yes, it works on linux (and on kfreebsd, see that python-apt
+ builds)
+ no, I mean our flock() should probably be happy with locking part
+ of a file several times
+ (that is, hurd's file_lock() RPC)
+ ah, no, on Linux flock is its own system call
+ (which is independant from lockf from the locking point of view,
+ iirc)
--
cgit v1.2.3
From 44b308531e8c1823ecdcad17488c4e5eea36c19a Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 8 Jan 2011 00:47:56 +0100
Subject: open_issues/mach_tasks_memory_usage: New. IRC, #hurd, 2011-01-06.
---
open_issues/mach_tasks_memory_usage.mdwn | 100 +++++++++++++++++++++++++++++++
1 file changed, 100 insertions(+)
create mode 100644 open_issues/mach_tasks_memory_usage.mdwn
diff --git a/open_issues/mach_tasks_memory_usage.mdwn b/open_issues/mach_tasks_memory_usage.mdwn
new file mode 100644
index 00000000..12758dbc
--- /dev/null
+++ b/open_issues/mach_tasks_memory_usage.mdwn
@@ -0,0 +1,100 @@
+[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!tag open_issue_documentation]]
+
+IRC, #hurd, 2011-01-06.
+
+ hm, odd... vmstat tells me that ~500 MiB of RAM are in use; but
+ the sum of all RSS is <300 MiB... what's the rest?
+ kernel memory ?
+ the zone allocator maybe
+ or the page cache simply
+ braunr: which page cache? AIUI, caches are implemented by the
+ individual filesystem servers -- in which case any memory used by them
+ should show up in RSS
+ also, gnumach is listed among other tasks, so I'd assume the
+ kernel memery also to be accounted for
+ antrik: no, the kernel maintains a page cache, very similar to
+ what is done in Linux, and almost the same as in FreeBSD
+ the file system servers are just backing stores
+ the RSS for the gnumach tasks only includes kernel memory
+ I don't think the page cache is accounted for
+ because it's not really kernel memory, it's a cache of user space
+ memory
+ apparently my understanding of Mach paging is still (or again?)
+ rather incomplete :-(
+ BTW, is there any way to find out how much anonymous memory a
+ process is using? the "virtual" includes discardable mappings, and is
+ thus not very helpful...
+ (that applies to Linux as well though)
+ can you provide an example of the output of vmstat please ?
+ I don't have a Hurd VM near me
+ olaf@alien:~$ vmstat
+ pagesize: 4K
+ size: 501M
+ free: 6.39M
+ active: 155M
+ inactive: 310M
+ wired: 29.4M
+ zero filled: 15.3G
+ reactivated: 708M
+ pageins: 3.43G
+ pageouts: 1.55G
+ page faults: 26844574
+ cow faults: 3736174
+ memobj hit ratio: 92%
+ swap size: 733M
+ swap free: 432M
+ interesting... closing a single screen window temporarily raises
+ the "free" value by almost 10 MB
+ I guess bash is rather hungry nowadays ;-)
+ antrik: I guess the only way is using pmap or looking into
+ /proc//maps
+ but it won't give you the amount of physical memory used by
+ anonymous mappings
+ nah, I don't even want that... just like to know how much memory
+ (RAM+swap) a process is really using
+ antrik: then the RSS field is what you want
+ OTOH, anonymous doesn't include program code or other actively
+ used mappings... so not very useful either
+ nah, RSS doesn't count anything that is in swap
+ well
+ don't you have a SWAP column ?
+ hm
+ i guess not
+ antrik: why do you say it doesn't include other actively used
+ mappings ?
+ antrik: and the inclusion of program code also depends on the
+ implementation of the ELF handler
+ I don't know how the hurd does that, but some ELF loaders use
+ anonymous memory for the execution view
+ well, if a program maps a data file, and regularily accesses parts
+ of the file, they won't occupy physical RAM all the time (and show up in
+ RSS), but they are not anonymous mappings. similar to program code
+ then this anonymous memory is shared by all processes using that
+ code
+ oh, interesting
+ is it really a completely distinct mapping, rather than just COW?
+ the first is
+ others are COW
+ so if a program loads 200 MB of libraries, they are all read in on
+ startup, and occupy RAM or swap subsequently, even if most of the code is
+ never actually run?...
+ library code should be backed by the library file on disk, not be
+ swap
+ depends on the implementation
+ I guess most use the file system backend
+ but in the Hurd, ext2fs.static and ld.so.1 use anonymous memory
+ (that's the case for another reason, still, I don't think the
+ report in top/ps clearly indicates that fact)
+ braunr: yeah for bootstrapping issues, makes sense
+ it may also depends on the pic/pie options used when building
+ libraries
--
cgit v1.2.3
From 1d686bf7768a6c44c2b5e73ef876d9410704b53b Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sat, 8 Jan 2011 12:30:43 +0100
Subject: open_issues/unit_testing: Link to SC Test.
---
open_issues/unit_testing.mdwn | 3 +++
1 file changed, 3 insertions(+)
diff --git a/open_issues/unit_testing.mdwn b/open_issues/unit_testing.mdwn
index b84c99bd..9060d12e 100644
--- a/open_issues/unit_testing.mdwn
+++ b/open_issues/unit_testing.mdwn
@@ -15,6 +15,9 @@ We definitely want to add unit test suites to our code base.
We should select a tool that we like to use, and that is supported (not
abandoned).
+ * [SC
+ Test](http://web.archive.org/web/20021204193607/sc-archive.codesourcery.com/sc_test)
+
* [DejaGnu](http://www.gnu.org/software/dejagnu/) /
[Expect](http://expect.nist.gov/)
--
cgit v1.2.3
From 34d284acf6acfbfd03b148f7c154b0d44df6d324 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 9 Jan 2011 21:13:02 +0100
Subject: We already had 2011 when I did these changes...
---
open_issues/benefits_of_a_native_hurd_implementation.mdwn | 2 +-
open_issues/file_locking.mdwn | 4 ++--
open_issues/implementing_hurd_on_top_of_another_system.mdwn | 2 +-
open_issues/mach_tasks_memory_usage.mdwn | 2 +-
open_issues/unit_testing.mdwn | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/open_issues/benefits_of_a_native_hurd_implementation.mdwn b/open_issues/benefits_of_a_native_hurd_implementation.mdwn
index af96ce62..d796bf6b 100644
--- a/open_issues/benefits_of_a_native_hurd_implementation.mdwn
+++ b/open_issues/benefits_of_a_native_hurd_implementation.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2010, 2011 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/open_issues/file_locking.mdwn b/open_issues/file_locking.mdwn
index ddcb4e0f..563307a4 100644
--- a/open_issues/file_locking.mdwn
+++ b/open_issues/file_locking.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2010, 2011 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -10,7 +10,7 @@ License|/fdl]]."]]"""]]
[[!tag open_issue_hurd open_issue_glibc]]
-IRC, #hurd, 2011-12-31.
+IRC, #hurd, 2010-12-31.
youpi: i found the issue with python-apt
s/with/of/
diff --git a/open_issues/implementing_hurd_on_top_of_another_system.mdwn b/open_issues/implementing_hurd_on_top_of_another_system.mdwn
index 614cf442..23512aa9 100644
--- a/open_issues/implementing_hurd_on_top_of_another_system.mdwn
+++ b/open_issues/implementing_hurd_on_top_of_another_system.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2010, 2011 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/open_issues/mach_tasks_memory_usage.mdwn b/open_issues/mach_tasks_memory_usage.mdwn
index 12758dbc..88e3afb8 100644
--- a/open_issues/mach_tasks_memory_usage.mdwn
+++ b/open_issues/mach_tasks_memory_usage.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2011 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/open_issues/unit_testing.mdwn b/open_issues/unit_testing.mdwn
index 9060d12e..1cf7cfb8 100644
--- a/open_issues/unit_testing.mdwn
+++ b/open_issues/unit_testing.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2010, 2011 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
--
cgit v1.2.3
From 2926e26699232f987b07856c0ef351406df88350 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 9 Jan 2011 21:13:39 +0100
Subject: New Year Procedure.
---
config_edittemplate/open_issue_page.mdwn | 2 +-
config_edittemplate/regular_page.mdwn | 2 +-
contributing/web_pages.mdwn | 13 +++++++++++--
contributing/web_pages/news/skeleton.mdwn | 2 +-
copyright.mdwn | 2 +-
5 files changed, 15 insertions(+), 6 deletions(-)
diff --git a/config_edittemplate/open_issue_page.mdwn b/config_edittemplate/open_issue_page.mdwn
index 78533450..ede41ad8 100644
--- a/config_edittemplate/open_issue_page.mdwn
+++ b/config_edittemplate/open_issue_page.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2011 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/config_edittemplate/regular_page.mdwn b/config_edittemplate/regular_page.mdwn
index 63cc6343..68669f84 100644
--- a/config_edittemplate/regular_page.mdwn
+++ b/config_edittemplate/regular_page.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2011 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/contributing/web_pages.mdwn b/contributing/web_pages.mdwn
index 51ce873e..105d9dd5 100644
--- a/contributing/web_pages.mdwn
+++ b/contributing/web_pages.mdwn
@@ -1,5 +1,5 @@
-[[!meta copyright="Copyright © 2007, 2008, 2009, 2010 Free Software Foundation,
-Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2009, 2010, 2011 Free Software
+Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
@@ -228,3 +228,12 @@ running, the following is all you have to do:
If you don't have an MTA running, you'll have to find another way: either post
the `*.patch` files to or upload them somewhere for us to
download them from.
+
+
+# New Year Procedure
+
+Files to update:
+
+ * `/config_edittemplate/*.mdwn`
+ * `/contributing/web_pages/news/skeleton.mdwn`
+ * `/copyright.mdwn`
diff --git a/contributing/web_pages/news/skeleton.mdwn b/contributing/web_pages/news/skeleton.mdwn
index c0b4647b..9867fd21 100644
--- a/contributing/web_pages/news/skeleton.mdwn
+++ b/contributing/web_pages/news/skeleton.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2011 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/copyright.mdwn b/copyright.mdwn
index 064b5271..24dc1725 100644
--- a/copyright.mdwn
+++ b/copyright.mdwn
@@ -1,2 +1,2 @@
-Copyright © 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The
+Copyright © 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 The
Contributing Authors
--
cgit v1.2.3
From 78e409ffd31d97f403206b5bf4e70b04bc0e9574 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 9 Jan 2011 21:42:53 +0100
Subject: news/2010-11: New.
---
news/2010-11.mdwn | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
create mode 100644 news/2010-11.mdwn
diff --git a/news/2010-11.mdwn b/news/2010-11.mdwn
new file mode 100644
index 00000000..ea21d91f
--- /dev/null
+++ b/news/2010-11.mdwn
@@ -0,0 +1,29 @@
+[[!meta copyright="Copyright © 2011 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta date="2011-01-09 20:50 UTC"]]
+
+A month of the Hurd: *a short one*.
+[[!if test="included()" then="""[[!toggle id=full_news
+text="Details."]][[!toggleable id=full_news text="[[!paste id=full_news]]"]]"""
+else="
+[[!paste id=full_news]]"]]
+
+[[!cut id="full_news" text="""
+
+That's a short one. Apart from the regular business of having internal design
+/ development / etc. discussions, and helping people to get their Hurd systems
+running, we had Diego Nieto Cid post patches
+([1](http://lists.gnu.org/archive/html/bug-hurd/2010-11/msg00019.html),
+[2](http://lists.gnu.org/archive/html/bug-hurd/2010-11/msg00023.html)) to
+corrent two programming errors, which Samuel Thibault quickly reviewed and
+applied to the [[source repositories]].
+
+"""]]
--
cgit v1.2.3
From 3bbe62327128ce85829a4cb2fb429bd8f21b4d75 Mon Sep 17 00:00:00 2001
From: Thomas Schwinge
Date: Sun, 9 Jan 2011 22:21:40 +0100
Subject: news/2010-12: New.
---
hurd/subhurd.mdwn | 1 +
hurd/virtualization.mdwn | 10 +++++++---
news/2010-12.mdwn | 45 +++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 53 insertions(+), 3 deletions(-)
create mode 100644 news/2010-12.mdwn
diff --git a/hurd/subhurd.mdwn b/hurd/subhurd.mdwn
index 84372dd1..cb4a40a8 100644
--- a/hurd/subhurd.mdwn
+++ b/hurd/subhurd.mdwn
@@ -125,6 +125,7 @@ Roland's tutorial about [[running_a_subhurd]].
# Use Cases
+
## Debugging the *Main* Hurd System
A subhurd can be used for debugging the *main* Hurd system. This works as long
diff --git a/hurd/virtualization.mdwn b/hurd/virtualization.mdwn
index 42f83f77..49e911c2 100644
--- a/hurd/virtualization.mdwn
+++ b/hurd/virtualization.mdwn
@@ -1,13 +1,17 @@
-[[!meta copyright="Copyright © 2007, 2008 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2011 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
-is included in the section entitled
-[[GNU Free Documentation License|/fdl]]."]]"""]]
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
Olaf Buddenhagen has written a text about how [[/virtualization]] is applicable
within Hurd systems:
+
+We also have [[a lot of Open Issues about virtualization
+topics|open_issues/virtualization]].
diff --git a/news/2010-12.mdwn b/news/2010-12.mdwn
new file mode 100644
index 00000000..60d0226f
--- /dev/null
+++ b/news/2010-12.mdwn
@@ -0,0 +1,45 @@
+[[!meta copyright="Copyright © 2011 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+[[!meta date="2011-01-09 21:25 UTC"]]
+
+A month of the Hurd: *CD images*.
+[[!if test="included()" then="""[[!toggle id=full_news
+text="Details."]][[!toggleable id=full_news text="[[!paste id=full_news]]"]]"""
+else="
+[[!paste id=full_news]]"]]
+
+[[!cut id="full_news" text="""
+
+Samuel Thibault [*updated the Debian GNU/Hurd installer
+ISO*](http://lists.debian.org/debian-hurd/2010/12/msg00001.html), and also
+again did his regular batch of bug fixing.
+
+*Arch Hurd is back in action!*, too: they uploaded a [first version of a
+graphical live CD](http://www.archhurd.org/news/19/).
+
+Neal Walfield
+[reported](http://lists.gnu.org/archive/html/l4-hurd/2010-12/msg00001.html) on
+the state of his [[microkernel/Viengoos]] kernel / research project, which
+unfortunately is currently on hold, due to other commitments.
+
+Olaf Buddenhagen raised an interesting use case: you can use a [[*subhurd* for
+debugging the *main* Hurd system|hurd/subhurd#debugging_main_hurd_system]].
+That is [[hurd/virtualization]] at its best!
+
+Right before the end of the year, Diego Martin Nieto Cid sent a [patch series
+to fix some issues with `make
+dist`](http://lists.gnu.org/archive/html/bug-hurd/2010-12/msg00024.html).
+
+---
+
+Happy New Year 2011, everyone!
+
+"""]]
--
cgit v1.2.3